From bc235d26d5184e332599440dfc41803a190ff1e6 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Thu, 16 Jan 2025 10:14:32 +0000 Subject: [PATCH 01/34] bump version --- WORKSPACE.bazel | 4 ++-- rust-toolchain.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/WORKSPACE.bazel b/WORKSPACE.bazel index 10c29ef4de2..1249bbbc872 100644 --- a/WORKSPACE.bazel +++ b/WORKSPACE.bazel @@ -112,12 +112,12 @@ rust_register_toolchains( # The nightly version is required to compile fuzz tests from Bazel. # The version below is chosen so that it is in sync with the non-nightly version. versions = [ - "1.82.0", + "1.84.0", # Use the nightly version from the day before the branch. # - # NB! Due to a regression in the compiler https://github.com/rust-lang/rust/issues/128895, that's # only back-ported to stable, we use a more recent version. - "nightly/2024-09-23", + "nightly/2024-11-21", ], ) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 34a2c4859a4..f1f8df773bb 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "1.82.0" +channel = "1.84.0" targets = ["wasm32-unknown-unknown"] profile = "default" components = ["rls"] From 77f376667e840192f23e0f7b4bf38492040be682 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Thu, 16 Jan 2025 10:20:33 +0000 Subject: [PATCH 02/34] clippy fix --- packages/ic-ledger-hash-of/src/lib.rs | 2 +- rs/artifact_pool/src/consensus_pool_cache.rs | 2 +- rs/artifact_pool/src/lmdb_iterator.rs | 8 ++++---- rs/canister_sandbox/src/transport.rs | 2 +- rs/canonical_state/src/subtree_visitor.rs | 2 +- rs/canonical_state/tree_hash/src/lazy_tree.rs | 2 +- rs/consensus/src/idkg/pre_signer.rs | 4 ++-- rs/consensus/src/idkg/signer.rs | 4 ++-- rs/consensus/utils/src/lib.rs | 2 +- rs/crypto/internal/crypto_lib/bls12_381/type/src/lib.rs | 2 +- rs/crypto/internal/crypto_lib/hmac/src/lib.rs | 2 +- rs/crypto/internal/crypto_lib/seed/src/xmd.rs | 2 +- .../bls12_381/src/ni_dkg/fs_ni_dkg/chunking.rs | 2 +- .../bls12_381/src/ni_dkg/fs_ni_dkg/dlog_recovery.rs | 2 +- .../bls12_381/src/ni_dkg/fs_ni_dkg/nizk_chunking.rs | 2 +- .../canister_threshold_sig/fe-derive/src/lib.rs | 2 +- .../canister_threshold_sig/src/utils/group.rs | 4 ++-- .../crypto_lib/types/src/encrypt/forward_secure.rs | 2 +- rs/crypto/secrets_containers/src/secret_array.rs | 2 +- rs/crypto/secrets_containers/src/secret_bytes.rs | 2 +- rs/crypto/tree_hash/src/lib.rs | 2 +- rs/execution_environment/src/metrics.rs | 2 +- rs/ingress_manager/src/ingress_selector.rs | 2 +- rs/interfaces/src/consensus_pool.rs | 2 +- rs/ledger_suite/icrc1/ledger/src/lib.rs | 4 ++-- rs/messaging/src/routing/demux.rs | 2 +- rs/monitoring/metrics/src/histogram_vec_timer.rs | 2 +- .../common/src/memory_manager_upgrade_storage.rs | 4 ++-- rs/p2p/consensus_manager/src/receiver.rs | 3 +-- rs/phantom_newtype/src/displayer.rs | 2 +- rs/registry/nns_data_provider/src/certification.rs | 2 +- rs/replicated_state/src/page_map.rs | 4 ++-- .../src/page_map/page_allocator/page_bytes.rs | 2 +- rs/sns/swap/src/swap.rs | 2 +- rs/state_layout/src/state_layout.rs | 6 +++--- rs/state_machine_tests/src/lib.rs | 2 +- rs/state_manager/src/manifest.rs | 2 +- rs/state_manager/src/tip.rs | 2 +- rs/tree_deserializer/src/types.rs | 2 +- rs/types/types/src/ingress.rs | 4 ++-- rs/types/types/src/messages/ingress_messages.rs | 2 +- rs/types/types/src/messages/message_id.rs | 2 +- rs/utils/src/thread.rs | 2 +- 43 files changed, 55 insertions(+), 56 deletions(-) diff --git a/packages/ic-ledger-hash-of/src/lib.rs b/packages/ic-ledger-hash-of/src/lib.rs index 584a9830fad..03716b1577d 100644 --- a/packages/ic-ledger-hash-of/src/lib.rs +++ b/packages/ic-ledger-hash-of/src/lib.rs @@ -93,7 +93,7 @@ impl<'de, T> Deserialize<'de> for HashOf { phantom: PhantomData, } - impl<'de, T> Visitor<'de> for HashOfVisitor { + impl Visitor<'_> for HashOfVisitor { type Value = HashOf; fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result { diff --git a/rs/artifact_pool/src/consensus_pool_cache.rs b/rs/artifact_pool/src/consensus_pool_cache.rs index 5b5ef9462b3..5de2a1d307d 100644 --- a/rs/artifact_pool/src/consensus_pool_cache.rs +++ b/rs/artifact_pool/src/consensus_pool_cache.rs @@ -120,7 +120,7 @@ impl<'a> CachedChainIterator<'a> { } } -impl<'a> Iterator for CachedChainIterator<'a> { +impl Iterator for CachedChainIterator<'_> { type Item = Block; fn next(&mut self) -> Option { diff --git a/rs/artifact_pool/src/lmdb_iterator.rs b/rs/artifact_pool/src/lmdb_iterator.rs index 59437b6c1b8..36924fc0fec 100644 --- a/rs/artifact_pool/src/lmdb_iterator.rs +++ b/rs/artifact_pool/src/lmdb_iterator.rs @@ -43,7 +43,7 @@ pub(crate) struct LMDBIterator<'a, F> { db_env: Arc, } -impl<'a, F> LMDBIterator<'a, F> { +impl LMDBIterator<'_, F> { /// Return a new iterator that will iterator through DB objects between /// min_key and max_key (inclusive) that are deserialized using the /// given deserialize function. @@ -71,7 +71,7 @@ impl<'a, F> LMDBIterator<'a, F> { } } -impl<'a, T, F: Fn(&RoTransaction<'_>, &[u8]) -> lmdb::Result> Iterator for LMDBIterator<'a, F> { +impl, &[u8]) -> lmdb::Result> Iterator for LMDBIterator<'_, F> { type Item = T; fn next(&mut self) -> Option { @@ -106,7 +106,7 @@ pub(crate) struct LMDBIDkgIterator<'a, F> { _db_env: Arc, } -impl<'a, F> LMDBIDkgIterator<'a, F> { +impl LMDBIDkgIterator<'_, F> { pub fn new( db_env: Arc, db: Database, @@ -136,7 +136,7 @@ impl<'a, F> LMDBIDkgIterator<'a, F> { } } -impl<'a, K, T, F: Fn(&[u8], &[u8]) -> Option<(K, T)>> Iterator for LMDBIDkgIterator<'a, F> { +impl Option<(K, T)>> Iterator for LMDBIDkgIterator<'_, F> { type Item = (K, T); fn next(&mut self) -> Option { diff --git a/rs/canister_sandbox/src/transport.rs b/rs/canister_sandbox/src/transport.rs index 57975178cf6..9e6f9a4e9ba 100644 --- a/rs/canister_sandbox/src/transport.rs +++ b/rs/canister_sandbox/src/transport.rs @@ -471,7 +471,7 @@ pub fn socket_read_messages< // updating the socket timeout. loop { if let Some(bytes) = reader.receive_message(&mut buf, &mut fds, 0, None) { - break (bytes); + break bytes; } } } diff --git a/rs/canonical_state/src/subtree_visitor.rs b/rs/canonical_state/src/subtree_visitor.rs index a9ebbd7a574..8c9d92c8312 100644 --- a/rs/canonical_state/src/subtree_visitor.rs +++ b/rs/canonical_state/src/subtree_visitor.rs @@ -91,7 +91,7 @@ impl<'a, V> SubtreeVisitor<'a, V> { } } -impl<'a, V> Visitor for SubtreeVisitor<'a, V> +impl Visitor for SubtreeVisitor<'_, V> where V: Visitor, { diff --git a/rs/canonical_state/tree_hash/src/lazy_tree.rs b/rs/canonical_state/tree_hash/src/lazy_tree.rs index 64f6c8d8a4f..fd76d0a3cdc 100644 --- a/rs/canonical_state/tree_hash/src/lazy_tree.rs +++ b/rs/canonical_state/tree_hash/src/lazy_tree.rs @@ -25,7 +25,7 @@ pub enum Lazy<'a, T> { Func(ArcFn<'a, T>), } -impl<'a, T: Clone> Lazy<'a, T> { +impl Lazy<'_, T> { pub fn force(&self) -> T { match self { Self::Value(v) => v.clone(), diff --git a/rs/consensus/src/idkg/pre_signer.rs b/rs/consensus/src/idkg/pre_signer.rs index 71e910638c4..bbf5bd39f08 100644 --- a/rs/consensus/src/idkg/pre_signer.rs +++ b/rs/consensus/src/idkg/pre_signer.rs @@ -1210,7 +1210,7 @@ impl<'a> IDkgTranscriptBuilderImpl<'a> { } } -impl<'a> IDkgTranscriptBuilder for IDkgTranscriptBuilderImpl<'a> { +impl IDkgTranscriptBuilder for IDkgTranscriptBuilderImpl<'_> { fn get_completed_transcript(&self, transcript_id: IDkgTranscriptId) -> Option { timed_call( "get_completed_transcript", @@ -1278,7 +1278,7 @@ impl<'a> Action<'a> { } /// Needed as IDKGTranscriptParams doesn't implement Debug -impl<'a> Debug for Action<'a> { +impl Debug for Action<'_> { fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { match &self { Self::Process(transcript_params) => { diff --git a/rs/consensus/src/idkg/signer.rs b/rs/consensus/src/idkg/signer.rs index dce0600d594..1b9aa8ff7d4 100644 --- a/rs/consensus/src/idkg/signer.rs +++ b/rs/consensus/src/idkg/signer.rs @@ -726,7 +726,7 @@ impl<'a> ThresholdSignatureBuilderImpl<'a> { } } -impl<'a> ThresholdSignatureBuilder for ThresholdSignatureBuilderImpl<'a> { +impl ThresholdSignatureBuilder for ThresholdSignatureBuilderImpl<'_> { fn get_completed_signature( &self, callback_id: CallbackId, @@ -832,7 +832,7 @@ impl<'a> Action<'a> { } } -impl<'a> Debug for Action<'a> { +impl Debug for Action<'_> { fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { match &self { Self::Process(sig_inputs) => { diff --git a/rs/consensus/utils/src/lib.rs b/rs/consensus/utils/src/lib.rs index 99a079b1b8b..32ff4260341 100644 --- a/rs/consensus/utils/src/lib.rs +++ b/rs/consensus/utils/src/lib.rs @@ -87,7 +87,7 @@ pub fn find_lowest_ranked_non_disqualified_proposals( .filter(|proposal| !disqualified.contains(&proposal.signature.signer)) { let best_rank = best_proposals.first().map(HasRank::rank); - if !best_rank.is_some_and(|rank| rank <= proposal.rank()) { + if best_rank.is_none_or(|rank| rank > proposal.rank()) { best_proposals = vec![proposal]; } else if Some(proposal.rank()) == best_rank { best_proposals.push(proposal); diff --git a/rs/crypto/internal/crypto_lib/bls12_381/type/src/lib.rs b/rs/crypto/internal/crypto_lib/bls12_381/type/src/lib.rs index 71d7f707f29..c529b19c830 100644 --- a/rs/crypto/internal/crypto_lib/bls12_381/type/src/lib.rs +++ b/rs/crypto/internal/crypto_lib/bls12_381/type/src/lib.rs @@ -2337,7 +2337,7 @@ struct WindowInfo {} impl WindowInfo { const SIZE: usize = WINDOW_SIZE; - const WINDOWS: usize = (Scalar::BYTES * 8 + Self::SIZE - 1) / Self::SIZE; + const WINDOWS: usize = (Scalar::BYTES * 8).div_ceil(Self::SIZE); const MASK: u8 = 0xFFu8 >> (8 - Self::SIZE); const ELEMENTS: usize = (1 << Self::SIZE) as usize; diff --git a/rs/crypto/internal/crypto_lib/hmac/src/lib.rs b/rs/crypto/internal/crypto_lib/hmac/src/lib.rs index 4b3d4baee18..22434146dee 100644 --- a/rs/crypto/internal/crypto_lib/hmac/src/lib.rs +++ b/rs/crypto/internal/crypto_lib/hmac/src/lib.rs @@ -181,7 +181,7 @@ pub fn hkdf( // Step 2. HKDF-Expand(PRK, info, L) -> OKM - let blocks = (output_len + H::OUTPUT_LENGTH - 1) / H::OUTPUT_LENGTH; + let blocks = output_len.div_ceil(H::OUTPUT_LENGTH); let mut prev_t: Option> = None; diff --git a/rs/crypto/internal/crypto_lib/seed/src/xmd.rs b/rs/crypto/internal/crypto_lib/seed/src/xmd.rs index be9e275b12f..d497a576a8e 100644 --- a/rs/crypto/internal/crypto_lib/seed/src/xmd.rs +++ b/rs/crypto/internal/crypto_lib/seed/src/xmd.rs @@ -78,7 +78,7 @@ pub fn xmd(msg: &[u8], dst: &[u8], len: usize) -> XmdResult< // len ≤ 255*H::OUTPUT_BYTES ⭢ ell ≤ 255 // thus values ≤ ell can be safely cast to u8 - let ell = (len + H::OUTPUT_BYTES - 1) / H::OUTPUT_BYTES; + let ell = len.div_ceil(H::OUTPUT_BYTES); let mut out = vec![0u8; len]; diff --git a/rs/crypto/internal/crypto_lib/threshold_sig/bls12_381/src/ni_dkg/fs_ni_dkg/chunking.rs b/rs/crypto/internal/crypto_lib/threshold_sig/bls12_381/src/ni_dkg/fs_ni_dkg/chunking.rs index 469d17827db..460aa92ce3a 100644 --- a/rs/crypto/internal/crypto_lib/threshold_sig/bls12_381/src/ni_dkg/fs_ni_dkg/chunking.rs +++ b/rs/crypto/internal/crypto_lib/threshold_sig/bls12_381/src/ni_dkg/fs_ni_dkg/chunking.rs @@ -23,7 +23,7 @@ pub const CHUNK_MAX: Chunk = CHUNK_MIN + (CHUNK_SIZE as Chunk) - 1; pub(crate) const MESSAGE_BYTES: usize = Scalar::BYTES; /// NUM_CHUNKS is simply the number of chunks needed to hold a message -pub const NUM_CHUNKS: usize = (MESSAGE_BYTES + CHUNK_BYTES - 1) / CHUNK_BYTES; +pub const NUM_CHUNKS: usize = MESSAGE_BYTES.div_ceil(CHUNK_BYTES); #[derive(Clone, Debug, Zeroize, ZeroizeOnDrop)] pub struct PlaintextChunks { diff --git a/rs/crypto/internal/crypto_lib/threshold_sig/bls12_381/src/ni_dkg/fs_ni_dkg/dlog_recovery.rs b/rs/crypto/internal/crypto_lib/threshold_sig/bls12_381/src/ni_dkg/fs_ni_dkg/dlog_recovery.rs index 91340142309..d337ced36f1 100644 --- a/rs/crypto/internal/crypto_lib/threshold_sig/bls12_381/src/ni_dkg/fs_ni_dkg/dlog_recovery.rs +++ b/rs/crypto/internal/crypto_lib/threshold_sig/bls12_381/src/ni_dkg/fs_ni_dkg/dlog_recovery.rs @@ -274,7 +274,7 @@ impl BabyStepGiantStep { BabyStepGiantStepTable::compute_table_size(range, max_mbytes, max_table_mul); let giant_steps = if range > 0 && table_size > 0 { - (range + table_size - 1) / table_size + range.div_ceil(table_size) } else { 0 }; diff --git a/rs/crypto/internal/crypto_lib/threshold_sig/bls12_381/src/ni_dkg/fs_ni_dkg/nizk_chunking.rs b/rs/crypto/internal/crypto_lib/threshold_sig/bls12_381/src/ni_dkg/fs_ni_dkg/nizk_chunking.rs index 16651c18bea..771fe54318a 100644 --- a/rs/crypto/internal/crypto_lib/threshold_sig/bls12_381/src/ni_dkg/fs_ni_dkg/nizk_chunking.rs +++ b/rs/crypto/internal/crypto_lib/threshold_sig/bls12_381/src/ni_dkg/fs_ni_dkg/nizk_chunking.rs @@ -24,7 +24,7 @@ const SECURITY_LEVEL: usize = 256; pub const NUM_ZK_REPETITIONS: usize = 32; /// Defined as ceil(SECURITY_LEVEL/NUM_ZK_REPETITIONS) -pub const CHALLENGE_BITS: usize = (SECURITY_LEVEL + NUM_ZK_REPETITIONS - 1) / NUM_ZK_REPETITIONS; +pub const CHALLENGE_BITS: usize = SECURITY_LEVEL.div_ceil(NUM_ZK_REPETITIONS); // The number of bytes needed to represent a challenge (which must fit in a usize) pub const CHALLENGE_BYTES: usize = (CHALLENGE_BITS + 7) / 8; diff --git a/rs/crypto/internal/crypto_lib/threshold_sig/canister_threshold_sig/fe-derive/src/lib.rs b/rs/crypto/internal/crypto_lib/threshold_sig/canister_threshold_sig/fe-derive/src/lib.rs index 07e39b01501..89aa33d1360 100644 --- a/rs/crypto/internal/crypto_lib/threshold_sig/canister_threshold_sig/fe-derive/src/lib.rs +++ b/rs/crypto/internal/crypto_lib/threshold_sig/canister_threshold_sig/fe-derive/src/lib.rs @@ -24,7 +24,7 @@ struct FieldElementConfig { impl FieldElementConfig { fn new(ident: syn::Ident, modulus: BigUint, mut params: BTreeMap) -> Self { let limb_size = 64; // bits of u64 - let limbs = (modulus.bits() + limb_size - 1) / limb_size; + let limbs = modulus.bits().div_ceil(limb_size); let m64 = BigUint::one() << limb_size; diff --git a/rs/crypto/internal/crypto_lib/threshold_sig/canister_threshold_sig/src/utils/group.rs b/rs/crypto/internal/crypto_lib/threshold_sig/canister_threshold_sig/src/utils/group.rs index cf18fc7960a..1aa0ed4ecfa 100644 --- a/rs/crypto/internal/crypto_lib/threshold_sig/canister_threshold_sig/src/utils/group.rs +++ b/rs/crypto/internal/crypto_lib/threshold_sig/canister_threshold_sig/src/utils/group.rs @@ -1317,7 +1317,7 @@ impl WindowInfo { /// Returns the number of windows if scalar_bits bits are used #[inline(always)] pub(crate) const fn number_of_windows_for_bits(scalar_bits: usize) -> usize { - (scalar_bits + WINDOW_SIZE - 1) / WINDOW_SIZE + scalar_bits.div_ceil(WINDOW_SIZE) } /// Extract a window from a serialized scalar value @@ -1336,7 +1336,7 @@ impl WindowInfo { const BITS_IN_BYTE: usize = 8; let scalar_bytes = scalar.len(); - let windows = (scalar_bytes * 8 + WINDOW_SIZE - 1) / WINDOW_SIZE; + let windows = (scalar_bytes * 8).div_ceil(WINDOW_SIZE); // to compute the correct bit offset for bit lengths that are not a power of 2, // we need to start from the inverted value or otherwise we will have multiple options diff --git a/rs/crypto/internal/crypto_lib/types/src/encrypt/forward_secure.rs b/rs/crypto/internal/crypto_lib/types/src/encrypt/forward_secure.rs index 88926195935..c43704911d9 100644 --- a/rs/crypto/internal/crypto_lib/types/src/encrypt/forward_secure.rs +++ b/rs/crypto/internal/crypto_lib/types/src/encrypt/forward_secure.rs @@ -171,7 +171,7 @@ pub mod groth20_bls12_381 { } pub const CHUNK_BYTES: usize = 2; - pub const NUM_CHUNKS: usize = (FrBytes::SIZE + CHUNK_BYTES - 1) / CHUNK_BYTES; + pub const NUM_CHUNKS: usize = FrBytes::SIZE.div_ceil(CHUNK_BYTES); // Note: the spec currently has: Vec<(r,s,z)>; this could be represented more // strongly as [(G1,G1,G2);NUM_CHUNKS], which is equivalent to the below. diff --git a/rs/crypto/secrets_containers/src/secret_array.rs b/rs/crypto/secrets_containers/src/secret_array.rs index 1a2f84721d7..43f2494b3a7 100644 --- a/rs/crypto/secrets_containers/src/secret_array.rs +++ b/rs/crypto/secrets_containers/src/secret_array.rs @@ -56,7 +56,7 @@ impl serde::Serialize for SecretArray { struct SecretArrayVisitor; -impl<'de, const N: usize> serde::de::Visitor<'de> for SecretArrayVisitor { +impl serde::de::Visitor<'_> for SecretArrayVisitor { type Value = SecretArray; fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { diff --git a/rs/crypto/secrets_containers/src/secret_bytes.rs b/rs/crypto/secrets_containers/src/secret_bytes.rs index 4baed52781f..954f5588e93 100644 --- a/rs/crypto/secrets_containers/src/secret_bytes.rs +++ b/rs/crypto/secrets_containers/src/secret_bytes.rs @@ -49,7 +49,7 @@ impl<'a> serde::Deserialize<'a> for SecretBytes { fn deserialize>(deserializer: D) -> Result { struct Visitor; - impl<'de> serde::de::Visitor<'de> for Visitor { + impl serde::de::Visitor<'_> for Visitor { type Value = SecretBytes; fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { diff --git a/rs/crypto/tree_hash/src/lib.rs b/rs/crypto/tree_hash/src/lib.rs index e1753aeaf55..65ed25aee22 100644 --- a/rs/crypto/tree_hash/src/lib.rs +++ b/rs/crypto/tree_hash/src/lib.rs @@ -491,7 +491,7 @@ impl MixedHashTree { Collect(&'a MixedHashTree), } - impl<'a> StackItem<'a> { + impl StackItem<'_> { fn to_collect(&self) -> Self { match self { Self::Expand(t) => Self::Collect(t), diff --git a/rs/execution_environment/src/metrics.rs b/rs/execution_environment/src/metrics.rs index b3417bd1ebb..9a59bd1ca20 100644 --- a/rs/execution_environment/src/metrics.rs +++ b/rs/execution_environment/src/metrics.rs @@ -552,7 +552,7 @@ struct MeasurementScopeCore<'a> { record_zeros: bool, } -impl<'a> Drop for MeasurementScopeCore<'a> { +impl Drop for MeasurementScopeCore<'_> { fn drop(&mut self) { if let Some(outer) = &self.outer { outer.add(self.instructions, self.slices, self.messages); diff --git a/rs/ingress_manager/src/ingress_selector.rs b/rs/ingress_manager/src/ingress_selector.rs index ad0f07f69e5..553bf46bad1 100644 --- a/rs/ingress_manager/src/ingress_selector.rs +++ b/rs/ingress_manager/src/ingress_selector.rs @@ -627,7 +627,7 @@ impl<'a, T: IngressSetQuery> IngressSetChain<'a, T> { } } -impl<'a, T: IngressSetQuery> IngressSetQuery for IngressSetChain<'a, T> { +impl IngressSetQuery for IngressSetChain<'_, T> { fn contains(&self, msg_id: &IngressMessageId) -> bool { if self.first.contains(msg_id) { true diff --git a/rs/interfaces/src/consensus_pool.rs b/rs/interfaces/src/consensus_pool.rs index 88f39d258d8..627a0a1a6f3 100644 --- a/rs/interfaces/src/consensus_pool.rs +++ b/rs/interfaces/src/consensus_pool.rs @@ -490,7 +490,7 @@ impl<'a> ChainIterator<'a> { } } -impl<'a> Iterator for ChainIterator<'a> { +impl Iterator for ChainIterator<'_> { type Item = Block; fn next(&mut self) -> Option { diff --git a/rs/ledger_suite/icrc1/ledger/src/lib.rs b/rs/ledger_suite/icrc1/ledger/src/lib.rs index ee7d2fc00bf..b7f98fc2718 100644 --- a/rs/ledger_suite/icrc1/ledger/src/lib.rs +++ b/rs/ledger_suite/icrc1/ledger/src/lib.rs @@ -959,10 +959,10 @@ impl Ledger { { let tip_hash_label = Label::from("tip_hash"); let last_block_index_encoded = last_block_index.to_be_bytes().to_vec(); - return fork( + fork( label(last_block_index_label, leaf(last_block_index_encoded)), label(tip_hash_label, leaf(last_block_hash.as_slice().to_vec())), - ); + ) } } None => empty(), diff --git a/rs/messaging/src/routing/demux.rs b/rs/messaging/src/routing/demux.rs index 5b412ae13af..d270d54972d 100644 --- a/rs/messaging/src/routing/demux.rs +++ b/rs/messaging/src/routing/demux.rs @@ -46,7 +46,7 @@ impl<'a> DemuxImpl<'a> { } } -impl<'a> Demux for DemuxImpl<'a> { +impl Demux for DemuxImpl<'_> { fn process_payload( &self, state: ReplicatedState, diff --git a/rs/monitoring/metrics/src/histogram_vec_timer.rs b/rs/monitoring/metrics/src/histogram_vec_timer.rs index b54d6a5affa..23eb54ec4e9 100644 --- a/rs/monitoring/metrics/src/histogram_vec_timer.rs +++ b/rs/monitoring/metrics/src/histogram_vec_timer.rs @@ -72,7 +72,7 @@ impl<'a, const LABEL_COUNT: usize> HistogramVecTimer<'a, LABEL_COUNT> { } } -impl<'a, const LABEL_COUNT: usize> Drop for HistogramVecTimer<'a, LABEL_COUNT> { +impl Drop for HistogramVecTimer<'_, LABEL_COUNT> { fn drop(&mut self) { self.hist .with_label_values(self.label_values()) diff --git a/rs/nervous_system/common/src/memory_manager_upgrade_storage.rs b/rs/nervous_system/common/src/memory_manager_upgrade_storage.rs index 2b2af6c8f47..4d4a92df5dd 100644 --- a/rs/nervous_system/common/src/memory_manager_upgrade_storage.rs +++ b/rs/nervous_system/common/src/memory_manager_upgrade_storage.rs @@ -190,7 +190,7 @@ impl<'a, M: Memory> SizeAwareWriter<'a, M> { } // Unsafe implementation required by BufMut -unsafe impl<'a, M: Memory> BufMut for SizeAwareWriter<'a, M> { +unsafe impl BufMut for SizeAwareWriter<'_, M> { fn remaining_mut(&self) -> usize { // This function needs to return the number of bytes that can be written, not just to the // internal buffer, but to the underlying memory. @@ -304,7 +304,7 @@ impl<'a, M: Memory> SizeAwareReader<'a, M> { } } -impl<'a, M: Memory> Buf for SizeAwareReader<'a, M> { +impl Buf for SizeAwareReader<'_, M> { fn remaining(&self) -> usize { // Our implementation only reads from stable memory up until the size indicated by size bytes let total_written_memory = self.memory_used(); diff --git a/rs/p2p/consensus_manager/src/receiver.rs b/rs/p2p/consensus_manager/src/receiver.rs index 2d1a7e31ae1..2432fbd1110 100644 --- a/rs/p2p/consensus_manager/src/receiver.rs +++ b/rs/p2p/consensus_manager/src/receiver.rs @@ -556,8 +556,7 @@ where peers_sender.send_if_modified(|set| { nodes_leaving_topology .iter() - .map(|n| set.remove(*n)) - .any(|r| r) + .any(|n| set.remove(*n)) }); } debug_assert!( diff --git a/rs/phantom_newtype/src/displayer.rs b/rs/phantom_newtype/src/displayer.rs index 1c8ed820e4b..aca27709e9e 100644 --- a/rs/phantom_newtype/src/displayer.rs +++ b/rs/phantom_newtype/src/displayer.rs @@ -34,7 +34,7 @@ where } } -impl<'a, T, Displayer> fmt::Display for DisplayProxy<'a, T, Displayer> +impl fmt::Display for DisplayProxy<'_, T, Displayer> where Displayer: DisplayerOf, { diff --git a/rs/registry/nns_data_provider/src/certification.rs b/rs/registry/nns_data_provider/src/certification.rs index 79df4bd3b0e..efd31d9325f 100644 --- a/rs/registry/nns_data_provider/src/certification.rs +++ b/rs/registry/nns_data_provider/src/certification.rs @@ -231,7 +231,7 @@ where struct ProtobufVisitor(PhantomData); - impl<'de, T: prost::Message + Default> serde::de::Visitor<'de> for ProtobufVisitor { + impl serde::de::Visitor<'_> for ProtobufVisitor { type Value = Protobuf; fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result { diff --git a/rs/replicated_state/src/page_map.rs b/rs/replicated_state/src/page_map.rs index ee6a474152b..580cfad7848 100644 --- a/rs/replicated_state/src/page_map.rs +++ b/rs/replicated_state/src/page_map.rs @@ -133,7 +133,7 @@ struct WriteBuffer<'a> { start_index: PageIndex, } -impl<'a> WriteBuffer<'a> { +impl WriteBuffer<'_> { fn apply_to_file(&mut self, file: &mut File, path: &Path) -> Result<(), PersistenceError> { use std::io::{Seek, SeekFrom}; @@ -356,7 +356,7 @@ pub enum MemoryMapOrData<'a> { Data(&'a [u8]), } -impl<'a> MemoryInstructions<'a> { +impl MemoryInstructions<'_> { // Filters and cuts any instructions that do not fall into `new_range`. pub fn restrict_to_range(&mut self, new_range: &Range) { self.range = PageIndex::new(std::cmp::max(self.range.start.get(), new_range.start.get())) diff --git a/rs/replicated_state/src/page_map/page_allocator/page_bytes.rs b/rs/replicated_state/src/page_map/page_allocator/page_bytes.rs index 360278efc5c..3c5720c6542 100644 --- a/rs/replicated_state/src/page_map/page_allocator/page_bytes.rs +++ b/rs/replicated_state/src/page_map/page_allocator/page_bytes.rs @@ -19,7 +19,7 @@ where struct PageBytesVisitor; -impl<'de> Visitor<'de> for PageBytesVisitor { +impl Visitor<'_> for PageBytesVisitor { type Value = PageBytes; fn expecting(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result { diff --git a/rs/sns/swap/src/swap.rs b/rs/sns/swap/src/swap.rs index e4f58e45e0c..e687df08ce2 100644 --- a/rs/sns/swap/src/swap.rs +++ b/rs/sns/swap/src/swap.rs @@ -3768,7 +3768,7 @@ impl<'a> SwapDigest<'a> { } } -impl<'a> fmt::Debug for SwapDigest<'a> { +impl fmt::Debug for SwapDigest<'_> { fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result { let Swap { lifecycle, diff --git a/rs/state_layout/src/state_layout.rs b/rs/state_layout/src/state_layout.rs index 029082110bc..4bcf8a7de64 100644 --- a/rs/state_layout/src/state_layout.rs +++ b/rs/state_layout/src/state_layout.rs @@ -112,14 +112,14 @@ impl AccessPolicy for WriteOnly { impl WritePolicy for WriteOnly {} -impl<'a, T> AccessPolicy for RwPolicy<'a, T> { +impl AccessPolicy for RwPolicy<'_, T> { fn check_dir(p: &Path) -> Result<(), LayoutError> { WriteOnly::check_dir(p) } } -impl<'a, T> ReadPolicy for RwPolicy<'a, T> {} -impl<'a, T> WritePolicy for RwPolicy<'a, T> {} +impl ReadPolicy for RwPolicy<'_, T> {} +impl WritePolicy for RwPolicy<'_, T> {} pub type CompleteCheckpointLayout = CheckpointLayout; diff --git a/rs/state_machine_tests/src/lib.rs b/rs/state_machine_tests/src/lib.rs index a9aa8347b27..589ebd92606 100644 --- a/rs/state_machine_tests/src/lib.rs +++ b/rs/state_machine_tests/src/lib.rs @@ -3576,7 +3576,7 @@ impl StateMachine { let canister_state = replicated_state .canister_state_mut(&canister_id) .unwrap_or_else(|| panic!("Canister {} does not exist", canister_id)); - let size = (data.len() + WASM_PAGE_SIZE_IN_BYTES - 1) / WASM_PAGE_SIZE_IN_BYTES; + let size = data.len().div_ceil(WASM_PAGE_SIZE_IN_BYTES); let memory = Memory::new(PageMap::from(data), NumWasmPages::new(size)); canister_state .execution_state diff --git a/rs/state_manager/src/manifest.rs b/rs/state_manager/src/manifest.rs index 4530c25e47b..bc53ef5786f 100644 --- a/rs/state_manager/src/manifest.rs +++ b/rs/state_manager/src/manifest.rs @@ -286,7 +286,7 @@ fn write_chunk_hash(hasher: &mut Sha256, chunk_info: &ChunkInfo, version: StateS /// Returns the number of chunks of size `max_chunk_size` required to cover a /// file of size `size_bytes`. fn count_chunks(size_bytes: u64, max_chunk_size: u32) -> usize { - (size_bytes as usize + max_chunk_size as usize - 1) / max_chunk_size as usize + (size_bytes as usize).div_ceil(max_chunk_size as usize) } /// Checks if the manifest was computed using specified max_chunk_size. diff --git a/rs/state_manager/src/tip.rs b/rs/state_manager/src/tip.rs index 0ae8a522a1b..96c6d114eb2 100644 --- a/rs/state_manager/src/tip.rs +++ b/rs/state_manager/src/tip.rs @@ -847,7 +847,7 @@ fn merge_to_base( merge_candidate.is_some() }); - return rewritten.iter().any(|b| *b); + rewritten.iter().any(|b| *b) } fn serialize_to_tip( diff --git a/rs/tree_deserializer/src/types.rs b/rs/tree_deserializer/src/types.rs index bcd8b5a1c69..80dbd207a10 100644 --- a/rs/tree_deserializer/src/types.rs +++ b/rs/tree_deserializer/src/types.rs @@ -52,7 +52,7 @@ impl<'de> serde::Deserialize<'de> for Leb128EncodedU64 { { struct LebU64Visitor; - impl<'de> serde::de::Visitor<'de> for LebU64Visitor { + impl serde::de::Visitor<'_> for LebU64Visitor { type Value = Leb128EncodedU64; fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result { diff --git a/rs/types/types/src/ingress.rs b/rs/types/types/src/ingress.rs index 3985fcd80ab..02b88bd81cf 100644 --- a/rs/types/types/src/ingress.rs +++ b/rs/types/types/src/ingress.rs @@ -108,7 +108,7 @@ impl IngressStatus { match self { IngressStatus::Known { state, .. } => match state { IngressState::Completed(result) => result.memory_bytes(), - IngressState::Failed(error) => error.description().as_bytes().len(), + IngressState::Failed(error) => error.description().len(), _ => 0, }, IngressStatus::Unknown => 0, @@ -180,7 +180,7 @@ impl MemoryDiskBytes for WasmResult { fn memory_bytes(&self) -> usize { match self { WasmResult::Reply(bytes) => bytes.len(), - WasmResult::Reject(string) => string.as_bytes().len(), + WasmResult::Reject(string) => string.len(), } } diff --git a/rs/types/types/src/messages/ingress_messages.rs b/rs/types/types/src/messages/ingress_messages.rs index 212bb2d285b..a4c3184e5f8 100644 --- a/rs/types/types/src/messages/ingress_messages.rs +++ b/rs/types/types/src/messages/ingress_messages.rs @@ -235,7 +235,7 @@ impl<'de> Deserialize<'de> for SignedIngress { fn deserialize>(deserializer: D) -> Result { struct BytesVisitor; - impl<'de> serde::de::Visitor<'de> for BytesVisitor { + impl serde::de::Visitor<'_> for BytesVisitor { type Value = Vec; fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { diff --git a/rs/types/types/src/messages/message_id.rs b/rs/types/types/src/messages/message_id.rs index 2a7829614df..37eb6f4cea1 100644 --- a/rs/types/types/src/messages/message_id.rs +++ b/rs/types/types/src/messages/message_id.rs @@ -32,7 +32,7 @@ impl<'a> Deserialize<'a> for MessageId { fn deserialize>(deserializer: D) -> Result { struct MessageIdVisitor; - impl<'de> serde::de::Visitor<'de> for MessageIdVisitor { + impl serde::de::Visitor<'_> for MessageIdVisitor { type Value = MessageId; fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result { diff --git a/rs/utils/src/thread.rs b/rs/utils/src/thread.rs index 54c6a5459f5..41e9485c842 100644 --- a/rs/utils/src/thread.rs +++ b/rs/utils/src/thread.rs @@ -11,7 +11,7 @@ where { let mut items: Vec<(S, Option)> = items.map(|i| (i, None)).collect(); let threads = thread_pool.thread_count() as usize; - let items_per_thread = ((items.len() + threads - 1) / threads).max(1); + let items_per_thread = items.len().div_ceil(threads).max(1); thread_pool.scoped(|scope| { for items in items.chunks_mut(items_per_thread) { scope.execute(move || { From e8756bd644699fc9d569e38f55ef709b998fde3a Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Thu, 16 Jan 2025 10:23:23 +0000 Subject: [PATCH 03/34] . --- Cargo.lock | 1139 +++++++++-------- .../crypto_lib/bls12_381/type/src/lib.rs | 2 +- rs/protobuf/src/proxy.rs | 2 +- rs/rust_canisters/dfn_candid/src/lib.rs | 2 +- rs/rust_canisters/dfn_core/src/stable.rs | 1 - rs/types/types/src/consensus/idkg.rs | 6 +- rs/utils/validate_eq/src/lib.rs | 1 - rs/utils/validate_eq_derive/src/lib.rs | 1 - 8 files changed, 613 insertions(+), 541 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f70c30ce41c..a4443b28ab6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "abnf" @@ -39,7 +39,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "bytes", "futures-core", "futures-sink", @@ -62,7 +62,7 @@ dependencies = [ "actix-utils", "ahash 0.8.11", "base64 0.22.1", - "bitflags 2.6.0", + "bitflags 2.8.0", "brotli 6.0.0", "bytes", "bytestring", @@ -96,7 +96,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" dependencies = [ "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -214,7 +214,7 @@ dependencies = [ "actix-router", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -292,9 +292,9 @@ dependencies = [ [[package]] name = "aide" -version = "0.13.4" +version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b0e3b97a21e41ec5c19bfd9b4fc1f7086be104f8b988681230247ffc91cc8ed" +checksum = "5678d2978845ddb4bd736a026f467dd652d831e9e6254b0e41b07f7ee7523309" dependencies = [ "axum", "bytes", @@ -375,7 +375,7 @@ dependencies = [ "prometheus", "rand 0.8.5", "rsa", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", ] @@ -403,7 +403,7 @@ dependencies = [ "lazy_static", "prometheus", "serde", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -447,19 +447,20 @@ dependencies = [ [[package]] name = "anstyle-wincon" -version = "3.0.6" +version = "3.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125" +checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" dependencies = [ "anstyle", + "once_cell", "windows-sys 0.59.0", ] [[package]] name = "anyhow" -version = "1.0.94" +version = "1.0.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1fd03a028ef38ba2276dce7e33fcd6369c158a1bca17946c4b1b701891c1ff7" +checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" [[package]] name = "arbitrary" @@ -525,7 +526,7 @@ dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -567,7 +568,7 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", "synstructure", ] @@ -579,7 +580,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -691,7 +692,7 @@ version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" dependencies = [ - "event-listener 5.3.1", + "event-listener 5.4.0", "event-listener-strategy", "pin-project-lite", ] @@ -747,7 +748,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -758,13 +759,13 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.83" +version = "0.1.85" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" +checksum = "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -813,13 +814,13 @@ dependencies = [ [[package]] name = "auto_impl" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c87f3f15e7794432337fc718554eaa4dc8f04c9677a950ffe366f20a162ae42" +checksum = "e12882f59de5360c748c4cbf569a042d5fb0eb515f7bea9c1f470b47f6ffbd73" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -1108,7 +1109,7 @@ version = "0.69.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "cexpr", "clang-sys", "itertools 0.12.1", @@ -1119,7 +1120,7 @@ dependencies = [ "regex", "rustc-hash 1.1.0", "shlex", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -1337,9 +1338,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.6.0" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" +checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" [[package]] name = "bitvec" @@ -1386,9 +1387,9 @@ dependencies = [ [[package]] name = "borsh" -version = "1.5.3" +version = "1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2506947f73ad44e344215ccd6403ac2ae18cd8e046e581a441bf8d199f257f03" +checksum = "9fb65153674e51d3a42c8f27b05b9508cea85edfaade8aa46bc8fc18cecdfef3" dependencies = [ "borsh-derive", "cfg_aliases", @@ -1396,15 +1397,15 @@ dependencies = [ [[package]] name = "borsh-derive" -version = "1.5.3" +version = "1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2593a3b8b938bd68373196c9832f516be11fa487ef4ae745eb282e6a56a7244" +checksum = "a396e17ad94059c650db3d253bb6e25927f1eb462eede7e7a153bb6e75dce0a7" dependencies = [ "once_cell", "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -1451,9 +1452,9 @@ dependencies = [ [[package]] name = "bstr" -version = "1.11.1" +version = "1.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "786a307d683a5bf92e6fd5fd69a7eb613751668d1d8d67d802846dfe367c62c8" +checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0" dependencies = [ "memchr", "regex-automata 0.4.9", @@ -1574,9 +1575,9 @@ dependencies = [ [[package]] name = "bytemuck" -version = "1.20.0" +version = "1.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b37c88a63ffd85d15b406896cc343916d7cf57838a847b3a6f2ca5d39a5695a" +checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3" [[package]] name = "byteorder" @@ -1674,7 +1675,7 @@ dependencies = [ "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -1710,7 +1711,7 @@ version = "0.1.0" dependencies = [ "anyhow", "bytes", - "clap 4.5.23", + "clap 4.5.26", "futures-util", "http 1.2.0", "http-body 1.0.1", @@ -1750,9 +1751,9 @@ dependencies = [ [[package]] name = "candid" -version = "0.10.11" +version = "0.10.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d04aa85a9ba2542bded33d1eff0ffb17cb98b1be8117e0a25e1ad8c62bedc881" +checksum = "51e129c4051c57daf943586e01ef72faae48b04a8f692d5f646febf17a264c38" dependencies = [ "anyhow", "binread", @@ -1780,7 +1781,7 @@ dependencies = [ "lazy_static", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -1888,9 +1889,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] name = "cc" -version = "1.2.5" +version = "1.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c31a0499c1dc64f458ad13872de75c0eb7e3fdb0e67964610c914b034fc5956e" +checksum = "c8293772165d9345bdaaa39b45b2109591e63fe5e6fbc23c6ff930a048aa310b" dependencies = [ "jobserver", "libc", @@ -1940,7 +1941,7 @@ dependencies = [ "candid", "certificate_orchestrator_interface", "chacha20poly1305", - "clap 4.5.23", + "clap 4.5.26", "cloudflare 0.12.0 (git+https://github.com/dfinity/cloudflare-rs.git?rev=a6538a036926bd756986c9c0a5de356daef48881)", "flate2", "futures", @@ -1948,7 +1949,7 @@ dependencies = [ "ic-agent", "ic-http-certification", "ic-response-verification", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "idna 1.0.3", "instant-acme", "leb128", @@ -1958,12 +1959,12 @@ dependencies = [ "pem 1.1.1", "prometheus", "rcgen", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_cbor", "serde_json", "sha2 0.10.8", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tower 0.5.2", "tracing", @@ -1995,7 +1996,7 @@ dependencies = [ "serde", "serde_cbor", "sha2 0.10.8", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -2007,7 +2008,7 @@ dependencies = [ "ic-stable-structures", "serde", "serde_bytes", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -2150,19 +2151,19 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.23" +version = "4.5.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84" +checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783" dependencies = [ "clap_builder", - "clap_derive 4.5.18", + "clap_derive 4.5.24", ] [[package]] name = "clap_builder" -version = "4.5.23" +version = "4.5.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838" +checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121" dependencies = [ "anstream", "anstyle", @@ -2185,14 +2186,14 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.18" +version = "4.5.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" +checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -2368,7 +2369,7 @@ name = "config" version = "1.0.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "config_types", "ic-types", "macaddr", @@ -2395,7 +2396,7 @@ dependencies = [ "serde_json", "serde_with 1.14.0", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "url", ] @@ -2504,7 +2505,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "registry-canister", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde_json", "slog", "tokio", @@ -2691,18 +2692,18 @@ dependencies = [ [[package]] name = "cranelift-bforest" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac89549be94911dd0e839b4a7db99e9ed29c17517e1c026f61066884c168aa3c" +checksum = "88c1d02b72b6c411c0a2e92b25ed791ad5d071184193c08a34aa0fdcdf000b72" dependencies = [ "cranelift-entity", ] [[package]] name = "cranelift-bitset" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9bd49369f76c77e34e641af85d0956869237832c118964d08bf5f51f210875a" +checksum = "720b93bd86ebbb23ebfb2db1ed44d54b2ecbdbb2d034d485bc64aa605ee787ab" dependencies = [ "serde", "serde_derive", @@ -2710,9 +2711,9 @@ dependencies = [ [[package]] name = "cranelift-codegen" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd96ce9cf8efebd7f5ab8ced5a0ce44250280bbae9f593d74a6d7effc3582a35" +checksum = "aed3d2d9914d30b460eedd7fd507720203023997bef71452ce84873f9c93537c" dependencies = [ "bumpalo", "cranelift-bforest", @@ -2734,33 +2735,33 @@ dependencies = [ [[package]] name = "cranelift-codegen-meta" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a68e358827afe4bfb6239fcbf6fbd5ac56206ece8a99c8f5f9bbd518773281a" +checksum = "888c188d32263ec9e048873ff0b68c700933600d553f4412417916828be25f8e" dependencies = [ "cranelift-codegen-shared", ] [[package]] name = "cranelift-codegen-shared" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e184c9767afbe73d50c55ec29abcf4c32f9baf0d9d22b86d58c4d55e06dee181" +checksum = "4ddd5f4114d04ce7e073dd74e2ad16541fc61970726fcc8b2d5644a154ee4127" [[package]] name = "cranelift-control" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cc7664f2a66f053e33f149e952bb5971d138e3af637f5097727ed6dc0ed95dd" +checksum = "92cc4c98d6a4256a1600d93ccd3536f3e77da9b4ca2c279de786ac22876e67d6" dependencies = [ "arbitrary", ] [[package]] name = "cranelift-entity" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "118597e3a9cf86c3556fa579a7a23b955fa18231651a52a77a2475d305a9cf84" +checksum = "760af4b5e051b5f82097a27274b917e3751736369fa73660513488248d27f23d" dependencies = [ "cranelift-bitset", "serde", @@ -2769,9 +2770,9 @@ dependencies = [ [[package]] name = "cranelift-frontend" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7638ea1efb069a0aa18d8ee67401b6b0d19f6bfe5de5e9ede348bfc80bb0d8c7" +checksum = "c0bf77ec0f470621655ec7539860b5c620d4f91326654ab21b075b83900f8831" dependencies = [ "cranelift-codegen", "log", @@ -2781,15 +2782,15 @@ dependencies = [ [[package]] name = "cranelift-isle" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15c53e1152a0b01c4ed2b1e0535602b8e86458777dd9d18b28732b16325c7dc0" +checksum = "4b665d0a6932c421620be184f9fc7f7adaf1b0bc2fa77bb7ac5177c49abf645b" [[package]] name = "cranelift-native" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b7d8f895444fa52dd7bdd0bed11bf007a7fb43af65a6deac8fcc4094c6372f7" +checksum = "bb2e75d1bd43dfec10924798f15e6474f1dbf63b0024506551aa19394dbe72ab" dependencies = [ "cranelift-codegen", "libc", @@ -2814,7 +2815,7 @@ dependencies = [ "anes", "cast", "ciborium", - "clap 4.5.23", + "clap 4.5.26", "criterion-plot", "futures", "is-terminal", @@ -2913,7 +2914,7 @@ version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "crossterm_winapi", "libc", "mio 0.8.11", @@ -2970,7 +2971,7 @@ dependencies = [ "cssparser-macros", "dtoa-short", "itoa", - "phf 0.11.2", + "phf 0.11.3", "smallvec", ] @@ -2981,7 +2982,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" dependencies = [ "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3041,7 +3042,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3178,7 +3179,7 @@ dependencies = [ "proc-macro2", "quote", "strsim 0.11.1", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3200,7 +3201,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core 0.20.10", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3238,9 +3239,9 @@ dependencies = [ [[package]] name = "data-encoding" -version = "2.6.0" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" +checksum = "0e60eed09d8c01d3cee5b7d30acb059b76614c918fa0f992e0dd6eeb10daad6f" [[package]] name = "debugid" @@ -3293,7 +3294,7 @@ checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3314,7 +3315,7 @@ checksum = "2cdc8d50f426189eef89dac62fabfa0abb27d5cc008f25bf4156a0203325becc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3325,7 +3326,7 @@ checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3338,7 +3339,7 @@ dependencies = [ "proc-macro2", "quote", "rustc_version", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3358,7 +3359,7 @@ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3366,11 +3367,11 @@ name = "deterministic_ips" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "config_types", "ic-crypto-sha2", "macaddr", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -3378,7 +3379,7 @@ name = "dflate" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "libc", "tar", ] @@ -3493,7 +3494,7 @@ name = "diroid" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "walkdir", ] @@ -3526,7 +3527,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3771,7 +3772,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3784,7 +3785,7 @@ dependencies = [ "num-traits", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3834,7 +3835,7 @@ checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3987,9 +3988,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "event-listener" -version = "5.3.1" +version = "5.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" +checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" dependencies = [ "concurrent-queue", "parking", @@ -4002,7 +4003,7 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2" dependencies = [ - "event-listener 5.3.1", + "event-listener 5.4.0", "pin-project-lite", ] @@ -4017,7 +4018,7 @@ dependencies = [ "ic-cdk 0.16.0", "mockall", "serde", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", ] @@ -4100,11 +4101,11 @@ dependencies = [ "ic-types", "ic-types-test-utils", "ic-universal-canister", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "lazy_static", "rand 0.8.5", "rand_chacha 0.3.1", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde_cbor", "slog", "tokio", @@ -4388,9 +4389,9 @@ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" [[package]] name = "futures-lite" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cef40d21ae2c515b51041df9ed313ed21e572df340ea58a922a0aefe7e8891a1" +checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" dependencies = [ "fastrand", "futures-core", @@ -4407,7 +4408,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -4417,7 +4418,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8f2f12607f92c69b12ed746fabf9ca4f5c482cba46679c1a75b874ed7c26adb" dependencies = [ "futures-io", - "rustls 0.23.20", + "rustls 0.23.21", "rustls-pki-types", ] @@ -4472,6 +4473,19 @@ version = "0.3.55" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" +[[package]] +name = "generator" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc6bd114ceda131d3b1d665eba35788690ad37f5916457286b32ab6fd3c438dd" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "log", + "rustversion", + "windows", +] + [[package]] name = "generic-array" version = "0.14.7" @@ -4551,9 +4565,9 @@ dependencies = [ [[package]] name = "glob" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" +checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" [[package]] name = "governor" @@ -4591,7 +4605,7 @@ name = "guestos_tool" version = "1.0.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "config", "indoc", "itertools 0.12.1", @@ -4928,7 +4942,7 @@ name = "hostos_tool" version = "1.0.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "config", "config_types", "deterministic_ips", @@ -5028,10 +5042,10 @@ name = "httpbin-rs" version = "0.9.0" dependencies = [ "axum", - "clap 4.5.23", + "clap 4.5.26", "hyper 1.5.2", "hyper-util", - "rustls 0.23.20", + "rustls 0.23.21", "rustls-pemfile 2.2.0", "serde_json", "tokio", @@ -5160,7 +5174,7 @@ dependencies = [ "hyper 1.5.2", "hyper-util", "log", - "rustls 0.23.20", + "rustls 0.23.21", "rustls-native-certs 0.8.1", "rustls-pki-types", "tokio", @@ -5227,7 +5241,7 @@ dependencies = [ "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "windows-core", + "windows-core 0.52.0", ] [[package]] @@ -5288,7 +5302,7 @@ dependencies = [ "base64 0.13.1", "candid", "chrono", - "clap 4.5.23", + "clap 4.5.26", "cycles-minting-canister", "futures", "hex", @@ -5388,7 +5402,7 @@ dependencies = [ "pkcs8", "rand 0.8.5", "rangemap", - "reqwest 0.12.9", + "reqwest 0.12.12", "ring 0.17.8", "sec1", "serde", @@ -5398,7 +5412,7 @@ dependencies = [ "sha2 0.10.8", "simple_asn1", "stop-token", - "thiserror 2.0.8", + "thiserror 2.0.11", "time", "tokio", "tower-service", @@ -5434,7 +5448,7 @@ dependencies = [ "prost 0.13.4", "rand 0.8.5", "slog", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tower 0.5.2", "tracing", @@ -5465,7 +5479,7 @@ version = "0.9.0" dependencies = [ "bincode", "byteorder", - "clap 4.5.23", + "clap 4.5.26", "criterion", "ic-config", "ic-crypto-test-utils-canister-threshold-sigs", @@ -5508,7 +5522,7 @@ version = "0.9.0" dependencies = [ "anyhow", "chrono", - "clap 4.5.23", + "clap 4.5.26", "ic-config", "ic-crypto-utils-threshold-sig-der", "ic-logger", @@ -5520,7 +5534,7 @@ dependencies = [ "ic-test-utilities-tmpdir", "ic-types", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_json", "slog", @@ -5602,8 +5616,8 @@ dependencies = [ "base64 0.22.1", "bytes", "chacha20poly1305", - "clap 4.5.23", - "clap_derive 4.5.18", + "clap 4.5.26", + "clap_derive 4.5.24", "cloudflare 0.12.0 (git+https://github.com/cloudflare/cloudflare-rs.git?rev=f14720e42184ee176a97676e85ef2d2d85bc3aae)", "derive-new", "fqdn 0.4.4", @@ -5625,8 +5639,8 @@ dependencies = [ "prost-types 0.13.4", "rand 0.8.5", "rcgen", - "reqwest 0.12.9", - "rustls 0.23.20", + "reqwest 0.12.12", + "rustls 0.23.21", "rustls-acme", "rustls-pemfile 2.2.0", "rustls-platform-verifier", @@ -5637,7 +5651,7 @@ dependencies = [ "strum", "strum_macros", "systemstat", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tokio-io-timeout", "tokio-rustls 0.26.1", @@ -5666,7 +5680,7 @@ dependencies = [ "axum-extra", "bytes", "candid", - "clap 4.5.23", + "clap 4.5.26", "criterion", "dashmap 6.1.0", "ethnum", @@ -5718,8 +5732,8 @@ dependencies = [ "ratelimit", "rcgen", "regex", - "reqwest 0.12.9", - "rustls 0.23.20", + "reqwest 0.12.12", + "rustls 0.23.21", "rustls-pemfile 2.2.0", "serde", "serde_bytes", @@ -5731,7 +5745,7 @@ dependencies = [ "slog", "strum", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tikv-jemalloc-ctl", "tikv-jemallocator", "tokio", @@ -5768,7 +5782,7 @@ dependencies = [ "pem 1.1.1", "rand 0.8.5", "rand_chacha 0.3.1", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde_json", "slog", "tokio", @@ -5785,7 +5799,7 @@ dependencies = [ "ic-crypto-tree-hash", "ic-system-test-driver", "ic-types", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_cbor", "slog", @@ -5809,7 +5823,7 @@ dependencies = [ "ic-system-test-driver", "prost 0.13.4", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "slog", "tokio", ] @@ -5830,7 +5844,7 @@ dependencies = [ "ic-registry-subnet-type", "ic-system-test-driver", "ic-types", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "slog", "url", ] @@ -5842,7 +5856,7 @@ dependencies = [ "bitcoin 0.28.2", "bitcoincore-rpc", "bitcoind", - "clap 4.5.23", + "clap 4.5.26", "criterion", "futures", "hashlink", @@ -5871,7 +5885,7 @@ dependencies = [ "slog", "slog-async", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tokio-socks", "tonic", @@ -5977,7 +5991,7 @@ dependencies = [ "proptest", "prost 0.13.4", "slog", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -6051,7 +6065,7 @@ dependencies = [ "prost 0.13.4", "rand 0.8.5", "rand_chacha 0.3.1", - "rustls 0.23.20", + "rustls 0.23.21", "serde", "serde_cbor", "tokio", @@ -6177,7 +6191,7 @@ dependencies = [ "serde_bytes", "serde_cbor", "sha2 0.10.8", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -6244,7 +6258,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "scoped_threadpool", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -6375,7 +6389,7 @@ dependencies = [ "quote", "serde", "serde_tokenstream 0.2.2", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -6389,7 +6403,7 @@ dependencies = [ "quote", "serde", "serde_tokenstream 0.2.2", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -6644,7 +6658,7 @@ dependencies = [ "strum", "strum_macros", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "thousands", "time", "tokio", @@ -6893,7 +6907,7 @@ dependencies = [ "assert_matches", "async-trait", "bincode", - "clap 4.5.23", + "clap 4.5.26", "criterion", "hex", "ic-adapter-metrics-server", @@ -6972,7 +6986,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "rsa", - "rustls 0.23.20", + "rustls 0.23.21", "serde", "sha2 0.10.8", "simple_asn1", @@ -7016,7 +7030,7 @@ dependencies = [ "pem 1.1.1", "rand 0.8.5", "rand_chacha 0.3.1", - "thiserror 2.0.8", + "thiserror 2.0.11", "wycheproof", "zeroize", ] @@ -7322,7 +7336,7 @@ dependencies = [ "stubborn-io", "tarpc", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "time", "tokio", "tokio-serde", @@ -7564,7 +7578,7 @@ dependencies = [ "serde_cbor", "strum", "strum_macros", - "thiserror 2.0.8", + "thiserror 2.0.11", "zeroize", ] @@ -7733,7 +7747,7 @@ dependencies = [ "ic-types-test-utils", "rand 0.8.5", "rand_chacha 0.3.1", - "rustls 0.23.20", + "rustls 0.23.21", "tempfile", "tokio", ] @@ -7912,7 +7926,7 @@ version = "0.9.0" dependencies = [ "ic-types", "mockall", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -7933,7 +7947,7 @@ dependencies = [ "ic-types", "pkcs8", "rand 0.8.5", - "rustls 0.23.20", + "rustls 0.23.21", "signature", "time", "tokio", @@ -7969,9 +7983,9 @@ dependencies = [ "ic-types", "json5", "maplit", - "rustls 0.23.20", + "rustls 0.23.21", "serde", - "thiserror 2.0.8", + "thiserror 2.0.11", "x509-parser", ] @@ -7982,7 +7996,7 @@ dependencies = [ "ic-base-types", "ic-crypto-tls-interfaces", "mockall", - "rustls 0.23.20", + "rustls 0.23.21", ] [[package]] @@ -8003,7 +8017,7 @@ dependencies = [ "serde", "serde_bytes", "serde_cbor", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -8015,7 +8029,7 @@ dependencies = [ "ic-crypto-tree-hash", "proptest", "rand 0.8.5", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -8082,7 +8096,7 @@ name = "ic-crypto-utils-tls" version = "0.9.0" dependencies = [ "ic-base-types", - "thiserror 2.0.8", + "thiserror 2.0.11", "x509-parser", ] @@ -8097,7 +8111,7 @@ dependencies = [ "ic-registry-nns-data-provider", "ic-types", "prost 0.13.4", - "reqwest 0.12.9", + "reqwest 0.12.12", "tokio", ] @@ -8167,7 +8181,7 @@ dependencies = [ name = "ic-drun" version = "0.9.0" dependencies = [ - "clap 4.5.23", + "clap 4.5.26", "futures", "hex", "ic-canister-sandbox-backend-lib", @@ -8212,7 +8226,7 @@ dependencies = [ "bincode", "candid", "canister-test", - "clap 4.5.23", + "clap 4.5.26", "criterion", "embedders_bench", "ic-base-types", @@ -8390,7 +8404,7 @@ dependencies = [ "anyhow", "assert_cmd", "assert_matches", - "clap 4.5.23", + "clap 4.5.26", "ic-crypto-test-utils-reproducible-rng", "ic-sys", "maplit", @@ -8444,9 +8458,9 @@ dependencies = [ "ic-metrics", "ic-test-utilities-logger", "prometheus", - "reqwest 0.12.9", + "reqwest 0.12.12", "slog", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tokio-io-timeout", "tower 0.5.2", @@ -8509,7 +8523,7 @@ dependencies = [ "ic-tracing", "ic-types", "ic-validator", - "inferno 0.12.0", + "inferno 0.12.1", "maplit", "mockall", "pretty_assertions", @@ -8517,9 +8531,9 @@ dependencies = [ "proptest", "prost 0.13.4", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "rstest", - "rustls 0.23.20", + "rustls 0.23.21", "serde", "serde_bytes", "serde_cbor", @@ -8566,7 +8580,7 @@ dependencies = [ "maplit", "prometheus", "prost 0.13.4", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_json", "slog", @@ -8591,7 +8605,7 @@ dependencies = [ "ic-agent", "ic-http-certification", "ic-response-verification", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "thiserror 1.0.69", ] @@ -8607,7 +8621,7 @@ dependencies = [ "ic-logger", "ic-test-utilities-in-memory-logger", "mockito", - "reqwest 0.12.9", + "reqwest 0.12.12", "slog", "tar", "tempfile", @@ -8622,7 +8636,7 @@ dependencies = [ "async-stream", "byte-unit", "bytes", - "clap 4.5.23", + "clap 4.5.26", "futures", "http 1.2.0", "http-body-util", @@ -8640,13 +8654,13 @@ dependencies = [ "prometheus", "rand 0.8.5", "rstest", - "rustls 0.23.20", + "rustls 0.23.21", "rustls-pemfile 2.2.0", "serde", "serde_json", "slog", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tokio-rustls 0.26.1", "tonic", @@ -8780,7 +8794,7 @@ dependencies = [ "icrc-ledger-types", "num-bigint 0.4.6", "pocket-ic", - "reqwest 0.12.9", + "reqwest 0.12.12", "rosetta-core", "serde", "tempfile", @@ -8797,7 +8811,7 @@ dependencies = [ "ic-rosetta-test-utils", "icp-ledger", "pocket-ic", - "reqwest 0.12.9", + "reqwest 0.12.12", "tempfile", "tokio", ] @@ -8810,7 +8824,7 @@ dependencies = [ "axum", "candid", "ciborium", - "clap 4.5.23", + "clap 4.5.26", "futures", "hex", "ic-agent", @@ -8830,7 +8844,7 @@ dependencies = [ "ic-rosetta-test-utils", "ic-sys", "ic-test-utilities-load-wasm", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "icrc-ledger-agent", "icrc-ledger-types", "indicatif", @@ -8841,7 +8855,7 @@ dependencies = [ "pocket-ic", "proptest", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "rolling-file", "rosetta-core", "rusqlite", @@ -8867,7 +8881,7 @@ version = "0.1.0" dependencies = [ "anyhow", "candid", - "clap 4.5.23", + "clap 4.5.26", "hex", "ic-agent", "ic-crypto-ed25519", @@ -8878,7 +8892,7 @@ dependencies = [ "icrc-ledger-types", "num-bigint 0.4.6", "pocket-ic", - "reqwest 0.12.9", + "reqwest 0.12.12", "rosetta-core", "serde", "tokio", @@ -8893,7 +8907,7 @@ dependencies = [ "candid", "icrc-ledger-types", "pocket-ic", - "reqwest 0.12.9", + "reqwest 0.12.12", "tempfile", "tokio", ] @@ -8931,7 +8945,7 @@ dependencies = [ "rand 0.8.5", "serde", "serde_bytes", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -9171,7 +9185,7 @@ dependencies = [ "serde", "strum", "strum_macros", - "thiserror 2.0.8", + "thiserror 2.0.11", "tower 0.5.2", ] @@ -9180,7 +9194,7 @@ name = "ic-interfaces-adapter-client" version = "0.9.0" dependencies = [ "strum_macros", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -9235,7 +9249,7 @@ dependencies = [ "ic-crypto-tree-hash", "ic-types", "phantom_newtype", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -9270,7 +9284,7 @@ dependencies = [ "icp-ledger", "on_wire", "proptest", - "reqwest 0.12.9", + "reqwest 0.12.12", "rusqlite", "serde", "tokio", @@ -9495,7 +9509,7 @@ dependencies = [ "ic-types", "ic_consensus_system_test_utils", "icp-ledger", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "slog", "url", @@ -9509,11 +9523,11 @@ dependencies = [ "assert_matches", "candid", "candid_parser", - "clap 4.5.23", + "clap 4.5.26", "futures", "hex", "maplit", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_json", "sha2 0.10.8", @@ -9664,7 +9678,7 @@ name = "ic-metrics-tool" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", ] [[package]] @@ -9686,7 +9700,7 @@ dependencies = [ "pocket-ic", "serde", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", ] @@ -10447,7 +10461,7 @@ version = "0.9.0" dependencies = [ "candid", "canister-test", - "clap 4.5.23", + "clap 4.5.26", "ic-base-types", "ic-canister-client", "ic-interfaces-registry", @@ -10471,7 +10485,7 @@ dependencies = [ name = "ic-nns-inspector" version = "0.1.0" dependencies = [ - "clap 4.5.23", + "clap 4.5.26", "csv", "hex", "ic-base-types", @@ -10706,7 +10720,7 @@ dependencies = [ "quinn", "quinn-udp", "rcgen", - "rustls 0.23.20", + "rustls 0.23.21", "serde", "slog", "tempfile", @@ -10744,7 +10758,7 @@ dependencies = [ "pprof", "prost 0.12.6", "regex", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", ] @@ -10755,7 +10769,7 @@ dependencies = [ "anyhow", "assert_matches", "base64 0.13.1", - "clap 4.5.23", + "clap 4.5.26", "fs_extra", "ic-config", "ic-crypto-node-key-generation", @@ -10786,12 +10800,12 @@ dependencies = [ "pretty_assertions", "prost 0.13.4", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_json", "slog", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "url", "x509-cert", ] @@ -10871,11 +10885,11 @@ dependencies = [ "prost 0.13.4", "quinn", "rstest", - "rustls 0.23.20", + "rustls 0.23.21", "slog", "socket2 0.5.8", "static_assertions", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tokio-metrics", "tokio-util", @@ -10903,7 +10917,7 @@ name = "ic-recovery" version = "0.9.0" dependencies = [ "base64 0.13.1", - "clap 4.5.23", + "clap 4.5.26", "futures", "hex", "ic-artifact-pool", @@ -10933,7 +10947,7 @@ dependencies = [ "ic-test-utilities-types", "ic-types", "prost 0.13.4", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_cbor", "serde_json", @@ -10953,7 +10967,7 @@ version = "0.9.0" dependencies = [ "anyhow", "base64 0.13.1", - "clap 4.5.23", + "clap 4.5.26", "ic-base-types", "ic-crypto-sha2", "ic-crypto-utils-threshold-sig-der", @@ -10971,7 +10985,7 @@ dependencies = [ "serde", "serde_json", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "url", ] @@ -10983,7 +10997,7 @@ dependencies = [ "candid", "ic-base-types", "serde", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -11058,7 +11072,7 @@ dependencies = [ "ic-registry-subnet-features", "ic-types", "serde_cbor", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -11107,7 +11121,7 @@ dependencies = [ "ic-registry-transport", "ic-types", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "url", ] @@ -11180,7 +11194,7 @@ dependencies = [ "ic-registry-transport", "ic-sys", "ic-types", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -11195,7 +11209,7 @@ dependencies = [ name = "ic-registry-replicator" version = "0.9.0" dependencies = [ - "clap 4.5.23", + "clap 4.5.26", "ic-config", "ic-crypto-utils-threshold-sig-der", "ic-http-endpoints-metrics", @@ -11280,7 +11294,7 @@ name = "ic-replay" version = "0.9.0" dependencies = [ "candid", - "clap 4.5.23", + "clap 4.5.26", "hex", "ic-artifact-pool", "ic-canister-client", @@ -11334,7 +11348,7 @@ version = "0.9.0" dependencies = [ "assert_cmd", "canister-test", - "clap 4.5.23", + "clap 4.5.26", "criterion", "hex", "ic-artifact-pool", @@ -11590,7 +11604,7 @@ dependencies = [ "async-trait", "base64 0.13.1", "candid", - "clap 4.5.23", + "clap 4.5.26", "dfn_candid", "dfn_protobuf", "futures", @@ -11637,7 +11651,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "registry-canister", - "reqwest 0.12.9", + "reqwest 0.12.12", "rolling-file", "rosetta-core", "rusqlite", @@ -11670,7 +11684,7 @@ dependencies = [ "icp-ledger", "nix 0.24.3", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "rosetta-core", "serde", "serde_bytes", @@ -11751,7 +11765,7 @@ dependencies = [ "serde", "serde_json", "textplots", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", ] @@ -11762,7 +11776,7 @@ dependencies = [ "anyhow", "base64 0.13.1", "candid", - "clap 4.5.23", + "clap 4.5.26", "futures", "hex", "ic-agent", @@ -11788,7 +11802,7 @@ dependencies = [ "serde_json", "serde_yaml", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", ] @@ -11804,7 +11818,7 @@ dependencies = [ "canbench-rs", "candid", "candid_parser", - "clap 4.5.23", + "clap 4.5.26", "comparable", "futures", "hex", @@ -11879,7 +11893,7 @@ version = "0.9.0" dependencies = [ "bytes", "candid", - "clap 4.5.23", + "clap 4.5.26", "comparable", "ic-base-types", "ic-nervous-system-proto", @@ -12294,7 +12308,7 @@ name = "ic-starter" version = "0.9.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "ic-config", "ic-logger", "ic-management-canister-types", @@ -12346,7 +12360,7 @@ version = "0.9.0" dependencies = [ "candid", "ciborium", - "clap 4.5.23", + "clap 4.5.26", "hex", "ic-artifact-pool", "ic-base-types", @@ -12506,7 +12520,7 @@ dependencies = [ "prost 0.13.4", "rand 0.8.5", "slog", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tokio-metrics", "tokio-util", @@ -12518,7 +12532,7 @@ dependencies = [ name = "ic-state-tool" version = "0.9.0" dependencies = [ - "clap 4.5.23", + "clap 4.5.26", "hex", "ic-config", "ic-logger", @@ -12542,7 +12556,7 @@ dependencies = [ name = "ic-subnet-splitting" version = "0.9.0" dependencies = [ - "clap 4.5.23", + "clap 4.5.26", "hex", "ic-agent", "ic-base-types", @@ -12581,7 +12595,7 @@ dependencies = [ "prost 0.13.4", "rand 0.8.5", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "wsl", ] @@ -12638,7 +12652,7 @@ dependencies = [ "candid", "canister-test", "chrono", - "clap 4.5.23", + "clap 4.5.26", "config_types", "crossbeam-channel", "cycles-minting-canister", @@ -12716,7 +12730,7 @@ dependencies = [ "ic-types", "ic-types-test-utils", "ic-universal-canister", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "ic-wasm-types", "icp-ledger", "icrc-ledger-types", @@ -12744,7 +12758,7 @@ dependencies = [ "rcgen", "regex", "registry-canister", - "reqwest 0.12.9", + "reqwest 0.12.12", "ring 0.17.8", "rosetta-core", "rsa", @@ -12762,7 +12776,7 @@ dependencies = [ "strum", "strum_macros", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "time", "tokio", "tokio-util", @@ -13151,7 +13165,7 @@ dependencies = [ "ic_consensus_system_test_utils", "ic_consensus_threshold_sig_system_test_utils", "icrc-ledger-types", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde_json", "slog", ] @@ -13204,7 +13218,7 @@ dependencies = [ "serde_cbor", "serde_repr", "sha2 0.10.8", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -13251,7 +13265,7 @@ dependencies = [ "serde_with 1.14.0", "strum", "strum_macros", - "thiserror 2.0.8", + "thiserror 2.0.11", "thousands", ] @@ -13292,9 +13306,9 @@ dependencies = [ [[package]] name = "ic-utils" -version = "0.39.0" +version = "0.39.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb1da4a68c45146018b8496c157ad94126b9c202ab4400c6c0a9030c1ef0f0ba" +checksum = "e1fb9c35ef4976a71d37f3ebf73ee43bb52b360be60d91d3a77f74fbc875dda4" dependencies = [ "async-trait", "candid", @@ -13307,7 +13321,7 @@ dependencies = [ "sha2 0.10.8", "strum", "strum_macros", - "thiserror 1.0.69", + "thiserror 2.0.11", "time", "tokio", ] @@ -13371,7 +13385,7 @@ dependencies = [ "ic-types", "mockall", "rand 0.8.5", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -13503,7 +13517,7 @@ checksum = "19fabaeecfe37f24b433c62489242fc54503d98d4cc8d0f9ef7544dfdfc0ddcb" dependencies = [ "anyhow", "candid", - "clap 4.5.23", + "clap 4.5.26", "libflate", "rustc-demangle", "serde", @@ -13543,7 +13557,7 @@ dependencies = [ "byte-unit", "candid", "chrono", - "clap 4.5.23", + "clap 4.5.26", "console 0.11.3", "futures", "hex", @@ -13635,10 +13649,10 @@ dependencies = [ "prometheus", "proptest", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "slog", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "url", ] @@ -13788,7 +13802,7 @@ dependencies = [ "prost 0.13.4", "rand 0.8.5", "registry-canister", - "reqwest 0.12.9", + "reqwest 0.12.12", "rsa", "serde_json", "slog", @@ -13827,7 +13841,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "registry-canister", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde_cbor", "serde_json", "slog", @@ -13885,7 +13899,7 @@ dependencies = [ "ic_consensus_system_test_utils", "k256", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde_bytes", "serde_cbor", "slog", @@ -13910,7 +13924,7 @@ dependencies = [ name = "icp-config" version = "0.9.0" dependencies = [ - "clap 4.5.23", + "clap 4.5.26", "eyre", "ic-config", "ic-replicated-state", @@ -14200,7 +14214,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -14262,9 +14276,9 @@ dependencies = [ [[package]] name = "impl-more" -version = "0.1.8" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aae21c3177a27788957044151cc2800043d127acaa460a47ebb9b84dfa2c6aa0" +checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" [[package]] name = "impl-rlp" @@ -14292,7 +14306,7 @@ checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -14362,12 +14376,12 @@ dependencies = [ [[package]] name = "inferno" -version = "0.12.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75a5d75fee4d36809e6b021e4b96b686e763d365ffdb03af2bd00786353f84fe" +checksum = "692eda1cc790750b9f5a5e3921ef9c117fd5498b97cfacbc910693e5b29002dc" dependencies = [ "ahash 0.8.11", - "clap 4.5.23", + "clap 4.5.26", "crossbeam-channel", "crossbeam-utils", "dashmap 6.1.0", @@ -14377,7 +14391,7 @@ dependencies = [ "log", "num-format", "once_cell", - "quick-xml 0.37.1", + "quick-xml 0.37.2", "rgb", "str_stack", ] @@ -14387,7 +14401,7 @@ name = "inject-files" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "partition_tools", "tempfile", "tokio", @@ -14404,13 +14418,13 @@ dependencies = [ [[package]] name = "insta" -version = "1.41.1" +version = "1.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e9ffc4d4892617c50a928c52b2961cb5174b6fc6ebf252b2fac9d21955c48b8" +checksum = "6513e4067e16e69ed1db5ab56048ed65db32d10ba5fc1217f5393f8f17d8b5a5" dependencies = [ "console 0.15.10", - "lazy_static", "linked-hash-map", + "once_cell", "similar", ] @@ -14584,9 +14598,9 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.76" +version = "0.3.77" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7" +checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" dependencies = [ "once_cell", "wasm-bindgen", @@ -14721,7 +14735,7 @@ dependencies = [ "k8s-openapi", "kube-core", "pem 3.0.4", - "rustls 0.23.20", + "rustls 0.23.21", "rustls-pemfile 2.2.0", "secrecy", "serde", @@ -14837,12 +14851,12 @@ checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" name = "launch-single-vm" version = "0.1.0" dependencies = [ - "clap 4.5.23", + "clap 4.5.26", "ic-prep", "ic-registry-subnet-type", "ic-system-test-driver", "ic-types", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "slog", "slog-async", @@ -15076,7 +15090,7 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "libc", "redox_syscall 0.5.8", ] @@ -15134,9 +15148,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.20" +version = "1.1.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2d16453e800a8cf6dd2fc3eb4bc99b786a9b90c663b8559a5b1a041bf89e472" +checksum = "df9b68e50e6e0b26f672573834882eb57759f6db9b3be2ea3c35c91188bb4eaa" dependencies = [ "cc", "libc", @@ -15168,9 +15182,9 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linux-raw-sys" -version = "0.4.14" +version = "0.4.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" +checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" [[package]] name = "linux_kernel_command_line" @@ -15262,9 +15276,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.22" +version = "0.4.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" +checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f" [[package]] name = "logos" @@ -15295,7 +15309,7 @@ dependencies = [ "proc-macro2", "quote", "regex-syntax 0.6.29", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -15321,6 +15335,19 @@ dependencies = [ "logos-codegen", ] +[[package]] +name = "loom" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" +dependencies = [ + "cfg-if 1.0.0", + "generator", + "scoped-tls", + "tracing", + "tracing-subscriber", +] + [[package]] name = "lru" version = "0.7.8" @@ -15545,7 +15572,7 @@ dependencies = [ "ic-registry-subnet-type", "ic-system-test-driver", "ic-types", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "itertools 0.12.1", "rand 0.8.5", "rand_chacha 0.3.1", @@ -15615,9 +15642,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.8.2" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394" +checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924" dependencies = [ "adler2", ] @@ -15675,7 +15702,7 @@ dependencies = [ "cfg-if 1.0.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -15704,25 +15731,23 @@ dependencies = [ [[package]] name = "moka" -version = "0.12.8" +version = "0.12.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32cf62eb4dd975d2dde76432fb1075c49e3ee2331cf36f1f8fd4b66550d32b6f" +checksum = "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" dependencies = [ "async-lock", - "async-trait", "crossbeam-channel", "crossbeam-epoch", "crossbeam-utils", - "event-listener 5.3.1", + "event-listener 5.4.0", "futures-util", - "once_cell", + "loom", "parking_lot 0.12.3", - "quanta", + "portable-atomic", "rustc_version", "smallvec", "tagptr", "thiserror 1.0.69", - "triomphe", "uuid", ] @@ -15775,9 +15800,9 @@ checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" [[package]] name = "neli" -version = "0.6.4" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1100229e06604150b3becd61a4965d5c70f3be1759544ea7274166f4be41ef43" +checksum = "93062a0dce6da2517ea35f301dfc88184ce18d3601ec786a727a87bf535deca9" dependencies = [ "byteorder", "libc", @@ -15787,9 +15812,9 @@ dependencies = [ [[package]] name = "neli-proc-macros" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c168194d373b1e134786274020dae7fc5513d565ea2ebb9bc9ff17ffb69106d4" +checksum = "0c8034b7fbb6f9455b2a96c19e6edf8dc9fc34c70449938d8ee3b4df363f61fe" dependencies = [ "either", "proc-macro2", @@ -15859,12 +15884,12 @@ dependencies = [ "ic-test-utilities", "ic-test-utilities-types", "ic-types", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "proxy_canister", "rand 0.8.5", "rand_chacha 0.3.1", "registry-canister", - "reqwest 0.12.9", + "reqwest 0.12.12", "slog", "tokio", "url", @@ -15881,7 +15906,7 @@ name = "nft_exporter" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "serde", "serde_json", ] @@ -15929,7 +15954,7 @@ version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "cfg-if 1.0.0", "libc", "memoffset 0.9.1", @@ -15941,7 +15966,7 @@ version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "cfg-if 1.0.0", "cfg_aliases", "libc", @@ -15991,7 +16016,7 @@ dependencies = [ "on_wire", "prost 0.13.4", "registry-canister", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde_cbor", "slog", "tokio", @@ -16220,7 +16245,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -16240,9 +16265,9 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" [[package]] name = "object" -version = "0.36.5" +version = "0.36.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e" +checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" dependencies = [ "crc32fast", "hashbrown 0.15.2", @@ -16512,7 +16537,7 @@ dependencies = [ "async-trait", "backoff", "candid", - "clap 4.5.23", + "clap 4.5.26", "env-file-reader", "exec", "get_if_addrs", @@ -16622,7 +16647,7 @@ dependencies = [ "ic-types", "ic_consensus_system_test_utils", "itertools 0.12.1", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "slog", "tokio", @@ -16848,7 +16873,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc" dependencies = [ "memchr", - "thiserror 2.0.8", + "thiserror 2.0.11", "ucd-trie", ] @@ -16872,7 +16897,7 @@ dependencies = [ "pest_meta", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -16928,12 +16953,12 @@ dependencies = [ [[package]] name = "phf" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" +checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" dependencies = [ "phf_macros", - "phf_shared 0.11.2", + "phf_shared 0.11.3", ] [[package]] @@ -16958,25 +16983,25 @@ dependencies = [ [[package]] name = "phf_generator" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" +checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" dependencies = [ - "phf_shared 0.11.2", + "phf_shared 0.11.3", "rand 0.8.5", ] [[package]] name = "phf_macros" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" +checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" dependencies = [ - "phf_generator 0.11.2", - "phf_shared 0.11.2", + "phf_generator 0.11.3", + "phf_shared 0.11.3", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -16985,16 +17010,16 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" dependencies = [ - "siphasher", + "siphasher 0.3.11", ] [[package]] name = "phf_shared" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" +checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" dependencies = [ - "siphasher", + "siphasher 1.0.1", ] [[package]] @@ -17005,29 +17030,29 @@ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" [[package]] name = "pin-project" -version = "1.1.7" +version = "1.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95" +checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.7" +version = "1.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c" +checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] name = "pin-project-lite" -version = "0.2.15" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff" +checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" [[package]] name = "pin-utils" @@ -17141,7 +17166,7 @@ dependencies = [ "ic-transport-types", "k256", "lazy_static", - "reqwest 0.12.9", + "reqwest 0.12.12", "schemars", "serde", "serde_bytes", @@ -17151,7 +17176,7 @@ dependencies = [ "slog", "strum", "strum_macros", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tracing", "tracing-appender", @@ -17176,7 +17201,7 @@ dependencies = [ "bitcoincore-rpc", "bytes", "candid", - "clap 4.5.23", + "clap 4.5.26", "ctrlc", "flate2", "form_urlencoded", @@ -17225,7 +17250,7 @@ dependencies = [ "ic-test-utilities", "ic-test-utilities-registry", "ic-types", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "ic-utils-thread", "ic-validator-ingress-message", "itertools 0.12.1", @@ -17234,7 +17259,7 @@ dependencies = [ "rand 0.8.5", "rcgen", "registry-canister", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_cbor", "serde_json", @@ -17430,12 +17455,12 @@ dependencies = [ [[package]] name = "prettyplease" -version = "0.2.25" +version = "0.2.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64d1ec885c64d0457d564db4ec299b2dae3f9c02808b8ad9c3a089c591b18033" +checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac" dependencies = [ "proc-macro2", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -17513,9 +17538,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "1.0.92" +version = "1.0.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" +checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" dependencies = [ "unicode-ident", ] @@ -17540,7 +17565,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "hex", "lazy_static", "procfs-core", @@ -17553,7 +17578,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "hex", ] @@ -17594,7 +17619,7 @@ checksum = "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" dependencies = [ "bit-set 0.8.0", "bit-vec 0.8.0", - "bitflags 2.6.0", + "bitflags 2.8.0", "lazy_static", "num-traits", "rand 0.8.5", @@ -17614,7 +17639,7 @@ checksum = "4ee1c9ac207483d5e7db4940700de86a9aae46ef90c48b57f99fe7edb8345e49" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -17654,7 +17679,7 @@ dependencies = [ "prost 0.12.6", "prost-types 0.12.6", "regex", - "syn 2.0.90", + "syn 2.0.96", "tempfile", ] @@ -17674,7 +17699,7 @@ dependencies = [ "prost 0.13.4", "prost-types 0.13.4", "regex", - "syn 2.0.90", + "syn 2.0.96", "tempfile", ] @@ -17688,7 +17713,7 @@ dependencies = [ "itertools 0.12.1", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -17701,7 +17726,7 @@ dependencies = [ "itertools 0.13.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -17786,9 +17811,9 @@ dependencies = [ [[package]] name = "pulley-interpreter" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "403a1a95f4c18a45c86c7bff13df00347afd0abcbf2e54af273c837339ffcf77" +checksum = "8324e531de91a3c25021a30fb7862d39cc516b61fbb801176acb5ff279ea887b" dependencies = [ "cranelift-bitset", "log", @@ -17797,9 +17822,9 @@ dependencies = [ [[package]] name = "quanta" -version = "0.12.4" +version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "773ce68d0bb9bc7ef20be3536ffe94e223e1f365bd374108b2659fac0c65cfe6" +checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e" dependencies = [ "crossbeam-utils", "libc", @@ -17827,9 +17852,9 @@ dependencies = [ [[package]] name = "quick-xml" -version = "0.37.1" +version = "0.37.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f22f29bdff3987b4d8632ef95fd6424ec7e4e0a57e2f4fc63e489e75357f6a03" +checksum = "165859e9e55f79d67b96c5d96f4e88b6f2695a1972849c15a6a3f5c59fc2c003" dependencies = [ "memchr", ] @@ -17845,9 +17870,9 @@ dependencies = [ "quinn-proto", "quinn-udp", "rustc-hash 2.1.0", - "rustls 0.23.20", + "rustls 0.23.21", "socket2 0.5.8", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tracing", ] @@ -17863,10 +17888,10 @@ dependencies = [ "rand 0.8.5", "ring 0.17.8", "rustc-hash 2.1.0", - "rustls 0.23.20", + "rustls 0.23.21", "rustls-pki-types", "slab", - "thiserror 2.0.8", + "thiserror 2.0.11", "tinyvec", "tracing", "web-time", @@ -17888,9 +17913,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.37" +version = "1.0.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" +checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" dependencies = [ "proc-macro2", ] @@ -18112,7 +18137,7 @@ version = "0.9.0" dependencies = [ "anyhow", "candid", - "clap 4.5.23", + "clap 4.5.26", "ic-agent", "k256", "rate-limits-api", @@ -18166,7 +18191,7 @@ dependencies = [ "serde_cbor", "serde_json", "strum", - "thiserror 2.0.8", + "thiserror 2.0.11", "uuid", ] @@ -18183,11 +18208,11 @@ dependencies = [ [[package]] name = "raw-cpuid" -version = "11.2.0" +version = "11.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ab240315c661615f2ee9f0f2cd32d5a7343a84d5ebcccb99d46e6637565e7b0" +checksum = "c6928fa44c097620b706542d428957635951bade7143269085389d42c8a4927e" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", ] [[package]] @@ -18212,9 +18237,9 @@ dependencies = [ [[package]] name = "rcgen" -version = "0.13.1" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54077e1872c46788540de1ea3d7f4ccb1983d12f9aa909b234468676c1a36779" +checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" dependencies = [ "pem 3.0.4", "ring 0.17.8", @@ -18248,7 +18273,7 @@ version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", ] [[package]] @@ -18511,9 +18536,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.12.9" +version = "0.12.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" +checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" dependencies = [ "base64 0.22.1", "bytes", @@ -18537,7 +18562,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "quinn", - "rustls 0.23.20", + "rustls 0.23.21", "rustls-native-certs 0.8.1", "rustls-pemfile 2.2.0", "rustls-pki-types", @@ -18549,6 +18574,7 @@ dependencies = [ "tokio-rustls 0.26.1", "tokio-socks", "tokio-util", + "tower 0.5.2", "tower-service", "url", "wasm-bindgen", @@ -18806,7 +18832,7 @@ dependencies = [ "on_wire", "prost 0.13.4", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "rosetta-core", "serde", "serde_json", @@ -18861,7 +18887,7 @@ dependencies = [ "regex", "relative-path", "rustc_version", - "syn 2.0.90", + "syn 2.0.96", "unicode-ident", ] @@ -18984,11 +19010,11 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.42" +version = "0.38.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85" +checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "errno 0.3.10", "libc", "linux-raw-sys", @@ -19023,9 +19049,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.20" +version = "0.23.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5065c3f250cbd332cd894be57c40fa52387247659b14a2d6041d121547903b1b" +checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8" dependencies = [ "brotli 7.0.0", "brotli-decompressor", @@ -19059,7 +19085,7 @@ dependencies = [ "ring 0.17.8", "serde", "serde_json", - "thiserror 2.0.8", + "thiserror 2.0.11", "webpki-roots 0.26.7", "x509-parser", ] @@ -19086,7 +19112,7 @@ dependencies = [ "openssl-probe", "rustls-pki-types", "schannel", - "security-framework 3.1.0", + "security-framework 3.2.0", ] [[package]] @@ -19127,7 +19153,7 @@ dependencies = [ "jni", "log", "once_cell", - "rustls 0.23.20", + "rustls 0.23.21", "rustls-native-certs 0.7.3", "rustls-platform-verifier-android", "rustls-webpki 0.102.8", @@ -19166,9 +19192,9 @@ dependencies = [ [[package]] name = "rustversion" -version = "1.0.18" +version = "1.0.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248" +checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" [[package]] name = "rusty-fork" @@ -19218,7 +19244,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -19252,7 +19278,7 @@ dependencies = [ "proc-macro2", "quote", "serde_derive_internals", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -19311,7 +19337,7 @@ dependencies = [ "ic-system-test-driver", "ic_consensus_system_test_utils", "nns_dapp", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde_json", "slog", ] @@ -19412,7 +19438,7 @@ version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "core-foundation 0.9.4", "core-foundation-sys", "libc", @@ -19422,11 +19448,11 @@ dependencies = [ [[package]] name = "security-framework" -version = "3.1.0" +version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81d3f8c9bfcc3cbb6b0179eb57042d75b1582bdc65c3cb95f3fa999509c03cbc" +checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "core-foundation 0.10.0", "core-foundation-sys", "libc", @@ -19435,9 +19461,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.13.0" +version = "2.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1863fd3768cd83c56a7f60faa4dc0d403f1b6df0a38c3c25f44b7894e45370d5" +checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" dependencies = [ "core-foundation-sys", "libc", @@ -19449,7 +19475,7 @@ version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4eb30575f3638fc8f6815f448d50cb1a2e255b0897985c8c59f4d37b72a07b06" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "cssparser", "derive_more 0.99.18", "fxhash", @@ -19473,9 +19499,9 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.216" +version = "1.0.217" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e" +checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" dependencies = [ "serde_derive", ] @@ -19533,13 +19559,13 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.216" +version = "1.0.217" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" +checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -19550,14 +19576,14 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] name = "serde_json" -version = "1.0.133" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377" +checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" dependencies = [ "itoa", "memchr", @@ -19606,7 +19632,7 @@ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -19629,7 +19655,7 @@ dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -19691,7 +19717,7 @@ dependencies = [ "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -19721,7 +19747,7 @@ name = "setupos-disable-checks" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "indoc", "linux_kernel_command_line", "partition_tools", @@ -19735,7 +19761,7 @@ name = "setupos-inject-configuration" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "config", "partition_tools", "serde", @@ -19751,7 +19777,7 @@ name = "setupos_tool" version = "1.0.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "config", "config_types", "deterministic_ips", @@ -19873,13 +19899,13 @@ checksum = "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e" [[package]] name = "simple_asn1" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" +checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" dependencies = [ "num-bigint 0.4.6", "num-traits", - "thiserror 1.0.69", + "thiserror 2.0.11", "time", ] @@ -19909,6 +19935,12 @@ version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" +[[package]] +name = "siphasher" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" + [[package]] name = "slab" version = "0.4.9" @@ -20038,7 +20070,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20066,7 +20098,7 @@ dependencies = [ "ic-system-test-driver", "ic-types", "ic-universal-canister", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "ic_consensus_system_test_utils", "icp-ledger", "icrc-ledger-agent", @@ -20124,7 +20156,7 @@ dependencies = [ "ic-registry-subnet-type", "ic-system-test-driver", "ic-types", - "reqwest 0.12.9", + "reqwest 0.12.12", "slog", ] @@ -20304,7 +20336,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta-derive 0.2.0", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20316,7 +20348,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta-derive 0.3.0", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20327,7 +20359,7 @@ checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20338,7 +20370,7 @@ checksum = "152a0b65a590ff6c3da95cabe2353ee04e6167c896b28e3b14478c2636c922fc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20360,7 +20392,7 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20388,9 +20420,9 @@ checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142" [[package]] name = "symbolic-common" -version = "12.12.4" +version = "12.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd33e73f154e36ec223c18013f7064a2c120f1162fc086ac9933542def186b00" +checksum = "8150eae9699e3c73a3e6431dc1f80d87748797c0457336af23e94c1de619ed24" dependencies = [ "debugid", "memmap2", @@ -20400,9 +20432,9 @@ dependencies = [ [[package]] name = "symbolic-demangle" -version = "12.12.4" +version = "12.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89e51191290147f071777e37fe111800bb82a9059f9c95b19d2dd41bfeddf477" +checksum = "95f4a9846f7a8933b6d198c022faa2c9bd89e1a970bed9d9a98d25708bf8de17" dependencies = [ "rustc-demangle", "symbolic-common", @@ -20421,9 +20453,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.90" +version = "2.0.96" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31" +checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" dependencies = [ "proc-macro2", "quote", @@ -20475,7 +20507,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20506,11 +20538,11 @@ dependencies = [ "anyhow", "async-trait", "axum", - "clap 4.5.23", + "clap 4.5.26", "http 1.2.0", "itertools 0.12.1", - "reqwest 0.12.9", - "thiserror 2.0.8", + "reqwest 0.12.12", + "thiserror 2.0.11", "tokio", "url", ] @@ -20615,12 +20647,13 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.14.0" +version = "3.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c" +checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" dependencies = [ "cfg-if 1.0.0", "fastrand", + "getrandom", "once_cell", "rustix", "windows-sys 0.59.0", @@ -20691,7 +20724,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta 0.2.0", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20703,7 +20736,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta 0.3.0", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20743,7 +20776,7 @@ dependencies = [ "ic_consensus_system_test_utils", "nns_dapp", "os_qualification_utils", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_json", "slog", @@ -20778,11 +20811,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.8" +version = "2.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08f5383f3e0071702bf93ab5ee99b52d26936be9dedd9413067cbdcddcb6141a" +checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" dependencies = [ - "thiserror-impl 2.0.8", + "thiserror-impl 2.0.11", ] [[package]] @@ -20793,18 +20826,18 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] name = "thiserror-impl" -version = "2.0.8" +version = "2.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2f357fcec90b3caef6623a099691be676d033b40a058ac95d2a6ade6fa0c943" +checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20927,9 +20960,9 @@ dependencies = [ [[package]] name = "tinyvec" -version = "1.8.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" +checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" dependencies = [ "tinyvec_macros", ] @@ -20980,14 +21013,14 @@ checksum = "8d9ef545650e79f30233c0003bcc2504d7efac6dad25fca40744de773fe2049c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] name = "tokio" -version = "1.42.0" +version = "1.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" +checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" dependencies = [ "backtrace", "bytes", @@ -21013,13 +21046,13 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -21061,7 +21094,7 @@ version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37" dependencies = [ - "rustls 0.23.20", + "rustls 0.23.21", "tokio", ] @@ -21204,7 +21237,7 @@ dependencies = [ "prost-build 0.13.4", "prost-types 0.13.4", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -21254,7 +21287,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" dependencies = [ "base64 0.21.7", - "bitflags 2.6.0", + "bitflags 2.8.0", "bytes", "http 1.2.0", "http-body 1.0.1", @@ -21273,7 +21306,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697" dependencies = [ "async-compression", - "bitflags 2.6.0", + "bitflags 2.8.0", "bytes", "futures-core", "http 1.2.0", @@ -21375,7 +21408,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -21515,12 +21548,6 @@ dependencies = [ "serde_json", ] -[[package]] -name = "triomphe" -version = "0.1.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "859eb650cfee7434994602c3a68b25d77ad9e68c8a6cd491616ef86661382eb3" - [[package]] name = "trust-dns-proto" version = "0.22.0" @@ -21643,11 +21670,10 @@ dependencies = [ [[package]] name = "ulid" -version = "1.1.3" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04f903f293d11f31c0c29e4148f6dc0d033a7f80cebc0282bea147611667d289" +checksum = "f294bff79170ed1c5633812aff1e565c35d993a36e757f9bc0accf5eec4e6045" dependencies = [ - "getrandom", "rand 0.8.5", "web-time", ] @@ -21660,9 +21686,9 @@ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" [[package]] name = "unicase" -version = "2.8.0" +version = "2.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df" +checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" [[package]] name = "unicode-bidi" @@ -21814,9 +21840,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.11.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" +checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4" dependencies = [ "getrandom", "serde", @@ -21873,7 +21899,7 @@ dependencies = [ name = "vsock_guest" version = "1.0.0" dependencies = [ - "clap 4.5.23", + "clap 4.5.26", "vsock_lib", ] @@ -21890,7 +21916,7 @@ version = "1.0.0" dependencies = [ "anyhow", "regex", - "reqwest 0.12.9", + "reqwest 0.12.12", "rusb", "serde", "serde_json", @@ -22002,34 +22028,35 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.99" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396" +checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" dependencies = [ "cfg-if 1.0.0", "once_cell", + "rustversion", "wasm-bindgen-macro", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.99" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79" +checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" dependencies = [ "bumpalo", "log", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.49" +version = "0.4.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38176d9b44ea84e9184eff0bc34cc167ed044f816accfe5922e54d84cf48eca2" +checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" dependencies = [ "cfg-if 1.0.0", "js-sys", @@ -22040,9 +22067,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.99" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe" +checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -22050,22 +22077,25 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.99" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2" +checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.99" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6" +checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" +dependencies = [ + "unicode-ident", +] [[package]] name = "wasm-encoder" @@ -22098,12 +22128,12 @@ dependencies = [ [[package]] name = "wasm-encoder" -version = "0.222.0" +version = "0.223.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3432682105d7e994565ef928ccf5856cf6af4ba3dddebedb737f61caed70f956" +checksum = "7e636076193fa68103e937ac951b5f2f587624097017d764b8984d9c0f149464" dependencies = [ "leb128", - "wasmparser 0.222.0", + "wasmparser 0.223.0", ] [[package]] @@ -22126,7 +22156,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d28bc49ba1e5c5b61ffa7a2eace10820443c4b7d1c0b144109261d14570fdf8" dependencies = [ "ahash 0.8.11", - "bitflags 2.6.0", + "bitflags 2.8.0", "hashbrown 0.14.5", "indexmap 2.7.0", "semver", @@ -22140,7 +22170,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca917a21307d3adf2b9857b94dd05ebf8496bdcff4437a9b9fb3899d3e6c74e7" dependencies = [ "ahash 0.8.11", - "bitflags 2.6.0", + "bitflags 2.8.0", "hashbrown 0.14.5", "indexmap 2.7.0", "semver", @@ -22153,7 +22183,7 @@ version = "0.221.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9845c470a2e10b61dd42c385839cdd6496363ed63b5c9e420b5488b77bd22083" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "hashbrown 0.15.2", "indexmap 2.7.0", "semver", @@ -22162,11 +22192,11 @@ dependencies = [ [[package]] name = "wasmparser" -version = "0.222.0" +version = "0.223.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4adf50fde1b1a49c1add6a80d47aea500c88db70551805853aa8b88f3ea27ab5" +checksum = "d5a99faceb1a5a84dd6084ec4bfa4b2ab153b5793b43fd8f58b89232634afc35" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "indexmap 2.7.0", "semver", ] @@ -22195,12 +22225,12 @@ dependencies = [ [[package]] name = "wasmtime" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f639ecae347b9a2227e453a7b7671e84370a0b61f47a15e0390fe9b7725e47b3" +checksum = "edd30973c65eceb0f37dfcc430d83abd5eb24015fdfcab6912f52949287e04f0" dependencies = [ "anyhow", - "bitflags 2.6.0", + "bitflags 2.8.0", "bumpalo", "cc", "cfg-if 1.0.0", @@ -22239,23 +22269,23 @@ dependencies = [ [[package]] name = "wasmtime-asm-macros" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "882a18800471cfc063c8b3ccf75723784acc3fd534009ac09421f2fac2fcdcec" +checksum = "c6c21dd30d1f3f93ee390ac1a7ec304ecdbfdab6390e1add41a1f52727b0992b" dependencies = [ "cfg-if 1.0.0", ] [[package]] name = "wasmtime-component-macro" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb5c0a77c9e1927c3d471f53cc13767c3d3438e5d5ffd394e3eb31c86445fd60" +checksum = "9f948a6ef3119d52c9f12936970de28ddf3f9bea04bc65571f4a92d2e5ab38f4" dependencies = [ "anyhow", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", "wasmtime-component-util", "wasmtime-wit-bindgen", "wit-parser", @@ -22263,15 +22293,15 @@ dependencies = [ [[package]] name = "wasmtime-component-util" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43702ca98bf5162eca0573db691ed9ecd36d716f8c6688410fe26ec16b6f9bcb" +checksum = "b9275aa01ceaaa2fa6c0ecaa5267518d80b9d6e9ae7c7ea42f4c6e073e6a69ef" [[package]] name = "wasmtime-cranelift" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20070aa5b75080a8932ec328419faf841df2bc6ceb16b55b0df2b952098392a2" +checksum = "0701a44a323267aae4499672dae422b266cee3135a23b640972ec8c0e10a44a2" dependencies = [ "anyhow", "cfg-if 1.0.0", @@ -22294,9 +22324,9 @@ dependencies = [ [[package]] name = "wasmtime-environ" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2604ddb24879d4dc1dedcb7081d7a8e017259bce916fdae097a97db52cbaab80" +checksum = "264c968c1b81d340355ece2be0bc31a10f567ccb6ce08512c3b7d10e26f3cbe5" dependencies = [ "anyhow", "cranelift-bitset", @@ -22317,9 +22347,9 @@ dependencies = [ [[package]] name = "wasmtime-fiber" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98593412d2b167ebe2b59d4a17a184978a72f976b53b3a0ec05629451079ac1d" +checksum = "78505221fd5bd7b07b4e1fa2804edea49dc231e626ad6861adc8f531812973e6" dependencies = [ "anyhow", "cc", @@ -22332,9 +22362,9 @@ dependencies = [ [[package]] name = "wasmtime-jit-icache-coherence" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d40d7722b9e1fbeae135715710a8a2570b1e6cf72b74dd653962d89831c6c70d" +checksum = "9bedb677ca1b549d98f95e9e1f9251b460090d99a2c196a0614228c064bf2e59" dependencies = [ "anyhow", "cfg-if 1.0.0", @@ -22344,26 +22374,26 @@ dependencies = [ [[package]] name = "wasmtime-slab" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8579c335220b4ece9aa490a0e8b46de78cd342b195ab21ff981d095e14b52383" +checksum = "564905638c132c275d365c1fa074f0b499790568f43148d29de84ccecfb5cb31" [[package]] name = "wasmtime-versioned-export-macros" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7de0a56fb0a69b185968f2d7a9ba54750920a806470dff7ad8de91ac06d277e" +checksum = "1e91092e6cf77390eeccee273846a9327f3e8f91c3c6280f60f37809f0e62d29" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] name = "wasmtime-winch" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abd309943c443f5590d12f9aba9ba63c481091c955a0a14de0c2a9e0e3aaeca9" +checksum = "b111d909dc604c741bd8ac2f4af373eaa5c68c34b5717271bcb687688212cef8" dependencies = [ "anyhow", "cranelift-codegen", @@ -22378,9 +22408,9 @@ dependencies = [ [[package]] name = "wasmtime-wit-bindgen" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "969f83022dac3435d6469edb582ceed04cfe32aa44dc3ef16e5cb55574633df8" +checksum = "5f38f7a5eb2f06f53fe943e7fb8bf4197f7cf279f1bc52c0ce56e9d3ffd750a4" dependencies = [ "anyhow", "heck 0.5.0", @@ -22403,31 +22433,31 @@ dependencies = [ [[package]] name = "wast" -version = "222.0.0" +version = "223.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ce7191f4b7da0dd300cc32476abae6457154e4625d9b1bc26890828a9a26f6e" +checksum = "d59b2ba8a2ff9f06194b7be9524f92e45e70149f4dacc0d0c7ad92b59ac875e4" dependencies = [ "bumpalo", "leb128", "memchr", "unicode-width 0.2.0", - "wasm-encoder 0.222.0", + "wasm-encoder 0.223.0", ] [[package]] name = "wat" -version = "1.222.0" +version = "1.223.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fde61b4b52f9a84ae31b5e8902a2cd3162ea45d8bf564c729c3288fe52f4334" +checksum = "662786915c427e4918ff01eabb3c4756d4d947cd8f635761526b4cc9da2eaaad" dependencies = [ - "wast 222.0.0", + "wast 223.0.0", ] [[package]] name = "web-sys" -version = "0.3.76" +version = "0.3.77" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc" +checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" dependencies = [ "js-sys", "wasm-bindgen", @@ -22548,9 +22578,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "winch-codegen" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9110decc2983ed94de904804dcd979ba59cbabc78a94fec6b1d8468ec513d0f6" +checksum = "6232f40a795be2ce10fc761ed3b403825126a60d12491ac556ea104a932fd18a" dependencies = [ "anyhow", "cranelift-codegen", @@ -22563,6 +22593,16 @@ dependencies = [ "wasmtime-environ", ] +[[package]] +name = "windows" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" +dependencies = [ + "windows-core 0.58.0", + "windows-targets 0.52.6", +] + [[package]] name = "windows-core" version = "0.52.0" @@ -22572,6 +22612,41 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-core" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-result", + "windows-strings", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-implement" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.96", +] + +[[package]] +name = "windows-interface" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.96", +] + [[package]] name = "windows-registry" version = "0.2.0" @@ -22752,9 +22827,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winnow" -version = "0.6.20" +version = "0.6.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" +checksum = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a" dependencies = [ "memchr", ] @@ -22870,9 +22945,9 @@ dependencies = [ [[package]] name = "xattr" -version = "1.3.1" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" +checksum = "e105d177a3871454f754b33bb0ee637ecaaac997446375fd3e5d43a2ed00c909" dependencies = [ "libc", "linux-raw-sys", @@ -22969,7 +23044,7 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", "synstructure", ] @@ -22991,7 +23066,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -23011,7 +23086,7 @@ checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", "synstructure", ] @@ -23032,7 +23107,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -23054,7 +23129,7 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] diff --git a/rs/crypto/internal/crypto_lib/bls12_381/type/src/lib.rs b/rs/crypto/internal/crypto_lib/bls12_381/type/src/lib.rs index c529b19c830..a238c6d4869 100644 --- a/rs/crypto/internal/crypto_lib/bls12_381/type/src/lib.rs +++ b/rs/crypto/internal/crypto_lib/bls12_381/type/src/lib.rs @@ -852,7 +852,7 @@ macro_rules! define_affine_and_projective_types { const WINDOW_MASK: u8 = (1 << Self::WINDOW_BITS) - 1; // The total number of windows in a scalar - const WINDOWS : usize = (Self::SUBGROUP_BITS + Self::WINDOW_BITS - 1) / Self::WINDOW_BITS; + const WINDOWS : usize = Self::SUBGROUP_BITS.div_ceil(define_affine_and_projective_types!(G1Affine, G1Projective, 48)); // We must select from 2^WINDOW_BITS elements in each table // group. However one element of the table group is always the diff --git a/rs/protobuf/src/proxy.rs b/rs/protobuf/src/proxy.rs index 51bf54ba2d2..d34d66fea31 100644 --- a/rs/protobuf/src/proxy.rs +++ b/rs/protobuf/src/proxy.rs @@ -132,7 +132,7 @@ impl ProxyDecodeError { T: Error + Eq + 'static, { self.source() - .map_or(false, |err| err.downcast_ref() == Some(&other_err)) + .is_some_and(false, |err| err.downcast_ref() == Some(&other_err)) } } diff --git a/rs/rust_canisters/dfn_candid/src/lib.rs b/rs/rust_canisters/dfn_candid/src/lib.rs index 7c31d2e8b82..c292858a37b 100644 --- a/rs/rust_canisters/dfn_candid/src/lib.rs +++ b/rs/rust_canisters/dfn_candid/src/lib.rs @@ -116,7 +116,7 @@ impl FromWire /// this is a private mirror of the type in dfn_core::api which generates the /// serialization/deserialization for it without putting a dependency on candid /// in dfn_core - +/// /// This is a bit of a weird type witness. Candid is multi arity in both inputs /// and outputs the outputs don't fit in well with rust. To make writing candid /// nicer we assume that every function is going to try and return one value, if diff --git a/rs/rust_canisters/dfn_core/src/stable.rs b/rs/rust_canisters/dfn_core/src/stable.rs index 68dbfe1b541..d4cfd4df04b 100644 --- a/rs/rust_canisters/dfn_core/src/stable.rs +++ b/rs/rust_canisters/dfn_core/src/stable.rs @@ -11,7 +11,6 @@ const PAGE_SIZE: f64 = 64.0 * 1024.0; /// +--------+-----------------+--------> /// | length | content | junk /// +--------+-----------------+--------> - const LENGTH_BYTES: u32 = 4; pub fn stable64_size() -> u64 { diff --git a/rs/types/types/src/consensus/idkg.rs b/rs/types/types/src/consensus/idkg.rs index 27aefe53f93..67a8c7ce4c2 100644 --- a/rs/types/types/src/consensus/idkg.rs +++ b/rs/types/types/src/consensus/idkg.rs @@ -248,10 +248,10 @@ impl IDkgPayload { } /// Return an iterator of all ids of pre-signatures for the given key in the payload. - pub fn iter_pre_signature_ids<'a>( - &'a self, + pub fn iter_pre_signature_ids( + &self, key_id: &'a IDkgMasterPublicKeyId, - ) -> impl Iterator + '_ { + ) -> impl Iterator { let available_pre_signature_ids = self .available_pre_signatures .iter() diff --git a/rs/utils/validate_eq/src/lib.rs b/rs/utils/validate_eq/src/lib.rs index 0795f8c2368..f95750c2ec4 100644 --- a/rs/utils/validate_eq/src/lib.rs +++ b/rs/utils/validate_eq/src/lib.rs @@ -6,7 +6,6 @@ use std::fmt::Debug; /// /// Gigantic fields such as PageMaps that are unfeasible to compare in production are meant to /// be exempted from comparison. - pub trait ValidateEq { fn validate_eq(&self, rhs: &Self) -> Result<(), String>; } diff --git a/rs/utils/validate_eq_derive/src/lib.rs b/rs/utils/validate_eq_derive/src/lib.rs index 1b9f87e7513..cc07d8788c7 100644 --- a/rs/utils/validate_eq_derive/src/lib.rs +++ b/rs/utils/validate_eq_derive/src/lib.rs @@ -13,7 +13,6 @@ use syn::Data::Struct; /// - Ignore ignores the field. /// - None (default) compares fields using PartialEq and reports their name in case of /// divergence. - enum ValidateEqFieldAttr { /// Compare using .eq() and return field name if it diverges. CompareWithPartialEq, From f87b0f71f6cbad3c1ba6a4ab0eeb23ed7d20fa69 Mon Sep 17 00:00:00 2001 From: IDX GitHub Automation Date: Thu, 16 Jan 2025 10:35:25 +0000 Subject: [PATCH 04/34] Updating container image to sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d Image tag: b3869ba20c4e9ba2915be302f5b5a4b23da0545af2f1cb896441055372950389 --- .devcontainer/devcontainer.json | 2 +- .github/workflows-source/ci-main.yml | 2 +- .github/workflows-source/ci-pr-only.yml | 2 +- .github/workflows-source/release-testing.yml | 2 +- .github/workflows-source/schedule-daily.yml | 2 +- .github/workflows-source/schedule-hourly.yml | 2 +- .../workflows/anonymization-backend-release.yml | 2 +- .github/workflows/ci-main.yml | 16 ++++++++-------- .github/workflows/ci-pr-only.yml | 8 ++++---- .../workflows/rate-limits-backend-release.yml | 2 +- .github/workflows/release-testing.yml | 12 ++++++------ .github/workflows/rosetta-release.yml | 2 +- .github/workflows/schedule-daily.yml | 12 ++++++------ .github/workflows/schedule-hourly.yml | 6 +++--- .github/workflows/schedule-rust-bench.yml | 2 +- .github/workflows/schedule-weekly.yml | 2 +- .github/workflows/system-tests-k8s.yml | 4 ++-- .github/workflows/update-mainnet-revisions.yaml | 2 +- ci/container/TAG | 2 +- 19 files changed, 42 insertions(+), 42 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index e5f7c85bcb8..8628c222dd7 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,5 +1,5 @@ { - "image": "ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45", + "image": "ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d", "remoteUser": "ubuntu", "privileged": true, "runArgs": [ diff --git a/.github/workflows-source/ci-main.yml b/.github/workflows-source/ci-main.yml index ae371889aee..452ddfed984 100644 --- a/.github/workflows-source/ci-main.yml +++ b/.github/workflows-source/ci-main.yml @@ -32,7 +32,7 @@ env: anchors: image: &image - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d dind-large-setup: &dind-large-setup runs-on: labels: dind-large diff --git a/.github/workflows-source/ci-pr-only.yml b/.github/workflows-source/ci-pr-only.yml index 6d13482cbb7..10a556e4a67 100644 --- a/.github/workflows-source/ci-pr-only.yml +++ b/.github/workflows-source/ci-pr-only.yml @@ -17,7 +17,7 @@ env: anchors: image: &image - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d dind-small-setup: &dind-small-setup timeout-minutes: 30 runs-on: diff --git a/.github/workflows-source/release-testing.yml b/.github/workflows-source/release-testing.yml index 9b7c1c854d7..8271bc63f62 100644 --- a/.github/workflows-source/release-testing.yml +++ b/.github/workflows-source/release-testing.yml @@ -23,7 +23,7 @@ env: anchors: image: &image - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d dind-large-setup: &dind-large-setup runs-on: group: zh1 diff --git a/.github/workflows-source/schedule-daily.yml b/.github/workflows-source/schedule-daily.yml index d8546002961..b0dd9433da9 100644 --- a/.github/workflows-source/schedule-daily.yml +++ b/.github/workflows-source/schedule-daily.yml @@ -16,7 +16,7 @@ env: anchors: image: &image - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d dind-large-setup: &dind-large-setup runs-on: group: zh1 diff --git a/.github/workflows-source/schedule-hourly.yml b/.github/workflows-source/schedule-hourly.yml index 580333253f4..ed5f7bd9b93 100644 --- a/.github/workflows-source/schedule-hourly.yml +++ b/.github/workflows-source/schedule-hourly.yml @@ -16,7 +16,7 @@ env: anchors: image: &image - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d dind-large-setup: &dind-large-setup runs-on: labels: dind-large diff --git a/.github/workflows/anonymization-backend-release.yml b/.github/workflows/anonymization-backend-release.yml index 6cb04a8c820..3f44f4cd37f 100644 --- a/.github/workflows/anonymization-backend-release.yml +++ b/.github/workflows/anonymization-backend-release.yml @@ -33,7 +33,7 @@ jobs: labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp -v /ceph-s3-info:/ceph-s3-info diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index e69dad8e241..b72777c00fb 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -30,7 +30,7 @@ jobs: bazel-test-all: name: Bazel Test All container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp -v /ceph-s3-info:/ceph-s3-info timeout-minutes: 90 @@ -127,7 +127,7 @@ jobs: runs-on: labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp -v /ceph-s3-info:/ceph-s3-info timeout-minutes: 90 @@ -224,7 +224,7 @@ jobs: runs-on: labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp -v /ceph-s3-info:/ceph-s3-info timeout-minutes: 90 @@ -259,7 +259,7 @@ jobs: runs-on: labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp -v /ceph-s3-info:/ceph-s3-info timeout-minutes: 90 @@ -294,7 +294,7 @@ jobs: runs-on: labels: dind-small container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d timeout-minutes: 30 steps: - name: Checkout @@ -324,7 +324,7 @@ jobs: build-ic: name: Build IC container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp -v /ceph-s3-info:/ceph-s3-info timeout-minutes: 90 @@ -427,7 +427,7 @@ jobs: cargo-clippy-linux: name: Cargo Clippy Linux container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d timeout-minutes: 30 runs-on: group: ch1 @@ -464,7 +464,7 @@ jobs: cargo-build-release-linux: name: Cargo Build Release Linux container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d timeout-minutes: 30 runs-on: group: ch1 diff --git a/.github/workflows/ci-pr-only.yml b/.github/workflows/ci-pr-only.yml index 1d9a94645d2..870eef04fd0 100644 --- a/.github/workflows/ci-pr-only.yml +++ b/.github/workflows/ci-pr-only.yml @@ -20,7 +20,7 @@ jobs: runs-on: labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME if: ${{ github.event_name != 'merge_group' }} @@ -61,7 +61,7 @@ jobs: runs-on: labels: dind-small container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME if: ${{ github.event_name != 'merge_group' }} @@ -102,7 +102,7 @@ jobs: runs-on: labels: dind-small container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME if: ${{ github.event_name != 'merge_group' }} @@ -150,7 +150,7 @@ jobs: runs-on: labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME if: contains(github.event.pull_request.labels.*.name, 'CI_COVERAGE') diff --git a/.github/workflows/rate-limits-backend-release.yml b/.github/workflows/rate-limits-backend-release.yml index b17b9c10ffb..02948d0370f 100644 --- a/.github/workflows/rate-limits-backend-release.yml +++ b/.github/workflows/rate-limits-backend-release.yml @@ -33,7 +33,7 @@ jobs: labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp -v /ceph-s3-info:/ceph-s3-info diff --git a/.github/workflows/release-testing.yml b/.github/workflows/release-testing.yml index f6cdc4c7500..c7379fc9b6e 100644 --- a/.github/workflows/release-testing.yml +++ b/.github/workflows/release-testing.yml @@ -28,7 +28,7 @@ jobs: group: zh1 labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp timeout-minutes: 180 # 3 hours @@ -71,7 +71,7 @@ jobs: group: zh1 labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp timeout-minutes: 180 # 3 hours @@ -114,7 +114,7 @@ jobs: group: zh1 labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp timeout-minutes: 90 @@ -157,7 +157,7 @@ jobs: group: zh1 labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp timeout-minutes: 60 @@ -205,7 +205,7 @@ jobs: group: zh1 labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp timeout-minutes: 180 # 3 hours @@ -233,7 +233,7 @@ jobs: group: zh1 labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp timeout-minutes: 180 # 3 hours diff --git a/.github/workflows/rosetta-release.yml b/.github/workflows/rosetta-release.yml index 2da864a410d..cd99e734580 100644 --- a/.github/workflows/rosetta-release.yml +++ b/.github/workflows/rosetta-release.yml @@ -22,7 +22,7 @@ jobs: runs-on: labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/schedule-daily.yml b/.github/workflows/schedule-daily.yml index 833d90f273b..4abe4664aa8 100644 --- a/.github/workflows/schedule-daily.yml +++ b/.github/workflows/schedule-daily.yml @@ -15,7 +15,7 @@ jobs: bazel-test-bare-metal: name: Bazel Test Bare Metal container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp timeout-minutes: 120 @@ -73,7 +73,7 @@ jobs: group: zh1 labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp timeout-minutes: 720 # 12 hours @@ -115,7 +115,7 @@ jobs: group: zh1 labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp timeout-minutes: 20 @@ -157,7 +157,7 @@ jobs: group: zh1 labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp timeout-minutes: 480 @@ -212,7 +212,7 @@ jobs: group: zh1 labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp timeout-minutes: 60 @@ -264,7 +264,7 @@ jobs: group: zh1 labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp timeout-minutes: 120 diff --git a/.github/workflows/schedule-hourly.yml b/.github/workflows/schedule-hourly.yml index f374fb886c1..5edac33ba22 100644 --- a/.github/workflows/schedule-hourly.yml +++ b/.github/workflows/schedule-hourly.yml @@ -17,7 +17,7 @@ jobs: runs-on: labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp timeout-minutes: 120 @@ -54,7 +54,7 @@ jobs: bazel-system-test-hourly: name: Bazel System Tests Hourly container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp timeout-minutes: 120 @@ -97,7 +97,7 @@ jobs: runs-on: labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp timeout-minutes: 120 diff --git a/.github/workflows/schedule-rust-bench.yml b/.github/workflows/schedule-rust-bench.yml index b95f77f7bc5..eb8e515e004 100644 --- a/.github/workflows/schedule-rust-bench.yml +++ b/.github/workflows/schedule-rust-bench.yml @@ -20,7 +20,7 @@ jobs: # see linux-x86-64 runner group labels: rust-benchmarks container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d # running on bare metal machine using ubuntu user options: --user ubuntu -v /cache:/cache timeout-minutes: 720 # 12 hours diff --git a/.github/workflows/schedule-weekly.yml b/.github/workflows/schedule-weekly.yml index 918fe9b4864..e0ac84c0026 100644 --- a/.github/workflows/schedule-weekly.yml +++ b/.github/workflows/schedule-weekly.yml @@ -14,7 +14,7 @@ jobs: runs-on: labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME -v /cache:/cache diff --git a/.github/workflows/system-tests-k8s.yml b/.github/workflows/system-tests-k8s.yml index 5544f6a0994..009c0313d63 100644 --- a/.github/workflows/system-tests-k8s.yml +++ b/.github/workflows/system-tests-k8s.yml @@ -48,7 +48,7 @@ jobs: group: ln1 labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME -e KUBECONFIG --privileged --cgroupns host @@ -103,7 +103,7 @@ jobs: group: ln1 labels: dind-large container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME -e KUBECONFIG --privileged --cgroupns host diff --git a/.github/workflows/update-mainnet-revisions.yaml b/.github/workflows/update-mainnet-revisions.yaml index d847894404e..605c82259e1 100644 --- a/.github/workflows/update-mainnet-revisions.yaml +++ b/.github/workflows/update-mainnet-revisions.yaml @@ -38,7 +38,7 @@ jobs: runs-on: labels: dind-small container: - image: ghcr.io/dfinity/ic-build@sha256:4fd13b47285e783c3a6f35aadd9559d097c0de162a1cf221ead66ab1598d5d45 + image: ghcr.io/dfinity/ic-build@sha256:2e8185171700872d48fdfb4b08e175fca5be27b3fbbc4d7bed681ec8486f8b1d options: >- -e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp -v /ceph-s3-info:/ceph-s3-info steps: diff --git a/ci/container/TAG b/ci/container/TAG index 1b88ba01cf3..510327d7002 100644 --- a/ci/container/TAG +++ b/ci/container/TAG @@ -1 +1 @@ -7beeb6e69346fd10ff4421688aec841d072ac4f8c4c80d3b089d64aa280c0894 +b3869ba20c4e9ba2915be302f5b5a4b23da0545af2f1cb896441055372950389 From 4f666a1d59d1956aba163aaa74e4195179a5c677 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Thu, 16 Jan 2025 12:48:16 +0000 Subject: [PATCH 05/34] Upgrade lock files and rust_rules --- Cargo.Bazel.Fuzzing.json.lock | 15436 ++++++++++++++++--------------- Cargo.Bazel.Fuzzing.toml.lock | 3117 +++---- Cargo.Bazel.json.lock | 15580 ++++++++++++++++---------------- Cargo.Bazel.toml.lock | 3305 ++++--- WORKSPACE.bazel | 4 +- 5 files changed, 18390 insertions(+), 19052 deletions(-) diff --git a/Cargo.Bazel.Fuzzing.json.lock b/Cargo.Bazel.Fuzzing.json.lock index 3ec5130c1bf..5c872f3e89f 100644 --- a/Cargo.Bazel.Fuzzing.json.lock +++ b/Cargo.Bazel.Fuzzing.json.lock @@ -1,5 +1,5 @@ { - "checksum": "ee07bd5cde20eb057c9baa703b47a96ece7ed32714378e3b62f6cb2a1bde2d94", + "checksum": "962105bacf76174bb9be442cbb2028c770d340764fad6962ea5b73b2bca5800d", "crates": { "abnf 0.12.0": { "name": "abnf", @@ -161,14 +161,14 @@ ], "license_file": null }, - "actix-codec 0.5.1": { + "actix-codec 0.5.2": { "name": "actix-codec", - "version": "0.5.1", + "version": "0.5.2", "package_url": "https://github.com/actix/actix-net", "repository": { "Http": { - "url": "https://static.crates.io/crates/actix-codec/0.5.1/download", - "sha256": "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8" + "url": "https://static.crates.io/crates/actix-codec/0.5.2/download", + "sha256": "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" } }, "targets": [ @@ -193,7 +193,7 @@ "deps": { "common": [ { - "id": "bitflags 1.3.2", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -209,15 +209,15 @@ "target": "futures_sink" }, { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -231,8 +231,8 @@ ], "selects": {} }, - "edition": "2018", - "version": "0.5.1" + "edition": "2021", + "version": "0.5.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -285,7 +285,7 @@ "deps": { "common": [ { - "id": "actix-codec 0.5.1", + "id": "actix-codec 0.5.2", "target": "actix_codec" }, { @@ -309,7 +309,7 @@ "target": "base64" }, { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -321,15 +321,15 @@ "target": "bytes" }, { - "id": "bytestring 1.3.0", + "id": "bytestring 1.4.0", "target": "bytestring" }, { - "id": "encoding_rs 0.8.33", + "id": "encoding_rs 0.8.35", "target": "encoding_rs" }, { - "id": "flate2 1.0.31", + "id": "flate2 1.0.35", "target": "flate2" }, { @@ -345,7 +345,7 @@ "target": "http" }, { - "id": "httparse 1.8.0", + "id": "httparse 1.9.5", "target": "httparse" }, { @@ -353,7 +353,7 @@ "target": "httpdate" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { @@ -361,7 +361,7 @@ "target": "language_tags" }, { - "id": "local-channel 0.1.4", + "id": "local-channel 0.1.5", "target": "local_channel" }, { @@ -373,7 +373,7 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -389,7 +389,7 @@ "target": "smallvec" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -411,7 +411,7 @@ "proc_macro_deps": { "common": [ { - "id": "derive_more 0.99.17", + "id": "derive_more 0.99.18", "target": "derive_more" } ], @@ -458,11 +458,11 @@ "deps": { "common": [ { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -517,7 +517,7 @@ "deps": { "common": [ { - "id": "bytestring 1.3.0", + "id": "bytestring 1.4.0", "target": "bytestring" }, { @@ -529,7 +529,7 @@ "target": "http" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -601,7 +601,7 @@ "target": "futures_core" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -626,14 +626,14 @@ ], "license_file": "LICENSE-APACHE" }, - "actix-server 2.3.0": { + "actix-server 2.5.0": { "name": "actix-server", - "version": "2.3.0", - "package_url": "https://github.com/actix/actix-net.git", + "version": "2.5.0", + "package_url": "https://github.com/actix/actix-net/tree/master/actix-server", "repository": { "Http": { - "url": "https://static.crates.io/crates/actix-server/2.3.0/download", - "sha256": "3eb13e7eef0423ea6eab0e59f6c72e7cb46d33691ad56a726b3cd07ddec2c2d4" + "url": "https://static.crates.io/crates/actix-server/2.5.0/download", + "sha256": "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894" } }, "targets": [ @@ -684,15 +684,15 @@ "target": "futures_util" }, { - "id": "mio 0.8.10", + "id": "mio 1.0.3", "target": "mio" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -703,7 +703,7 @@ "selects": {} }, "edition": "2021", - "version": "2.3.0" + "version": "2.5.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -748,7 +748,7 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], @@ -805,11 +805,11 @@ "deps": { "common": [ { - "id": "local-waker 0.1.3", + "id": "local-waker 0.1.4", "target": "local_waker" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], @@ -873,7 +873,7 @@ "deps": { "common": [ { - "id": "actix-codec 0.5.1", + "id": "actix-codec 0.5.2", "target": "actix_codec" }, { @@ -889,7 +889,7 @@ "target": "actix_rt" }, { - "id": "actix-server 2.3.0", + "id": "actix-server 2.5.0", "target": "actix_server" }, { @@ -909,7 +909,7 @@ "target": "bytes" }, { - "id": "bytestring 1.3.0", + "id": "bytestring 1.4.0", "target": "bytestring" }, { @@ -921,7 +921,7 @@ "target": "cookie" }, { - "id": "encoding_rs 0.8.33", + "id": "encoding_rs 0.8.35", "target": "encoding_rs" }, { @@ -933,11 +933,11 @@ "target": "futures_util" }, { - "id": "impl-more 0.1.6", + "id": "impl-more 0.1.9", "target": "impl_more" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { @@ -945,7 +945,7 @@ "target": "language_tags" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -953,15 +953,15 @@ "target": "mime" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -973,7 +973,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -985,15 +985,15 @@ "target": "smallvec" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" } ], @@ -1011,7 +1011,7 @@ "target": "actix_web_codegen" }, { - "id": "derive_more 0.99.17", + "id": "derive_more 0.99.18", "target": "derive_more" } ], @@ -1068,15 +1068,15 @@ "target": "actix_router" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -1146,14 +1146,14 @@ ], "license_file": "LICENSE" }, - "addr2line 0.21.0": { + "addr2line 0.24.2": { "name": "addr2line", - "version": "0.21.0", + "version": "0.24.2", "package_url": "https://github.com/gimli-rs/addr2line", "repository": { "Http": { - "url": "https://static.crates.io/crates/addr2line/0.21.0/download", - "sha256": "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" + "url": "https://static.crates.io/crates/addr2line/0.24.2/download", + "sha256": "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" } }, "targets": [ @@ -1178,14 +1178,14 @@ "deps": { "common": [ { - "id": "gimli 0.28.0", + "id": "gimli 0.31.1", "target": "gimli" } ], "selects": {} }, "edition": "2018", - "version": "0.21.0" + "version": "0.24.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -1194,20 +1194,20 @@ ], "license_file": "LICENSE-APACHE" }, - "adler 1.0.2": { - "name": "adler", - "version": "1.0.2", - "package_url": "https://github.com/jonas-schievink/adler.git", + "adler2 2.0.0": { + "name": "adler2", + "version": "2.0.0", + "package_url": "https://github.com/oyvindln/adler2", "repository": { "Http": { - "url": "https://static.crates.io/crates/adler/1.0.2/download", - "sha256": "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + "url": "https://static.crates.io/crates/adler2/2.0.0/download", + "sha256": "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" } }, "targets": [ { "Library": { - "crate_name": "adler", + "crate_name": "adler2", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -1218,13 +1218,13 @@ } } ], - "library_target_name": "adler", + "library_target_name": "adler2", "common_attrs": { "compile_data_glob": [ "**" ], - "edition": "2015", - "version": "1.0.2" + "edition": "2021", + "version": "2.0.0" }, "license": "0BSD OR MIT OR Apache-2.0", "license_ids": [ @@ -1383,13 +1383,13 @@ "selects": { "cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))": [ { - "id": "getrandom 0.2.10", + "id": "getrandom 0.2.15", "target": "getrandom" } ], "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ] @@ -1408,7 +1408,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.4", + "id": "version_check 0.9.5", "target": "version_check" } ], @@ -1483,18 +1483,18 @@ "target": "cfg_if" }, { - "id": "getrandom 0.2.10", + "id": "getrandom 0.2.15", "target": "getrandom" }, { - "id": "zerocopy 0.7.32", + "id": "zerocopy 0.7.35", "target": "zerocopy" } ], "selects": { "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ] @@ -1513,7 +1513,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.4", + "id": "version_check 0.9.5", "target": "version_check" } ], @@ -1527,14 +1527,14 @@ ], "license_file": "LICENSE-APACHE" }, - "aho-corasick 1.1.2": { + "aho-corasick 1.1.3": { "name": "aho-corasick", - "version": "1.1.2", + "version": "1.1.3", "package_url": "https://github.com/BurntSushi/aho-corasick", "repository": { "Http": { - "url": "https://static.crates.io/crates/aho-corasick/1.1.2/download", - "sha256": "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" + "url": "https://static.crates.io/crates/aho-corasick/1.1.3/download", + "sha256": "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" } }, "targets": [ @@ -1566,14 +1566,14 @@ "deps": { "common": [ { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" } ], "selects": {} }, "edition": "2021", - "version": "1.1.2" + "version": "1.1.3" }, "license": "Unlicense OR MIT", "license_ids": [ @@ -1582,14 +1582,14 @@ ], "license_file": "LICENSE-MIT" }, - "aide 0.13.4": { + "aide 0.13.5": { "name": "aide", - "version": "0.13.4", + "version": "0.13.5", "package_url": "https://github.com/tamasfe/aide", "repository": { "Http": { - "url": "https://static.crates.io/crates/aide/0.13.4/download", - "sha256": "7b0e3b97a21e41ec5c19bfd9b4fc1f7086be104f8b988681230247ffc91cc8ed" + "url": "https://static.crates.io/crates/aide/0.13.5/download", + "sha256": "5678d2978845ddb4bd736a026f467dd652d831e9e6254b0e41b07f7ee7523309" } }, "targets": [ @@ -1638,11 +1638,11 @@ "target": "http" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "schemars 0.8.16", + "id": "schemars 0.8.21", "target": "schemars" }, { @@ -1650,11 +1650,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -1673,7 +1673,7 @@ "selects": {} }, "edition": "2021", - "version": "0.13.4" + "version": "0.13.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -1937,7 +1937,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -1998,14 +1998,14 @@ ], "license_file": null }, - "anstream 0.6.15": { + "anstream 0.6.18": { "name": "anstream", - "version": "0.6.15", + "version": "0.6.18", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstream/0.6.15/download", - "sha256": "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" + "url": "https://static.crates.io/crates/anstream/0.6.18/download", + "sha256": "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" } }, "targets": [ @@ -2038,19 +2038,19 @@ "deps": { "common": [ { - "id": "anstyle 1.0.8", + "id": "anstyle 1.0.10", "target": "anstyle" }, { - "id": "anstyle-parse 0.2.2", + "id": "anstyle-parse 0.2.6", "target": "anstyle_parse" }, { - "id": "anstyle-query 1.0.0", + "id": "anstyle-query 1.1.2", "target": "anstyle_query" }, { - "id": "colorchoice 1.0.0", + "id": "colorchoice 1.0.3", "target": "colorchoice" }, { @@ -2058,33 +2058,33 @@ "target": "is_terminal_polyfill" }, { - "id": "utf8parse 0.2.1", + "id": "utf8parse 0.2.2", "target": "utf8parse" } ], "selects": { "aarch64-pc-windows-msvc": [ { - "id": "anstyle-wincon 3.0.1", + "id": "anstyle-wincon 3.0.7", "target": "anstyle_wincon" } ], "i686-pc-windows-msvc": [ { - "id": "anstyle-wincon 3.0.1", + "id": "anstyle-wincon 3.0.7", "target": "anstyle_wincon" } ], "x86_64-pc-windows-msvc": [ { - "id": "anstyle-wincon 3.0.1", + "id": "anstyle-wincon 3.0.7", "target": "anstyle_wincon" } ] } }, "edition": "2021", - "version": "0.6.15" + "version": "0.6.18" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2093,14 +2093,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle 1.0.8": { + "anstyle 1.0.10": { "name": "anstyle", - "version": "1.0.8", + "version": "1.0.10", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle/1.0.8/download", - "sha256": "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" + "url": "https://static.crates.io/crates/anstyle/1.0.10/download", + "sha256": "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" } }, "targets": [ @@ -2130,7 +2130,7 @@ "selects": {} }, "edition": "2021", - "version": "1.0.8" + "version": "1.0.10" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2139,14 +2139,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle-parse 0.2.2": { + "anstyle-parse 0.2.6": { "name": "anstyle-parse", - "version": "0.2.2", + "version": "0.2.6", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle-parse/0.2.2/download", - "sha256": "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140" + "url": "https://static.crates.io/crates/anstyle-parse/0.2.6/download", + "sha256": "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" } }, "targets": [ @@ -2178,14 +2178,14 @@ "deps": { "common": [ { - "id": "utf8parse 0.2.1", + "id": "utf8parse 0.2.2", "target": "utf8parse" } ], "selects": {} }, "edition": "2021", - "version": "0.2.2" + "version": "0.2.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2194,14 +2194,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle-query 1.0.0": { + "anstyle-query 1.1.2": { "name": "anstyle-query", - "version": "1.0.0", - "package_url": "https://github.com/rust-cli/anstyle", + "version": "1.1.2", + "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle-query/1.0.0/download", - "sha256": "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" + "url": "https://static.crates.io/crates/anstyle-query/1.1.2/download", + "sha256": "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" } }, "targets": [ @@ -2228,14 +2228,14 @@ "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.48.0", + "id": "windows-sys 0.59.0", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "1.0.0" + "version": "1.1.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2244,14 +2244,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle-wincon 3.0.1": { + "anstyle-wincon 3.0.7": { "name": "anstyle-wincon", - "version": "3.0.1", + "version": "3.0.7", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle-wincon/3.0.1/download", - "sha256": "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" + "url": "https://static.crates.io/crates/anstyle-wincon/3.0.7/download", + "sha256": "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" } }, "targets": [ @@ -2276,21 +2276,25 @@ "deps": { "common": [ { - "id": "anstyle 1.0.8", + "id": "anstyle 1.0.10", "target": "anstyle" } ], "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.48.0", + "id": "once_cell 1.20.2", + "target": "once_cell" + }, + { + "id": "windows-sys 0.59.0", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "3.0.1" + "version": "3.0.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2299,14 +2303,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anyhow 1.0.93": { + "anyhow 1.0.95": { "name": "anyhow", - "version": "1.0.93", + "version": "1.0.95", "package_url": "https://github.com/dtolnay/anyhow", "repository": { "Http": { - "url": "https://static.crates.io/crates/anyhow/1.0.93/download", - "sha256": "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775" + "url": "https://static.crates.io/crates/anyhow/1.0.95/download", + "sha256": "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" } }, "targets": [ @@ -2350,14 +2354,14 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.0.93" + "version": "1.0.95" }, "build_script_attrs": { "compile_data_glob": [ @@ -2374,14 +2378,14 @@ ], "license_file": "LICENSE-APACHE" }, - "arbitrary 1.3.2": { + "arbitrary 1.4.1": { "name": "arbitrary", - "version": "1.3.2", + "version": "1.4.1", "package_url": "https://github.com/rust-fuzz/arbitrary/", "repository": { "Http": { - "url": "https://static.crates.io/crates/arbitrary/1.3.2/download", - "sha256": "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" + "url": "https://static.crates.io/crates/arbitrary/1.4.1/download", + "sha256": "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223" } }, "targets": [ @@ -2414,13 +2418,13 @@ "proc_macro_deps": { "common": [ { - "id": "derive_arbitrary 1.3.2", + "id": "derive_arbitrary 1.4.1", "target": "derive_arbitrary" } ], "selects": {} }, - "version": "1.3.2" + "version": "1.4.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2514,14 +2518,14 @@ ], "license_file": "LICENSE-APACHE" }, - "arrayvec 0.7.4": { + "arrayvec 0.7.6": { "name": "arrayvec", - "version": "0.7.4", + "version": "0.7.6", "package_url": "https://github.com/bluss/arrayvec", "repository": { "Http": { - "url": "https://static.crates.io/crates/arrayvec/0.7.4/download", - "sha256": "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" + "url": "https://static.crates.io/crates/arrayvec/0.7.6/download", + "sha256": "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" } }, "targets": [ @@ -2551,7 +2555,7 @@ "selects": {} }, "edition": "2018", - "version": "0.7.4" + "version": "0.7.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2678,7 +2682,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -2688,7 +2692,7 @@ "proc_macro_deps": { "common": [ { - "id": "askama_derive 0.12.2", + "id": "askama_derive 0.12.5", "target": "askama_derive" } ], @@ -2703,14 +2707,14 @@ ], "license_file": "LICENSE-APACHE" }, - "askama_derive 0.12.2": { + "askama_derive 0.12.5": { "name": "askama_derive", - "version": "0.12.2", + "version": "0.12.5", "package_url": "https://github.com/djc/askama", "repository": { "Http": { - "url": "https://static.crates.io/crates/askama_derive/0.12.2/download", - "sha256": "9a0fc7dcf8bd4ead96b1d36b41df47c14beedf7b0301fc543d8f2384e66a2ec0" + "url": "https://static.crates.io/crates/askama_derive/0.12.5/download", + "sha256": "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83" } }, "targets": [ @@ -2747,12 +2751,12 @@ "deps": { "common": [ { - "id": "askama_parser 0.1.1", + "id": "askama_parser 0.2.1", "target": "askama_parser", "alias": "parser" }, { - "id": "basic-toml 0.1.7", + "id": "basic-toml 0.1.9", "target": "basic_toml" }, { @@ -2760,15 +2764,15 @@ "target": "mime" }, { - "id": "mime_guess 2.0.4", + "id": "mime_guess 2.0.5", "target": "mime_guess" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -2776,14 +2780,14 @@ "target": "serde" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.12.2" + "version": "0.12.5" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -2837,14 +2841,14 @@ ], "license_file": "LICENSE-APACHE" }, - "askama_parser 0.1.1": { + "askama_parser 0.2.1": { "name": "askama_parser", - "version": "0.1.1", + "version": "0.2.1", "package_url": "https://github.com/djc/askama", "repository": { "Http": { - "url": "https://static.crates.io/crates/askama_parser/0.1.1/download", - "sha256": "c268a96e01a4c47c8c5c2472aaa570707e006a875ea63e819f75474ceedaf7b4" + "url": "https://static.crates.io/crates/askama_parser/0.2.1/download", + "sha256": "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0" } }, "targets": [ @@ -2876,23 +2880,23 @@ "selects": {} }, "edition": "2021", - "version": "0.1.1" + "version": "0.2.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null + "license_file": "LICENSE-APACHE" }, - "asn1-rs 0.6.1": { + "asn1-rs 0.6.2": { "name": "asn1-rs", - "version": "0.6.1", + "version": "0.6.2", "package_url": "https://github.com/rusticata/asn1-rs.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/asn1-rs/0.6.1/download", - "sha256": "22ad1373757efa0f70ec53939aabc7152e1591cb485208052993070ac8d2429d" + "url": "https://static.crates.io/crates/asn1-rs/0.6.2/download", + "sha256": "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" } }, "targets": [ @@ -2938,11 +2942,11 @@ "target": "rusticata_macros" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -2952,7 +2956,7 @@ "proc_macro_deps": { "common": [ { - "id": "asn1-rs-derive 0.5.0", + "id": "asn1-rs-derive 0.5.1", "target": "asn1_rs_derive" }, { @@ -2960,29 +2964,29 @@ "target": "asn1_rs_impl" }, { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], "selects": {} }, - "version": "0.6.1" + "version": "0.6.2" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "asn1-rs-derive 0.5.0": { + "asn1-rs-derive 0.5.1": { "name": "asn1-rs-derive", - "version": "0.5.0", + "version": "0.5.1", "package_url": "https://github.com/rusticata/asn1-rs.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/asn1-rs-derive/0.5.0/download", - "sha256": "7378575ff571966e99a744addeff0bff98b8ada0dedf1956d59e634db95eaac1" + "url": "https://static.crates.io/crates/asn1-rs-derive/0.5.1/download", + "sha256": "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" } }, "targets": [ @@ -3007,15 +3011,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" }, { @@ -3026,14 +3030,14 @@ "selects": {} }, "edition": "2018", - "version": "0.5.0" + "version": "0.5.1" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null + "license_file": "LICENSE-APACHE" }, "asn1-rs-impl 0.2.0": { "name": "asn1-rs-impl", @@ -3067,15 +3071,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -3127,7 +3131,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -3186,7 +3190,7 @@ "deps": { "common": [ { - "id": "anstyle 1.0.8", + "id": "anstyle 1.0.10", "target": "anstyle" }, { @@ -3194,7 +3198,7 @@ "target": "build_script_build" }, { - "id": "bstr 1.8.0", + "id": "bstr 1.11.3", "target": "bstr" }, { @@ -3202,15 +3206,15 @@ "target": "doc_comment" }, { - "id": "predicates 3.1.2", + "id": "predicates 3.1.3", "target": "predicates" }, { - "id": "predicates-core 1.0.6", + "id": "predicates-core 1.0.9", "target": "predicates_core" }, { - "id": "predicates-tree 1.0.9", + "id": "predicates-tree 1.0.12", "target": "predicates_tree" }, { @@ -3221,7 +3225,7 @@ "selects": { "cfg(any())": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] @@ -3383,7 +3387,7 @@ "target": "concurrent_queue" }, { - "id": "event-listener-strategy 0.5.2", + "id": "event-listener-strategy 0.5.3", "target": "event_listener_strategy" }, { @@ -3391,7 +3395,7 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], @@ -3407,14 +3411,14 @@ ], "license_file": "LICENSE-APACHE" }, - "async-compression 0.4.4": { + "async-compression 0.4.18": { "name": "async-compression", - "version": "0.4.4", + "version": "0.4.18", "package_url": "https://github.com/Nullus157/async-compression", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-compression/0.4.4/download", - "sha256": "f658e2baef915ba0f26f1f7c42bfb8e12f532a01f449a090ded75ae7a07e9ba2" + "url": "https://static.crates.io/crates/async-compression/0.4.18/download", + "sha256": "df895a515f70646414f4b45c0b79082783b80552b373a68283012928df56f522" } }, "targets": [ @@ -3452,11 +3456,11 @@ "deps": { "common": [ { - "id": "brotli 3.4.0", + "id": "brotli 7.0.0", "target": "brotli" }, { - "id": "flate2 1.0.31", + "id": "flate2 1.0.35", "target": "flate2" }, { @@ -3464,15 +3468,15 @@ "target": "futures_core" }, { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -3481,14 +3485,14 @@ "alias": "libzstd" }, { - "id": "zstd-safe 7.1.0", + "id": "zstd-safe 7.2.1", "target": "zstd_safe" } ], "selects": {} }, "edition": "2018", - "version": "0.4.4" + "version": "0.4.18" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -3529,7 +3533,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -3541,11 +3545,11 @@ "target": "http" }, { - "id": "httparse 1.8.0", + "id": "httparse 1.9.5", "target": "httparse" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" } ], @@ -3561,14 +3565,14 @@ ], "license_file": null }, - "async-io 2.3.4": { + "async-io 2.4.0": { "name": "async-io", - "version": "2.3.4", + "version": "2.4.0", "package_url": "https://github.com/smol-rs/async-io", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-io/2.3.4/download", - "sha256": "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" + "url": "https://static.crates.io/crates/async-io/2.4.0/download", + "sha256": "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059" } }, "targets": [ @@ -3593,7 +3597,7 @@ "deps": { "common": [ { - "id": "async-lock 3.3.0", + "id": "async-lock 3.4.0", "target": "async_lock" }, { @@ -3609,19 +3613,19 @@ "target": "futures_io" }, { - "id": "futures-lite 2.0.0", + "id": "futures-lite 2.6.0", "target": "futures_lite" }, { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" }, { - "id": "polling 3.7.3", + "id": "polling 3.7.4", "target": "polling" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" }, { @@ -3643,7 +3647,7 @@ } }, "edition": "2021", - "version": "2.3.4" + "version": "2.4.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -3652,14 +3656,14 @@ ], "license_file": "LICENSE-APACHE" }, - "async-lock 3.3.0": { + "async-lock 3.4.0": { "name": "async-lock", - "version": "3.3.0", + "version": "3.4.0", "package_url": "https://github.com/smol-rs/async-lock", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-lock/3.3.0/download", - "sha256": "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" + "url": "https://static.crates.io/crates/async-lock/3.4.0/download", + "sha256": "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" } }, "targets": [ @@ -3691,22 +3695,22 @@ "deps": { "common": [ { - "id": "event-listener 4.0.3", + "id": "event-listener 5.4.0", "target": "event_listener" }, { - "id": "event-listener-strategy 0.4.0", + "id": "event-listener-strategy 0.5.3", "target": "event_listener_strategy" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], "selects": {} }, "edition": "2021", - "version": "3.3.0" + "version": "3.4.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -3747,7 +3751,7 @@ "deps": { "common": [ { - "id": "async-io 2.3.4", + "id": "async-io 2.4.0", "target": "async_io" }, { @@ -3755,7 +3759,7 @@ "target": "blocking" }, { - "id": "futures-lite 2.0.0", + "id": "futures-lite 2.6.0", "target": "futures_lite" } ], @@ -3771,14 +3775,14 @@ ], "license_file": "LICENSE-APACHE" }, - "async-recursion 1.0.5": { + "async-recursion 1.1.1": { "name": "async-recursion", - "version": "1.0.5", + "version": "1.1.1", "package_url": "https://github.com/dcchut/async-recursion", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-recursion/1.0.5/download", - "sha256": "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" + "url": "https://static.crates.io/crates/async-recursion/1.1.1/download", + "sha256": "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" } }, "targets": [ @@ -3803,22 +3807,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "1.0.5" + "version": "1.1.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -3870,11 +3874,11 @@ "target": "futures" }, { - "id": "pin-project 1.1.3", + "id": "pin-project 1.1.8", "target": "pin_project" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -3922,11 +3926,11 @@ "deps": { "common": [ { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -3978,7 +3982,7 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], @@ -4034,15 +4038,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -4103,14 +4107,14 @@ ], "license_file": "LICENSE-APACHE" }, - "async-trait 0.1.83": { + "async-trait 0.1.85": { "name": "async-trait", - "version": "0.1.83", + "version": "0.1.85", "package_url": "https://github.com/dtolnay/async-trait", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-trait/0.1.83/download", - "sha256": "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" + "url": "https://static.crates.io/crates/async-trait/0.1.85/download", + "sha256": "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056" } }, "targets": [ @@ -4135,22 +4139,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.1.83" + "version": "0.1.85" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4266,23 +4270,23 @@ "target": "http" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -4377,7 +4381,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -4398,14 +4402,14 @@ ], "license_file": "LICENSE" }, - "auto_impl 1.1.0": { + "auto_impl 1.2.1": { "name": "auto_impl", - "version": "1.1.0", + "version": "1.2.1", "package_url": "https://github.com/auto-impl-rs/auto_impl/", "repository": { "Http": { - "url": "https://static.crates.io/crates/auto_impl/1.1.0/download", - "sha256": "fee3da8ef1276b0bee5dd1c7258010d8fffd31801447323115a25560e1327b89" + "url": "https://static.crates.io/crates/auto_impl/1.2.1/download", + "sha256": "e12882f59de5360c748c4cbf569a042d5fb0eb515f7bea9c1f470b47f6ffbd73" } }, "targets": [ @@ -4430,26 +4434,22 @@ "deps": { "common": [ { - "id": "proc-macro-error 1.0.4", - "target": "proc_macro_error" - }, - { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 1.0.109", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.1.0" + "version": "1.2.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4490,7 +4490,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -4506,14 +4506,14 @@ ], "license_file": "LICENSE-APACHE" }, - "autocfg 1.1.0": { + "autocfg 1.4.0": { "name": "autocfg", - "version": "1.1.0", + "version": "1.4.0", "package_url": "https://github.com/cuviper/autocfg", "repository": { "Http": { - "url": "https://static.crates.io/crates/autocfg/1.1.0/download", - "sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" + "url": "https://static.crates.io/crates/autocfg/1.4.0/download", + "sha256": "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" } }, "targets": [ @@ -4536,7 +4536,7 @@ "**" ], "edition": "2015", - "version": "1.1.0" + "version": "1.4.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -4617,7 +4617,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -4625,7 +4625,7 @@ "target": "hyper_util" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { @@ -4633,7 +4633,7 @@ "target": "matchit" }, { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" }, { @@ -4645,7 +4645,7 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -4653,11 +4653,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "serde_path_to_error 0.1.14", + "id": "serde_path_to_error 0.1.16", "target": "serde_path_to_error" }, { @@ -4665,15 +4665,15 @@ "target": "serde_urlencoded" }, { - "id": "sync_wrapper 1.0.1", + "id": "sync_wrapper 1.0.2", "target": "sync_wrapper" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { - "id": "tower 0.5.1", + "id": "tower 0.5.2", "target": "tower" }, { @@ -4695,7 +4695,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" }, { @@ -4703,7 +4703,7 @@ "target": "axum_macros" }, { - "id": "rustversion 1.0.14", + "id": "rustversion 1.0.19", "target": "rustversion" } ], @@ -4779,11 +4779,11 @@ "target": "mime" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "sync_wrapper 1.0.1", + "id": "sync_wrapper 1.0.2", "target": "sync_wrapper" }, { @@ -4805,11 +4805,11 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" }, { - "id": "rustversion 1.0.14", + "id": "rustversion 1.0.19", "target": "rustversion" } ], @@ -4876,7 +4876,7 @@ "target": "bytes" }, { - "id": "fastrand 2.2.0", + "id": "fastrand 2.3.0", "target": "fastrand" }, { @@ -4908,7 +4908,7 @@ "target": "multer" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -4916,7 +4916,7 @@ "target": "serde" }, { - "id": "tower 0.5.1", + "id": "tower 0.5.2", "target": "tower" }, { @@ -4977,15 +4977,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -5066,7 +5066,7 @@ "target": "opentelemetry_sdk" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -5156,7 +5156,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -5164,7 +5164,7 @@ "target": "hyper_util" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -5176,7 +5176,7 @@ "target": "rustls_pemfile" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -5250,15 +5250,15 @@ "target": "futures_core" }, { - "id": "getrandom 0.2.10", + "id": "getrandom 0.2.15", "target": "getrandom" }, { - "id": "instant 0.1.12", + "id": "instant 0.1.13", "target": "instant" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -5266,7 +5266,7 @@ "target": "rand" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio", "alias": "tokio_1" } @@ -5283,14 +5283,14 @@ ], "license_file": "LICENSE-APACHE" }, - "backon 0.4.1": { + "backon 0.4.4": { "name": "backon", - "version": "0.4.1", - "package_url": null, + "version": "0.4.4", + "package_url": "https://github.com/Xuanwo/backon", "repository": { "Http": { - "url": "https://static.crates.io/crates/backon/0.4.1/download", - "sha256": "0c1a6197b2120bb2185a267f6515038558b019e92b832bb0320e96d66268dcf9" + "url": "https://static.crates.io/crates/backon/0.4.4/download", + "sha256": "d67782c3f868daa71d3533538e98a8e13713231969def7536e8039606fc46bf0" } }, "targets": [ @@ -5315,7 +5315,7 @@ "deps": { "common": [ { - "id": "fastrand 1.9.0", + "id": "fastrand 2.3.0", "target": "fastrand" }, { @@ -5323,18 +5323,18 @@ "target": "futures_core" }, { - "id": "pin-project 1.1.3", + "id": "pin-project 1.1.8", "target": "pin_project" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "0.4.1" + "version": "0.4.4" }, "license": "Apache-2.0", "license_ids": [ @@ -5342,14 +5342,14 @@ ], "license_file": "LICENSE" }, - "backtrace 0.3.69": { + "backtrace 0.3.74": { "name": "backtrace", - "version": "0.3.69", + "version": "0.3.74", "package_url": "https://github.com/rust-lang/backtrace-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/backtrace/0.3.69/download", - "sha256": "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" + "url": "https://static.crates.io/crates/backtrace/0.3.74/download", + "sha256": "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" } }, "targets": [ @@ -5364,18 +5364,6 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], "library_target_name": "backtrace", @@ -5392,59 +5380,44 @@ }, "deps": { "common": [ - { - "id": "backtrace 0.3.69", - "target": "build_script_build" - }, { "id": "cfg-if 1.0.0", "target": "cfg_if" }, { - "id": "rustc-demangle 0.1.23", + "id": "rustc-demangle 0.1.24", "target": "rustc_demangle" } ], "selects": { "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))": [ { - "id": "addr2line 0.21.0", + "id": "addr2line 0.24.2", "target": "addr2line" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "miniz_oxide 0.7.1", + "id": "miniz_oxide 0.8.3", "target": "miniz_oxide" }, { - "id": "object 0.32.1", + "id": "object 0.36.7", "target": "object" } + ], + "cfg(windows)": [ + { + "id": "windows-targets 0.52.6", + "target": "windows_targets" + } ] } }, - "edition": "2018", - "version": "0.3.69" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cc 1.0.83", - "target": "cc" - } - ], - "selects": {} - } + "edition": "2021", + "version": "0.3.74" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -5681,14 +5654,14 @@ ], "license_file": "LICENSE-APACHE" }, - "base64 0.21.4": { + "base64 0.21.7": { "name": "base64", - "version": "0.21.4", + "version": "0.21.7", "package_url": "https://github.com/marshallpierce/rust-base64", "repository": { "Http": { - "url": "https://static.crates.io/crates/base64/0.21.4/download", - "sha256": "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" + "url": "https://static.crates.io/crates/base64/0.21.7/download", + "sha256": "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" } }, "targets": [ @@ -5719,7 +5692,7 @@ "selects": {} }, "edition": "2018", - "version": "0.21.4" + "version": "0.21.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -5775,14 +5748,14 @@ ], "license_file": "LICENSE-APACHE" }, - "base64-url 2.0.0": { + "base64-url 2.0.2": { "name": "base64-url", - "version": "2.0.0", + "version": "2.0.2", "package_url": "https://github.com/magiclen/base64-url", "repository": { "Http": { - "url": "https://static.crates.io/crates/base64-url/2.0.0/download", - "sha256": "9c5b0a88aa36e9f095ee2e2b13fb8c5e4313e022783aedacc123328c0084916d" + "url": "https://static.crates.io/crates/base64-url/2.0.2/download", + "sha256": "fb9fb9fb058cc3063b5fc88d9a21eefa2735871498a04e1650da76ed511c8569" } }, "targets": [ @@ -5814,14 +5787,14 @@ "deps": { "common": [ { - "id": "base64 0.21.4", + "id": "base64 0.21.7", "target": "base64" } ], "selects": {} }, "edition": "2021", - "version": "2.0.0" + "version": "2.0.2" }, "license": "MIT", "license_ids": [ @@ -5874,14 +5847,14 @@ ], "license_file": "LICENSE-APACHE" }, - "basic-toml 0.1.7": { + "basic-toml 0.1.9": { "name": "basic-toml", - "version": "0.1.7", + "version": "0.1.9", "package_url": "https://github.com/dtolnay/basic-toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/basic-toml/0.1.7/download", - "sha256": "2f2139706359229bfa8f19142ac1155b4b80beafb7a60471ac5dd109d4a19778" + "url": "https://static.crates.io/crates/basic-toml/0.1.9/download", + "sha256": "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8" } }, "targets": [ @@ -5913,7 +5886,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.7" + "version": "0.1.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -6230,11 +6203,11 @@ "target": "cexpr" }, { - "id": "clang-sys 1.6.1", + "id": "clang-sys 1.8.1", "target": "clang_sys" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -6246,19 +6219,19 @@ "target": "peeking_take_while" }, { - "id": "prettyplease 0.2.15", + "id": "prettyplease 0.2.29", "target": "prettyplease" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -6270,7 +6243,7 @@ "target": "shlex" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -6289,11 +6262,11 @@ "link_deps": { "common": [ { - "id": "clang-sys 1.6.1", + "id": "clang-sys 1.8.1", "target": "clang_sys" }, { - "id": "prettyplease 0.2.15", + "id": "prettyplease 0.2.29", "target": "prettyplease" } ], @@ -6306,14 +6279,14 @@ ], "license_file": "LICENSE" }, - "bindgen 0.69.4": { + "bindgen 0.69.5": { "name": "bindgen", - "version": "0.69.4", + "version": "0.69.5", "package_url": "https://github.com/rust-lang/rust-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/bindgen/0.69.4/download", - "sha256": "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" + "url": "https://static.crates.io/crates/bindgen/0.69.5/download", + "sha256": "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" } }, "targets": [ @@ -6356,11 +6329,11 @@ "deps": { "common": [ { - "id": "bindgen 0.69.4", + "id": "bindgen 0.69.5", "target": "build_script_build" }, { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -6368,15 +6341,15 @@ "target": "cexpr" }, { - "id": "clang-sys 1.6.1", + "id": "clang-sys 1.8.1", "target": "clang_sys" }, { - "id": "itertools 0.12.0", + "id": "itertools 0.12.1", "target": "itertools" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -6384,15 +6357,15 @@ "target": "lazycell" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -6404,14 +6377,14 @@ "target": "shlex" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.69.4" + "version": "0.69.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -6423,7 +6396,7 @@ "link_deps": { "common": [ { - "id": "clang-sys 1.6.1", + "id": "clang-sys 1.8.1", "target": "clang_sys" } ], @@ -6477,7 +6450,7 @@ "deps": { "common": [ { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" } ], @@ -6491,7 +6464,7 @@ "target": "binread_derive" }, { - "id": "rustversion 1.0.14", + "id": "rustversion 1.0.19", "target": "rustversion" } ], @@ -6543,15 +6516,15 @@ "deps": { "common": [ { - "id": "either 1.9.0", + "id": "either 1.13.0", "target": "either" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -6570,14 +6543,14 @@ ], "license_file": null }, - "bip32 0.5.1": { + "bip32 0.5.2": { "name": "bip32", - "version": "0.5.1", + "version": "0.5.2", "package_url": "https://github.com/iqlusioninc/crates/tree/main/bip32", "repository": { "Http": { - "url": "https://static.crates.io/crates/bip32/0.5.1/download", - "sha256": "7e141fb0f8be1c7b45887af94c88b182472b57c96b56773250ae00cd6a14a164" + "url": "https://static.crates.io/crates/bip32/0.5.2/download", + "sha256": "aa13fae8b6255872fd86f7faf4b41168661d7d78609f7bfe6771b85c6739a15b" } }, "targets": [ @@ -6616,7 +6589,7 @@ "deps": { "common": [ { - "id": "bs58 0.5.0", + "id": "bs58 0.5.1", "target": "bs58" }, { @@ -6628,7 +6601,7 @@ "target": "k256" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -6659,7 +6632,7 @@ "selects": {} }, "edition": "2021", - "version": "0.5.1" + "version": "0.5.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -6693,6 +6666,54 @@ } ], "library_target_name": "bit_set", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "bit-vec 0.6.3", + "target": "bit_vec" + } + ], + "selects": {} + }, + "edition": "2015", + "version": "0.5.3" + }, + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "bit-set 0.8.0": { + "name": "bit-set", + "version": "0.8.0", + "package_url": "https://github.com/contain-rs/bit-set", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/bit-set/0.8.0/download", + "sha256": "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" + } + }, + "targets": [ + { + "Library": { + "crate_name": "bit_set", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "bit_set", "common_attrs": { "compile_data_glob": [ "**" @@ -6707,16 +6728,16 @@ "deps": { "common": [ { - "id": "bit-vec 0.6.3", + "id": "bit-vec 0.8.0", "target": "bit_vec" } ], "selects": {} }, "edition": "2015", - "version": "0.5.3" + "version": "0.8.0" }, - "license": "MIT/Apache-2.0", + "license": "Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" @@ -6769,6 +6790,52 @@ ], "license_file": "LICENSE-APACHE" }, + "bit-vec 0.8.0": { + "name": "bit-vec", + "version": "0.8.0", + "package_url": "https://github.com/contain-rs/bit-vec", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/bit-vec/0.8.0/download", + "sha256": "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" + } + }, + "targets": [ + { + "Library": { + "crate_name": "bit_vec", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "bit_vec", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "std" + ], + "selects": {} + }, + "edition": "2015", + "version": "0.8.0" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "bitcoin 0.28.2": { "name": "bitcoin", "version": "0.28.2", @@ -6860,14 +6927,14 @@ ], "license_file": "LICENSE" }, - "bitcoin 0.30.1": { + "bitcoin 0.30.2": { "name": "bitcoin", - "version": "0.30.1", + "version": "0.30.2", "package_url": "https://github.com/rust-bitcoin/rust-bitcoin/", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitcoin/0.30.1/download", - "sha256": "4e99ff7289b20a7385f66a0feda78af2fc119d28fb56aea8886a9cd0a4abdd75" + "url": "https://static.crates.io/crates/bitcoin/0.30.2/download", + "sha256": "1945a5048598e4189e239d3f809b19bdad4845c4b2ba400d304d2dcf26d2c462" } }, "targets": [ @@ -6919,7 +6986,7 @@ "target": "bech32" }, { - "id": "bitcoin 0.30.1", + "id": "bitcoin 0.30.2", "target": "build_script_build" }, { @@ -6969,7 +7036,7 @@ ], "selects": {} }, - "version": "0.30.1" + "version": "0.30.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -6985,14 +7052,14 @@ ], "license_file": null }, - "bitcoin 0.32.2": { + "bitcoin 0.32.5": { "name": "bitcoin", - "version": "0.32.2", + "version": "0.32.5", "package_url": "https://github.com/rust-bitcoin/rust-bitcoin/", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitcoin/0.32.2/download", - "sha256": "ea507acc1cd80fc084ace38544bbcf7ced7c2aa65b653b102de0ce718df668f6" + "url": "https://static.crates.io/crates/bitcoin/0.32.5/download", + "sha256": "ce6bc65742dea50536e35ad42492b234c27904a27f0abdcbce605015cb4ea026" } }, "targets": [ @@ -7038,7 +7105,7 @@ "target": "bech32" }, { - "id": "bitcoin 0.32.2", + "id": "bitcoin 0.32.5", "target": "build_script_build" }, { @@ -7047,7 +7114,7 @@ "alias": "internals" }, { - "id": "bitcoin-io 0.1.2", + "id": "bitcoin-io 0.1.3", "target": "bitcoin_io", "alias": "io" }, @@ -7071,7 +7138,7 @@ "target": "hex_lit" }, { - "id": "secp256k1 0.29.0", + "id": "secp256k1 0.29.1", "target": "secp256k1" } ], @@ -7099,7 +7166,7 @@ ], "selects": {} }, - "version": "0.32.2" + "version": "0.32.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -7189,14 +7256,14 @@ ], "license_file": null }, - "bitcoin-io 0.1.2": { + "bitcoin-io 0.1.3": { "name": "bitcoin-io", - "version": "0.1.2", + "version": "0.1.3", "package_url": "https://github.com/rust-bitcoin/rust-bitcoin", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitcoin-io/0.1.2/download", - "sha256": "340e09e8399c7bd8912f495af6aa58bea0c9214773417ffaa8f6460f93aaee56" + "url": "https://static.crates.io/crates/bitcoin-io/0.1.3/download", + "sha256": "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf" } }, "targets": [ @@ -7211,6 +7278,18 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], "library_target_name": "bitcoin_io", @@ -7224,8 +7303,25 @@ ], "selects": {} }, + "deps": { + "common": [ + { + "id": "bitcoin-io 0.1.3", + "target": "build_script_build" + } + ], + "selects": {} + }, "edition": "2021", - "version": "0.1.2" + "version": "0.1.3" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] }, "license": "CC0-1.0", "license_ids": [ @@ -7516,7 +7612,7 @@ "deps": { "common": [ { - "id": "bitcoin-io 0.1.2", + "id": "bitcoin-io 0.1.3", "target": "bitcoin_io" }, { @@ -7576,7 +7672,7 @@ "target": "jsonrpc" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -7584,7 +7680,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -7639,7 +7735,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -7698,7 +7794,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -7711,11 +7807,11 @@ "alias": "bitcoincore_rpc" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "tempfile 3.12.0", + "id": "tempfile 3.15.0", "target": "tempfile" }, { @@ -7738,7 +7834,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" } ], @@ -7796,14 +7892,14 @@ ], "license_file": "LICENSE-APACHE" }, - "bitflags 2.6.0": { + "bitflags 2.8.0": { "name": "bitflags", - "version": "2.6.0", + "version": "2.8.0", "package_url": "https://github.com/bitflags/bitflags", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitflags/2.6.0/download", - "sha256": "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" + "url": "https://static.crates.io/crates/bitflags/2.8.0/download", + "sha256": "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" } }, "targets": [ @@ -7832,7 +7928,7 @@ "selects": {} }, "edition": "2021", - "version": "2.6.0" + "version": "2.8.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8040,7 +8136,7 @@ "target": "futures_io" }, { - "id": "futures-lite 2.0.0", + "id": "futures-lite 2.6.0", "target": "futures_lite" }, { @@ -8060,14 +8156,14 @@ ], "license_file": "LICENSE-APACHE" }, - "borsh 1.5.2": { + "borsh 1.5.4": { "name": "borsh", - "version": "1.5.2", + "version": "1.5.4", "package_url": "https://github.com/near/borsh-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/borsh/1.5.2/download", - "sha256": "f5327f6c99920069d1fe374aa743be1af0031dea9f250852cdf1ae6a0861ee24" + "url": "https://static.crates.io/crates/borsh/1.5.4/download", + "sha256": "9fb65153674e51d3a42c8f27b05b9508cea85edfaade8aa46bc8fc18cecdfef3" } }, "targets": [ @@ -8104,14 +8200,14 @@ "deps": { "common": [ { - "id": "borsh 1.5.2", + "id": "borsh 1.5.4", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.5.2" + "version": "1.5.4" }, "build_script_attrs": { "compile_data_glob": [ @@ -8137,14 +8233,14 @@ ], "license_file": null }, - "borsh-derive 1.5.2": { + "borsh-derive 1.5.4": { "name": "borsh-derive", - "version": "1.5.2", + "version": "1.5.4", "package_url": "https://github.com/near/borsh-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/borsh-derive/1.5.2/download", - "sha256": "10aedd8f1a81a8aafbfde924b0e3061cd6fedd6f6bbcfc6a76e6fd426d7bfe26" + "url": "https://static.crates.io/crates/borsh-derive/1.5.4/download", + "sha256": "a396e17ad94059c650db3d253bb6e25927f1eb462eede7e7a153bb6e75dce0a7" } }, "targets": [ @@ -8169,7 +8265,7 @@ "deps": { "common": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -8177,22 +8273,22 @@ "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "1.5.2" + "version": "1.5.4" }, "license": "Apache-2.0", "license_ids": [ @@ -8200,69 +8296,6 @@ ], "license_file": null }, - "brotli 3.4.0": { - "name": "brotli", - "version": "3.4.0", - "package_url": "https://github.com/dropbox/rust-brotli", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/brotli/3.4.0/download", - "sha256": "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "brotli", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "brotli", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc-stdlib", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "alloc-no-stdlib 2.0.4", - "target": "alloc_no_stdlib" - }, - { - "id": "alloc-stdlib 0.2.2", - "target": "alloc_stdlib" - }, - { - "id": "brotli-decompressor 2.5.0", - "target": "brotli_decompressor" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "3.4.0" - }, - "license": "BSD-3-Clause/MIT", - "license_ids": [ - "BSD-3-Clause", - "MIT" - ], - "license_file": "LICENSE" - }, "brotli 6.0.0": { "name": "brotli", "version": "6.0.0", @@ -8359,6 +8392,7 @@ "crate_features": { "common": [ "alloc-stdlib", + "default", "std" ], "selects": {} @@ -8390,65 +8424,6 @@ ], "license_file": "LICENSE.BSD-3-Clause" }, - "brotli-decompressor 2.5.0": { - "name": "brotli-decompressor", - "version": "2.5.0", - "package_url": "https://github.com/dropbox/rust-brotli-decompressor", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/brotli-decompressor/2.5.0/download", - "sha256": "da74e2b81409b1b743f8f0c62cc6254afefb8b8e50bbfe3735550f7aeefa3448" - } - }, - "targets": [ - { - "Library": { - "crate_name": "brotli_decompressor", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "brotli_decompressor", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc-stdlib", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "alloc-no-stdlib 2.0.4", - "target": "alloc_no_stdlib" - }, - { - "id": "alloc-stdlib 0.2.2", - "target": "alloc_stdlib" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "2.5.0" - }, - "license": "BSD-3-Clause/MIT", - "license_ids": [ - "BSD-3-Clause", - "MIT" - ], - "license_file": "LICENSE" - }, "brotli-decompressor 4.0.1": { "name": "brotli-decompressor", "version": "4.0.1", @@ -8509,14 +8484,14 @@ ], "license_file": "LICENSE" }, - "bs58 0.5.0": { + "bs58 0.5.1": { "name": "bs58", - "version": "0.5.0", + "version": "0.5.1", "package_url": "https://github.com/Nullus157/bs58-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/bs58/0.5.0/download", - "sha256": "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896" + "url": "https://static.crates.io/crates/bs58/0.5.1/download", + "sha256": "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" } }, "targets": [ @@ -8558,7 +8533,7 @@ "selects": {} }, "edition": "2021", - "version": "0.5.0" + "version": "0.5.1" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -8567,14 +8542,14 @@ ], "license_file": "LICENSE-APACHE" }, - "bstr 1.8.0": { + "bstr 1.11.3": { "name": "bstr", - "version": "1.8.0", + "version": "1.11.3", "package_url": "https://github.com/BurntSushi/bstr", "repository": { "Http": { - "url": "https://static.crates.io/crates/bstr/1.8.0/download", - "sha256": "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c" + "url": "https://static.crates.io/crates/bstr/1.11.3/download", + "sha256": "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0" } }, "targets": [ @@ -8608,18 +8583,18 @@ "deps": { "common": [ { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" }, { - "id": "regex-automata 0.4.8", + "id": "regex-automata 0.4.9", "target": "regex_automata" } ], "selects": {} }, "edition": "2021", - "version": "1.8.0" + "version": "1.11.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8676,7 +8651,7 @@ "target": "build_info_common" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" } ], @@ -8740,7 +8715,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -8760,23 +8735,23 @@ "target": "cargo_metadata" }, { - "id": "glob 0.3.1", + "id": "glob 0.3.2", "target": "glob" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "pretty_assertions 1.4.0", + "id": "pretty_assertions 1.4.1", "target": "pretty_assertions" }, { - "id": "rustc_version 0.4.0", + "id": "rustc_version 0.4.1", "target": "rustc_version" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -8839,7 +8814,7 @@ "deps": { "common": [ { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -8853,7 +8828,7 @@ "proc_macro_deps": { "common": [ { - "id": "derive_more 0.99.17", + "id": "derive_more 0.99.18", "target": "derive_more" } ], @@ -8910,7 +8885,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -8938,15 +8913,15 @@ "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -9034,14 +9009,14 @@ ], "license_file": "LICENSE-APACHE" }, - "by_address 1.1.0": { + "by_address 1.2.1": { "name": "by_address", - "version": "1.1.0", + "version": "1.2.1", "package_url": "https://github.com/mbrubeck/by_address", "repository": { "Http": { - "url": "https://static.crates.io/crates/by_address/1.1.0/download", - "sha256": "bf8dba2868114ed769a1f2590fc9ae5eb331175b44313b6c9b922f8f7ca813d0" + "url": "https://static.crates.io/crates/by_address/1.2.1/download", + "sha256": "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06" } }, "targets": [ @@ -9063,10 +9038,10 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "1.1.0" + "edition": "2021", + "version": "1.2.1" }, - "license": "MIT / Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -9163,7 +9138,7 @@ "target": "serde" }, { - "id": "utf8-width 0.1.6", + "id": "utf8-width 0.1.7", "target": "utf8_width" } ], @@ -9178,14 +9153,14 @@ ], "license_file": "LICENSE" }, - "bytecheck 0.6.11": { + "bytecheck 0.6.12": { "name": "bytecheck", - "version": "0.6.11", + "version": "0.6.12", "package_url": "https://github.com/djkoloski/bytecheck", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytecheck/0.6.11/download", - "sha256": "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627" + "url": "https://static.crates.io/crates/bytecheck/0.6.12/download", + "sha256": "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" } }, "targets": [ @@ -9222,7 +9197,7 @@ "deps": { "common": [ { - "id": "bytecheck 0.6.11", + "id": "bytecheck 0.6.12", "target": "build_script_build" }, { @@ -9236,13 +9211,13 @@ "proc_macro_deps": { "common": [ { - "id": "bytecheck_derive 0.6.11", + "id": "bytecheck_derive 0.6.12", "target": "bytecheck_derive" } ], "selects": {} }, - "version": "0.6.11" + "version": "0.6.12" }, "build_script_attrs": { "compile_data_glob": [ @@ -9258,14 +9233,14 @@ ], "license_file": "LICENSE" }, - "bytecheck_derive 0.6.11": { + "bytecheck_derive 0.6.12": { "name": "bytecheck_derive", - "version": "0.6.11", + "version": "0.6.12", "package_url": "https://github.com/djkoloski/bytecheck", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytecheck_derive/0.6.11/download", - "sha256": "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61" + "url": "https://static.crates.io/crates/bytecheck_derive/0.6.12/download", + "sha256": "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" } }, "targets": [ @@ -9290,11 +9265,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -9305,7 +9280,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.11" + "version": "0.6.12" }, "license": "MIT", "license_ids": [ @@ -9313,14 +9288,14 @@ ], "license_file": "LICENSE" }, - "bytemuck 1.14.0": { + "bytemuck 1.21.0": { "name": "bytemuck", - "version": "1.14.0", + "version": "1.21.0", "package_url": "https://github.com/Lokathor/bytemuck", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytemuck/1.14.0/download", - "sha256": "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" + "url": "https://static.crates.io/crates/bytemuck/1.21.0/download", + "sha256": "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3" } }, "targets": [ @@ -9343,7 +9318,7 @@ "**" ], "edition": "2018", - "version": "1.14.0" + "version": "1.21.0" }, "license": "Zlib OR Apache-2.0 OR MIT", "license_ids": [ @@ -9499,14 +9474,14 @@ ], "license_file": "LICENSE" }, - "bytestring 1.3.0": { + "bytestring 1.4.0": { "name": "bytestring", - "version": "1.3.0", - "package_url": "https://github.com/actix/actix-net.git", + "version": "1.4.0", + "package_url": "https://github.com/actix/actix-net", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytestring/1.3.0/download", - "sha256": "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae" + "url": "https://static.crates.io/crates/bytestring/1.4.0/download", + "sha256": "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f" } }, "targets": [ @@ -9537,8 +9512,8 @@ ], "selects": {} }, - "edition": "2018", - "version": "1.3.0" + "edition": "2021", + "version": "1.4.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -9595,7 +9570,7 @@ "target": "build_script_build" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -9614,11 +9589,11 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" } ], @@ -9672,14 +9647,14 @@ ], "license_file": null }, - "cached 0.49.2": { + "cached 0.49.3": { "name": "cached", - "version": "0.49.2", + "version": "0.49.3", "package_url": "https://github.com/jaemk/cached", "repository": { "Http": { - "url": "https://static.crates.io/crates/cached/0.49.2/download", - "sha256": "f251fd1e72720ca07bf5d8e310f54a193fd053479a1f6342c6663ee4fa01cf96" + "url": "https://static.crates.io/crates/cached/0.49.3/download", + "sha256": "8e8e463fceca5674287f32d252fb1d94083758b8709c160efae66d263e5f4eba" } }, "targets": [ @@ -9708,22 +9683,22 @@ "target": "hashbrown" }, { - "id": "instant 0.1.12", + "id": "instant 0.1.13", "target": "instant" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], "selects": {} }, "edition": "2018", - "version": "0.49.2" + "version": "0.49.3" }, "license": "MIT", "license_ids": [ @@ -9777,15 +9752,15 @@ "target": "hashbrown" }, { - "id": "instant 0.1.12", + "id": "instant 0.1.13", "target": "instant" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -9854,11 +9829,11 @@ "target": "hashbrown" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -9922,15 +9897,15 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -9983,14 +9958,14 @@ ], "license_file": "LICENSE" }, - "camino 1.1.6": { + "camino 1.1.9": { "name": "camino", - "version": "1.1.6", + "version": "1.1.9", "package_url": "https://github.com/camino-rs/camino", "repository": { "Http": { - "url": "https://static.crates.io/crates/camino/1.1.6/download", - "sha256": "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" + "url": "https://static.crates.io/crates/camino/1.1.9/download", + "sha256": "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" } }, "targets": [ @@ -10034,7 +10009,7 @@ "deps": { "common": [ { - "id": "camino 1.1.6", + "id": "camino 1.1.9", "target": "build_script_build" }, { @@ -10045,7 +10020,7 @@ "selects": {} }, "edition": "2018", - "version": "1.1.6" + "version": "1.1.9" }, "build_script_attrs": { "compile_data_glob": [ @@ -10110,19 +10085,19 @@ "target": "canbench_rs" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "clap 4.5.20", + "id": "clap 4.5.26", "target": "clap" }, { - "id": "colored 2.0.4", + "id": "colored 2.2.0", "target": "colored" }, { - "id": "flate2 1.0.31", + "id": "flate2 1.0.35", "target": "flate2" }, { @@ -10138,7 +10113,7 @@ "target": "reqwest" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -10154,7 +10129,7 @@ "target": "sha256" }, { - "id": "tempfile 3.12.0", + "id": "tempfile 3.15.0", "target": "tempfile" }, { @@ -10205,7 +10180,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -10269,11 +10244,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -10292,14 +10267,14 @@ ], "license_file": null }, - "candid 0.10.10": { + "candid 0.10.12": { "name": "candid", - "version": "0.10.10", + "version": "0.10.12", "package_url": "https://github.com/dfinity/candid", "repository": { "Http": { - "url": "https://static.crates.io/crates/candid/0.10.10/download", - "sha256": "6c30ee7f886f296b6422c0ff017e89dd4f831521dfdcc76f3f71aae1ce817222" + "url": "https://static.crates.io/crates/candid/0.10.12/download", + "sha256": "51e129c4051c57daf943586e01ef72faae48b04a8f692d5f646febf17a264c38" } }, "targets": [ @@ -10335,7 +10310,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -10379,14 +10354,14 @@ "target": "serde_bytes" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], "selects": { "cfg(not(target_arch = \"wasm32\"))": [ { - "id": "stacker 0.1.15", + "id": "stacker 0.1.17", "target": "stacker" } ] @@ -10427,7 +10402,7 @@ ], "selects": {} }, - "version": "0.10.10" + "version": "0.10.12" }, "license": "Apache-2.0", "license_ids": [ @@ -10467,19 +10442,19 @@ "deps": { "common": [ { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -10494,14 +10469,14 @@ ], "license_file": "LICENSE" }, - "candid_parser 0.1.2": { + "candid_parser 0.1.4": { "name": "candid_parser", - "version": "0.1.2", + "version": "0.1.4", "package_url": "https://github.com/dfinity/candid", "repository": { "Http": { - "url": "https://static.crates.io/crates/candid_parser/0.1.2/download", - "sha256": "36381de3ba8a312deb028552c0d63f7c7fe6e204f44bae4c58a3643308cfa9d5" + "url": "https://static.crates.io/crates/candid_parser/0.1.4/download", + "sha256": "48a3da76f989cd350b7342c64c6c6008341bb6186f6832ef04e56dc50ba0fd76" } }, "targets": [ @@ -10538,15 +10513,15 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "candid_parser 0.1.2", + "id": "candid_parser 0.1.4", "target": "build_script_build" }, { @@ -10562,7 +10537,7 @@ "target": "hex" }, { - "id": "lalrpop-util 0.20.0", + "id": "lalrpop-util 0.20.2", "target": "lalrpop_util" }, { @@ -10578,14 +10553,14 @@ "target": "pretty" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], "selects": {} }, "edition": "2021", - "version": "0.1.2" + "version": "0.1.4" }, "build_script_attrs": { "compile_data_glob": [ @@ -10597,7 +10572,7 @@ "deps": { "common": [ { - "id": "lalrpop 0.20.0", + "id": "lalrpop 0.20.2", "target": "lalrpop" } ], @@ -10610,14 +10585,14 @@ ], "license_file": "LICENSE" }, - "cargo-platform 0.1.4": { + "cargo-platform 0.1.9": { "name": "cargo-platform", - "version": "0.1.4", + "version": "0.1.9", "package_url": "https://github.com/rust-lang/cargo", "repository": { "Http": { - "url": "https://static.crates.io/crates/cargo-platform/0.1.4/download", - "sha256": "12024c4645c97566567129c204f65d5815a8c9aecf30fcbe682b2fe034996d36" + "url": "https://static.crates.io/crates/cargo-platform/0.1.9/download", + "sha256": "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" } }, "targets": [ @@ -10649,7 +10624,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.4" + "version": "0.1.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -10696,15 +10671,15 @@ "deps": { "common": [ { - "id": "camino 1.1.6", + "id": "camino 1.1.9", "target": "camino" }, { - "id": "cargo-platform 0.1.4", + "id": "cargo-platform 0.1.9", "target": "cargo_platform" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -10712,7 +10687,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -10766,14 +10741,14 @@ ], "license_file": "LICENSE-APACHE" }, - "cc 1.0.83": { + "cc 1.2.9": { "name": "cc", - "version": "1.0.83", + "version": "1.2.9", "package_url": "https://github.com/rust-lang/cc-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/cc/1.0.83/download", - "sha256": "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0", + "url": "https://static.crates.io/crates/cc/1.2.9/download", + "sha256": "c8293772165d9345bdaaa39b45b2109591e63fe5e6fbc23c6ff930a048aa310b", "patch_args": [ "-p1" ], @@ -10805,160 +10780,189 @@ "common": [], "selects": { "aarch64-apple-darwin": [ - "jobserver", "parallel" ], "aarch64-pc-windows-msvc": [ - "jobserver", "parallel" ], "aarch64-unknown-linux-gnu": [ - "jobserver", "parallel" ], "aarch64-unknown-nixos-gnu": [ - "jobserver", "parallel" ], "arm-unknown-linux-gnueabi": [ - "jobserver", "parallel" ], "i686-pc-windows-msvc": [ - "jobserver", "parallel" ], "i686-unknown-linux-gnu": [ - "jobserver", "parallel" ], "powerpc-unknown-linux-gnu": [ - "jobserver", "parallel" ], "s390x-unknown-linux-gnu": [ - "jobserver", "parallel" ], "x86_64-apple-darwin": [ - "jobserver", "parallel" ], "x86_64-pc-windows-msvc": [ - "jobserver", "parallel" ], "x86_64-unknown-freebsd": [ - "jobserver", "parallel" ], "x86_64-unknown-linux-gnu": [ - "jobserver", "parallel" ], "x86_64-unknown-nixos-gnu": [ - "jobserver", "parallel" ] } }, "deps": { - "common": [], + "common": [ + { + "id": "shlex 1.3.0", + "target": "shlex" + } + ], "selects": { "aarch64-apple-darwin": [ { - "id": "jobserver 0.1.27", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "aarch64-pc-windows-msvc": [ { - "id": "jobserver 0.1.27", + "id": "jobserver 0.1.32", "target": "jobserver" } ], "aarch64-unknown-linux-gnu": [ { - "id": "jobserver 0.1.27", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "jobserver 0.1.27", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "arm-unknown-linux-gnueabi": [ { - "id": "jobserver 0.1.27", + "id": "jobserver 0.1.32", "target": "jobserver" - } - ], - "cfg(unix)": [ + }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-pc-windows-msvc": [ { - "id": "jobserver 0.1.27", + "id": "jobserver 0.1.32", "target": "jobserver" } ], "i686-unknown-linux-gnu": [ { - "id": "jobserver 0.1.27", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "powerpc-unknown-linux-gnu": [ { - "id": "jobserver 0.1.27", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "s390x-unknown-linux-gnu": [ { - "id": "jobserver 0.1.27", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "x86_64-apple-darwin": [ { - "id": "jobserver 0.1.27", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "x86_64-pc-windows-msvc": [ { - "id": "jobserver 0.1.27", + "id": "jobserver 0.1.32", "target": "jobserver" } ], "x86_64-unknown-freebsd": [ { - "id": "jobserver 0.1.27", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "x86_64-unknown-linux-gnu": [ { - "id": "jobserver 0.1.27", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "jobserver 0.1.27", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ] } }, "edition": "2018", - "version": "1.0.83" + "version": "1.2.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -11031,15 +11035,15 @@ "target": "base16" }, { - "id": "base64-url 2.0.0", + "id": "base64-url 2.0.2", "target": "base64_url" }, { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { - "id": "ciborium 0.2.1", + "id": "ciborium 0.2.2", "target": "ciborium" }, { @@ -11051,7 +11055,7 @@ "target": "codespan_reporting" }, { - "id": "data-encoding 2.4.0", + "id": "data-encoding 2.7.0", "target": "data_encoding" }, { @@ -11067,19 +11071,19 @@ "target": "lexical_core" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "pest_meta 2.7.4", + "id": "pest_meta 2.7.15", "target": "pest_meta" }, { - "id": "pest_vm 2.7.4", + "id": "pest_vm 2.7.15", "target": "pest_vm" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -11091,7 +11095,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -11254,17 +11258,7 @@ "target": "serde_wasm_bindgen" }, { - "id": "wasm-bindgen 0.2.95", - "target": "wasm_bindgen" - } - ], - "wasm32-wasi": [ - { - "id": "serde-wasm-bindgen 0.5.0", - "target": "serde_wasm_bindgen" - }, - { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], @@ -11274,7 +11268,7 @@ "target": "serde_wasm_bindgen" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], @@ -11338,7 +11332,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], @@ -11604,7 +11598,7 @@ "selects": { "cfg(any(target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.9", + "id": "cpufeatures 0.2.16", "target": "cpufeatures" } ] @@ -11693,14 +11687,14 @@ ], "license_file": "LICENSE-APACHE" }, - "chrono 0.4.38": { + "chrono 0.4.39": { "name": "chrono", - "version": "0.4.38", + "version": "0.4.39", "package_url": "https://github.com/chronotope/chrono", "repository": { "Http": { - "url": "https://static.crates.io/crates/chrono/0.4.38/download", - "sha256": "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" + "url": "https://static.crates.io/crates/chrono/0.4.39/download", + "sha256": "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825" } }, "targets": [ @@ -11755,19 +11749,19 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "aarch64-apple-ios": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "aarch64-apple-ios-sim": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], @@ -11777,7 +11771,7 @@ "target": "android_tzdata" }, { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], @@ -11789,31 +11783,31 @@ ], "aarch64-unknown-fuchsia": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "aarch64-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "arm-unknown-linux-gnueabi": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], @@ -11823,19 +11817,19 @@ "target": "android_tzdata" }, { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "i686-apple-darwin": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], @@ -11845,7 +11839,7 @@ "target": "android_tzdata" }, { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], @@ -11857,47 +11851,47 @@ ], "i686-unknown-freebsd": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "i686-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "powerpc-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "s390x-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "wasm32-unknown-unknown": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], "x86_64-apple-darwin": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "x86_64-apple-ios": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], @@ -11907,7 +11901,7 @@ "target": "android_tzdata" }, { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], @@ -11919,32 +11913,32 @@ ], "x86_64-unknown-freebsd": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "x86_64-unknown-fuchsia": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "x86_64-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ] } }, "edition": "2021", - "version": "0.4.38" + "version": "0.4.39" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -11953,14 +11947,14 @@ ], "license_file": "LICENSE.txt" }, - "ciborium 0.2.1": { + "ciborium 0.2.2": { "name": "ciborium", - "version": "0.2.1", + "version": "0.2.2", "package_url": "https://github.com/enarx/ciborium", "repository": { "Http": { - "url": "https://static.crates.io/crates/ciborium/0.2.1/download", - "sha256": "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" + "url": "https://static.crates.io/crates/ciborium/0.2.2/download", + "sha256": "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" } }, "targets": [ @@ -11992,11 +11986,11 @@ "deps": { "common": [ { - "id": "ciborium-io 0.2.1", + "id": "ciborium-io 0.2.2", "target": "ciborium_io" }, { - "id": "ciborium-ll 0.2.1", + "id": "ciborium-ll 0.2.2", "target": "ciborium_ll" }, { @@ -12007,7 +12001,7 @@ "selects": {} }, "edition": "2021", - "version": "0.2.1" + "version": "0.2.2" }, "license": "Apache-2.0", "license_ids": [ @@ -12015,14 +12009,14 @@ ], "license_file": "LICENSE" }, - "ciborium-io 0.2.1": { + "ciborium-io 0.2.2": { "name": "ciborium-io", - "version": "0.2.1", + "version": "0.2.2", "package_url": "https://github.com/enarx/ciborium", "repository": { "Http": { - "url": "https://static.crates.io/crates/ciborium-io/0.2.1/download", - "sha256": "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" + "url": "https://static.crates.io/crates/ciborium-io/0.2.2/download", + "sha256": "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" } }, "targets": [ @@ -12052,7 +12046,7 @@ "selects": {} }, "edition": "2021", - "version": "0.2.1" + "version": "0.2.2" }, "license": "Apache-2.0", "license_ids": [ @@ -12060,14 +12054,14 @@ ], "license_file": "LICENSE" }, - "ciborium-ll 0.2.1": { + "ciborium-ll 0.2.2": { "name": "ciborium-ll", - "version": "0.2.1", + "version": "0.2.2", "package_url": "https://github.com/enarx/ciborium", "repository": { "Http": { - "url": "https://static.crates.io/crates/ciborium-ll/0.2.1/download", - "sha256": "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" + "url": "https://static.crates.io/crates/ciborium-ll/0.2.2/download", + "sha256": "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" } }, "targets": [ @@ -12092,18 +12086,18 @@ "deps": { "common": [ { - "id": "ciborium-io 0.2.1", + "id": "ciborium-io 0.2.2", "target": "ciborium_io" }, { - "id": "half 1.8.2", + "id": "half 2.4.1", "target": "half" } ], "selects": {} }, "edition": "2021", - "version": "0.2.1" + "version": "0.2.2" }, "license": "Apache-2.0", "license_ids": [ @@ -12218,14 +12212,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clang-sys 1.6.1": { + "clang-sys 1.8.1": { "name": "clang-sys", - "version": "1.6.1", + "version": "1.8.1", "package_url": "https://github.com/KyleMayes/clang-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/clang-sys/1.6.1/download", - "sha256": "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" + "url": "https://static.crates.io/crates/clang-sys/1.8.1/download", + "sha256": "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" } }, "targets": [ @@ -12277,26 +12271,26 @@ "deps": { "common": [ { - "id": "clang-sys 1.6.1", + "id": "clang-sys 1.8.1", "target": "build_script_build" }, { - "id": "glob 0.3.1", + "id": "glob 0.3.2", "target": "glob" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "libloading 0.7.4", + "id": "libloading 0.8.6", "target": "libloading" } ], "selects": {} }, - "edition": "2015", - "version": "1.6.1" + "edition": "2021", + "version": "1.8.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -12308,7 +12302,7 @@ "deps": { "common": [ { - "id": "glob 0.3.1", + "id": "glob 0.3.2", "target": "glob" } ], @@ -12385,7 +12379,7 @@ "target": "indexmap" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -12397,7 +12391,7 @@ "target": "termcolor" }, { - "id": "textwrap 0.16.0", + "id": "textwrap 0.16.1", "target": "textwrap" } ], @@ -12422,14 +12416,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap 4.5.20": { + "clap 4.5.26": { "name": "clap", - "version": "4.5.20", + "version": "4.5.26", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap/4.5.20/download", - "sha256": "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" + "url": "https://static.crates.io/crates/clap/4.5.26/download", + "sha256": "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783" } }, "targets": [ @@ -12470,7 +12464,7 @@ "deps": { "common": [ { - "id": "clap_builder 4.5.20", + "id": "clap_builder 4.5.26", "target": "clap_builder" } ], @@ -12480,13 +12474,13 @@ "proc_macro_deps": { "common": [ { - "id": "clap_derive 4.5.18", + "id": "clap_derive 4.5.24", "target": "clap_derive" } ], "selects": {} }, - "version": "4.5.20" + "version": "4.5.26" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -12495,14 +12489,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_builder 4.5.20": { + "clap_builder 4.5.26": { "name": "clap_builder", - "version": "4.5.20", + "version": "4.5.26", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_builder/4.5.20/download", - "sha256": "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" + "url": "https://static.crates.io/crates/clap_builder/4.5.26/download", + "sha256": "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121" } }, "targets": [ @@ -12541,15 +12535,15 @@ "deps": { "common": [ { - "id": "anstream 0.6.15", + "id": "anstream 0.6.18", "target": "anstream" }, { - "id": "anstyle 1.0.8", + "id": "anstyle 1.0.10", "target": "anstyle" }, { - "id": "clap_lex 0.7.2", + "id": "clap_lex 0.7.4", "target": "clap_lex" }, { @@ -12560,7 +12554,7 @@ "selects": {} }, "edition": "2021", - "version": "4.5.20" + "version": "4.5.26" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -12615,11 +12609,11 @@ "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -12639,14 +12633,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_derive 4.5.18": { + "clap_derive 4.5.24": { "name": "clap_derive", - "version": "4.5.18", + "version": "4.5.24", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_derive/4.5.18/download", - "sha256": "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" + "url": "https://static.crates.io/crates/clap_derive/4.5.24/download", + "sha256": "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c" } }, "targets": [ @@ -12681,22 +12675,22 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "4.5.18" + "version": "4.5.24" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -12753,14 +12747,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_lex 0.7.2": { + "clap_lex 0.7.4": { "name": "clap_lex", - "version": "0.7.2", + "version": "0.7.4", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_lex/0.7.2/download", - "sha256": "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" + "url": "https://static.crates.io/crates/clap_lex/0.7.4/download", + "sha256": "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" } }, "targets": [ @@ -12783,7 +12777,7 @@ "**" ], "edition": "2021", - "version": "0.7.2" + "version": "0.7.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -12824,11 +12818,11 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -12930,7 +12924,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { @@ -12950,7 +12944,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -12962,15 +12956,15 @@ "target": "serde_with" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" }, { - "id": "uuid 1.11.0", + "id": "uuid 1.12.0", "target": "uuid" } ], @@ -13060,7 +13054,7 @@ "target": "termcolor" }, { - "id": "unicode-width 0.1.11", + "id": "unicode-width 0.1.14", "target": "unicode_width" } ], @@ -13075,14 +13069,14 @@ ], "license_file": null }, - "colorchoice 1.0.0": { + "colorchoice 1.0.3": { "name": "colorchoice", - "version": "1.0.0", - "package_url": "https://github.com/rust-cli/anstyle", + "version": "1.0.3", + "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/colorchoice/1.0.0/download", - "sha256": "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" + "url": "https://static.crates.io/crates/colorchoice/1.0.3/download", + "sha256": "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" } }, "targets": [ @@ -13105,7 +13099,7 @@ "**" ], "edition": "2021", - "version": "1.0.0" + "version": "1.0.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13114,14 +13108,14 @@ ], "license_file": "LICENSE-APACHE" }, - "colored 2.0.4": { + "colored 2.2.0": { "name": "colored", - "version": "2.0.4", + "version": "2.2.0", "package_url": "https://github.com/mackwic/colored", "repository": { "Http": { - "url": "https://static.crates.io/crates/colored/2.0.4/download", - "sha256": "2674ec482fbc38012cf31e6c42ba0177b431a0cb6f15fe40efa5aab1bda516f6" + "url": "https://static.crates.io/crates/colored/2.2.0/download", + "sha256": "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c" } }, "targets": [ @@ -13146,25 +13140,21 @@ "deps": { "common": [ { - "id": "is-terminal 0.4.9", - "target": "is_terminal" - }, - { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" } ], "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.48.0", + "id": "windows-sys 0.59.0", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "2.0.4" + "version": "2.2.0" }, "license": "MPL-2.0", "license_ids": [ @@ -13217,7 +13207,7 @@ "target": "bytes" }, { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" } ], @@ -13232,14 +13222,14 @@ ], "license_file": "LICENSE" }, - "comparable 0.5.4": { + "comparable 0.5.5": { "name": "comparable", - "version": "0.5.4", + "version": "0.5.5", "package_url": "https://github.com/jwiegley/comparable", "repository": { "Http": { - "url": "https://static.crates.io/crates/comparable/0.5.4/download", - "sha256": "eb513ee8037bf08c5270ecefa48da249f4c58e57a71ccfce0a5b0877d2a20eb2" + "url": "https://static.crates.io/crates/comparable/0.5.5/download", + "sha256": "8606f9aa5b5a2df738584b139c79413d0c1545ed0ffd16e76e0944d1de7388c0" } }, "targets": [ @@ -13271,7 +13261,7 @@ "deps": { "common": [ { - "id": "pretty_assertions 1.4.0", + "id": "pretty_assertions 1.4.1", "target": "pretty_assertions" }, { @@ -13285,17 +13275,17 @@ "proc_macro_deps": { "common": [ { - "id": "comparable_derive 0.5.4", + "id": "comparable_derive 0.5.5", "target": "comparable_derive" }, { - "id": "comparable_helper 0.5.4", + "id": "comparable_helper 0.5.5", "target": "comparable_helper" } ], "selects": {} }, - "version": "0.5.4" + "version": "0.5.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13304,14 +13294,14 @@ ], "license_file": "LICENSE-APACHE" }, - "comparable_derive 0.5.4": { + "comparable_derive 0.5.5": { "name": "comparable_derive", - "version": "0.5.4", + "version": "0.5.5", "package_url": "https://github.com/jwiegley/comparable", "repository": { "Http": { - "url": "https://static.crates.io/crates/comparable_derive/0.5.4/download", - "sha256": "a54b9c40054eb8999c5d1d36fdc90e4e5f7ff0d1d9621706f360b3cbc8beb828" + "url": "https://static.crates.io/crates/comparable_derive/0.5.5/download", + "sha256": "41f36ea7383b9a2a9ae0a4e225d8a9c1c3aeadde78c59cdc35bad5c02b4dad01" } }, "targets": [ @@ -13340,11 +13330,11 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -13355,7 +13345,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.4" + "version": "0.5.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13364,14 +13354,14 @@ ], "license_file": "LICENSE-APACHE" }, - "comparable_helper 0.5.4": { + "comparable_helper 0.5.5": { "name": "comparable_helper", - "version": "0.5.4", + "version": "0.5.5", "package_url": "https://github.com/jwiegley/comparable", "repository": { "Http": { - "url": "https://static.crates.io/crates/comparable_helper/0.5.4/download", - "sha256": "fb5437e327e861081c91270becff184859f706e3e50f5301a9d4dc8eb50752c3" + "url": "https://static.crates.io/crates/comparable_helper/0.5.5/download", + "sha256": "71c9b60259084f32c14d32476f3a299b4997e3c186e1473bd972ff8a8c83d1b4" } }, "targets": [ @@ -13400,11 +13390,11 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -13415,7 +13405,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.4" + "version": "0.5.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13463,7 +13453,7 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" } ], @@ -13522,15 +13512,15 @@ "deps": { "common": [ { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -13538,14 +13528,14 @@ "target": "terminal_size" }, { - "id": "unicode-width 0.1.11", + "id": "unicode-width 0.1.14", "target": "unicode_width" } ], "selects": { "aarch64-pc-windows-msvc": [ { - "id": "winapi-util 0.1.6", + "id": "winapi-util 0.1.9", "target": "winapi_util" } ], @@ -13567,13 +13557,13 @@ ], "i686-pc-windows-msvc": [ { - "id": "winapi-util 0.1.6", + "id": "winapi-util 0.1.9", "target": "winapi_util" } ], "x86_64-pc-windows-msvc": [ { - "id": "winapi-util 0.1.6", + "id": "winapi-util 0.1.9", "target": "winapi_util" } ] @@ -13588,14 +13578,14 @@ ], "license_file": "LICENSE" }, - "console 0.15.7": { + "console 0.15.10": { "name": "console", - "version": "0.15.7", + "version": "0.15.10", "package_url": "https://github.com/console-rs/console", "repository": { "Http": { - "url": "https://static.crates.io/crates/console/0.15.7/download", - "sha256": "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" + "url": "https://static.crates.io/crates/console/0.15.10/download", + "sha256": "ea3c6ecd8059b57859df5c69830340ed3c41d30e3da0c1cbed90a96ac853041b" } }, "targets": [ @@ -13627,33 +13617,33 @@ "deps": { "common": [ { - "id": "lazy_static 1.4.0", - "target": "lazy_static" + "id": "libc 0.2.169", + "target": "libc" }, { - "id": "libc 0.2.158", - "target": "libc" + "id": "once_cell 1.20.2", + "target": "once_cell" }, { - "id": "unicode-width 0.1.11", + "id": "unicode-width 0.2.0", "target": "unicode_width" } ], "selects": { "cfg(windows)": [ { - "id": "encode_unicode 0.3.6", + "id": "encode_unicode 1.0.0", "target": "encode_unicode" }, { - "id": "windows-sys 0.45.0", + "id": "windows-sys 0.59.0", "target": "windows_sys" } ] } }, "edition": "2018", - "version": "0.15.7" + "version": "0.15.10" }, "license": "MIT", "license_ids": [ @@ -13697,7 +13687,7 @@ "target": "cfg_if" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], @@ -13713,14 +13703,14 @@ ], "license_file": "LICENSE-APACHE" }, - "const-hex 1.9.1": { + "const-hex 1.14.0": { "name": "const-hex", - "version": "1.9.1", + "version": "1.14.0", "package_url": "https://github.com/danipopes/const-hex", "repository": { "Http": { - "url": "https://static.crates.io/crates/const-hex/1.9.1/download", - "sha256": "c37be52ef5e3b394db27a2341010685ad5103c72ac15ce2e9420a7e8f93f342c" + "url": "https://static.crates.io/crates/const-hex/1.14.0/download", + "sha256": "4b0485bab839b018a8f1723fc5391819fea5f8f0f32288ef8a735fd096b6160c" } }, "targets": [ @@ -13765,14 +13755,14 @@ "selects": { "cfg(any(target_arch = \"x86\", target_arch = \"x86_64\"))": [ { - "id": "cpufeatures 0.2.9", + "id": "cpufeatures 0.2.16", "target": "cpufeatures" } ] } }, "edition": "2021", - "version": "1.9.1" + "version": "1.14.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13781,14 +13771,14 @@ ], "license_file": "LICENSE-APACHE" }, - "const-oid 0.9.5": { + "const-oid 0.9.6": { "name": "const-oid", - "version": "0.9.5", + "version": "0.9.6", "package_url": "https://github.com/RustCrypto/formats/tree/master/const-oid", "repository": { "Http": { - "url": "https://static.crates.io/crates/const-oid/0.9.5/download", - "sha256": "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f" + "url": "https://static.crates.io/crates/const-oid/0.9.6/download", + "sha256": "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" } }, "targets": [ @@ -13818,7 +13808,7 @@ "selects": {} }, "edition": "2021", - "version": "0.9.5" + "version": "0.9.6" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -13897,7 +13887,7 @@ "deps": { "common": [ { - "id": "unicode-segmentation 1.10.1", + "id": "unicode-segmentation 1.12.0", "target": "unicode_segmentation" } ], @@ -13971,7 +13961,7 @@ "target": "percent_encoding" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -13990,7 +13980,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.4", + "id": "version_check 0.9.5", "target": "version_check" } ], @@ -14047,7 +14037,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -14063,6 +14053,65 @@ ], "license_file": "LICENSE-APACHE" }, + "core-foundation 0.10.0": { + "name": "core-foundation", + "version": "0.10.0", + "package_url": "https://github.com/servo/core-foundation-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/core-foundation/0.10.0/download", + "sha256": "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" + } + }, + "targets": [ + { + "Library": { + "crate_name": "core_foundation", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "core_foundation", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "link" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "core-foundation-sys 0.8.7", + "target": "core_foundation_sys" + }, + { + "id": "libc 0.2.169", + "target": "libc" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.10.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "core-foundation-sys 0.8.7": { "name": "core-foundation-sys", "version": "0.8.7", @@ -14153,7 +14202,7 @@ "target": "jsonrpc" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -14161,7 +14210,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -14208,7 +14257,7 @@ "deps": { "common": [ { - "id": "bitcoin 0.30.1", + "id": "bitcoin 0.30.2", "target": "bitcoin" }, { @@ -14220,7 +14269,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -14274,7 +14323,7 @@ "deps": { "common": [ { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" } ], @@ -14290,14 +14339,14 @@ ], "license_file": "LICENSE-APACHE" }, - "cpufeatures 0.2.9": { + "cpufeatures 0.2.16": { "name": "cpufeatures", - "version": "0.2.9", + "version": "0.2.16", "package_url": "https://github.com/RustCrypto/utils", "repository": { "Http": { - "url": "https://static.crates.io/crates/cpufeatures/0.2.9/download", - "sha256": "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" + "url": "https://static.crates.io/crates/cpufeatures/0.2.16/download", + "sha256": "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3" } }, "targets": [ @@ -14324,26 +14373,32 @@ "selects": { "aarch64-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", + "target": "libc" + } + ], + "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))": [ + { + "id": "libc 0.2.169", "target": "libc" } ] } }, "edition": "2018", - "version": "0.2.9" + "version": "0.2.16" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -14352,14 +14407,14 @@ ], "license_file": "LICENSE-APACHE" }, - "cranelift-bforest 0.115.0": { + "cranelift-bforest 0.115.1": { "name": "cranelift-bforest", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-bforest/0.115.0/download", - "sha256": "ac89549be94911dd0e839b4a7db99e9ed29c17517e1c026f61066884c168aa3c" + "url": "https://static.crates.io/crates/cranelift-bforest/0.115.1/download", + "sha256": "88c1d02b72b6c411c0a2e92b25ed791ad5d071184193c08a34aa0fdcdf000b72" } }, "targets": [ @@ -14384,14 +14439,14 @@ "deps": { "common": [ { - "id": "cranelift-entity 0.115.0", + "id": "cranelift-entity 0.115.1", "target": "cranelift_entity" } ], "selects": {} }, "edition": "2021", - "version": "0.115.0" + "version": "0.115.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14399,14 +14454,14 @@ ], "license_file": "LICENSE" }, - "cranelift-bitset 0.115.0": { + "cranelift-bitset 0.115.1": { "name": "cranelift-bitset", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-bitset/0.115.0/download", - "sha256": "b9bd49369f76c77e34e641af85d0956869237832c118964d08bf5f51f210875a" + "url": "https://static.crates.io/crates/cranelift-bitset/0.115.1/download", + "sha256": "720b93bd86ebbb23ebfb2db1ed44d54b2ecbdbb2d034d485bc64aa605ee787ab" } }, "targets": [ @@ -14453,7 +14508,7 @@ ], "selects": {} }, - "version": "0.115.0" + "version": "0.115.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14461,14 +14516,14 @@ ], "license_file": null }, - "cranelift-codegen 0.115.0": { + "cranelift-codegen 0.115.1": { "name": "cranelift-codegen", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-codegen/0.115.0/download", - "sha256": "fd96ce9cf8efebd7f5ab8ced5a0ce44250280bbae9f593d74a6d7effc3582a35" + "url": "https://static.crates.io/crates/cranelift-codegen/0.115.1/download", + "sha256": "aed3d2d9914d30b460eedd7fd507720203023997bef71452ce84873f9c93537c" } }, "targets": [ @@ -14519,27 +14574,27 @@ "target": "bumpalo" }, { - "id": "cranelift-bforest 0.115.0", + "id": "cranelift-bforest 0.115.1", "target": "cranelift_bforest" }, { - "id": "cranelift-bitset 0.115.0", + "id": "cranelift-bitset 0.115.1", "target": "cranelift_bitset" }, { - "id": "cranelift-codegen 0.115.0", + "id": "cranelift-codegen 0.115.1", "target": "build_script_build" }, { - "id": "cranelift-codegen-shared 0.115.0", + "id": "cranelift-codegen-shared 0.115.1", "target": "cranelift_codegen_shared" }, { - "id": "cranelift-control 0.115.0", + "id": "cranelift-control 0.115.1", "target": "cranelift_control" }, { - "id": "cranelift-entity 0.115.0", + "id": "cranelift-entity 0.115.1", "target": "cranelift_entity" }, { @@ -14551,7 +14606,7 @@ "target": "hashbrown" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -14559,7 +14614,7 @@ "target": "regalloc2" }, { - "id": "rustc-hash 2.0.0", + "id": "rustc-hash 2.1.0", "target": "rustc_hash" }, { @@ -14574,7 +14629,7 @@ "selects": {} }, "edition": "2021", - "version": "0.115.0" + "version": "0.115.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -14586,11 +14641,11 @@ "deps": { "common": [ { - "id": "cranelift-codegen-meta 0.115.0", + "id": "cranelift-codegen-meta 0.115.1", "target": "cranelift_codegen_meta" }, { - "id": "cranelift-isle 0.115.0", + "id": "cranelift-isle 0.115.1", "target": "cranelift_isle" } ], @@ -14603,14 +14658,14 @@ ], "license_file": "LICENSE" }, - "cranelift-codegen-meta 0.115.0": { + "cranelift-codegen-meta 0.115.1": { "name": "cranelift-codegen-meta", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-codegen-meta/0.115.0/download", - "sha256": "5a68e358827afe4bfb6239fcbf6fbd5ac56206ece8a99c8f5f9bbd518773281a", + "url": "https://static.crates.io/crates/cranelift-codegen-meta/0.115.1/download", + "sha256": "888c188d32263ec9e048873ff0b68c700933600d553f4412417916828be25f8e", "patch_args": [ "-p4" ], @@ -14641,14 +14696,14 @@ "deps": { "common": [ { - "id": "cranelift-codegen-shared 0.115.0", + "id": "cranelift-codegen-shared 0.115.1", "target": "cranelift_codegen_shared" } ], "selects": {} }, "edition": "2021", - "version": "0.115.0" + "version": "0.115.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14656,14 +14711,14 @@ ], "license_file": "LICENSE" }, - "cranelift-codegen-shared 0.115.0": { + "cranelift-codegen-shared 0.115.1": { "name": "cranelift-codegen-shared", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-codegen-shared/0.115.0/download", - "sha256": "e184c9767afbe73d50c55ec29abcf4c32f9baf0d9d22b86d58c4d55e06dee181" + "url": "https://static.crates.io/crates/cranelift-codegen-shared/0.115.1/download", + "sha256": "4ddd5f4114d04ce7e073dd74e2ad16541fc61970726fcc8b2d5644a154ee4127" } }, "targets": [ @@ -14686,7 +14741,7 @@ "**" ], "edition": "2021", - "version": "0.115.0" + "version": "0.115.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14694,14 +14749,14 @@ ], "license_file": "LICENSE" }, - "cranelift-control 0.115.0": { + "cranelift-control 0.115.1": { "name": "cranelift-control", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-control/0.115.0/download", - "sha256": "5cc7664f2a66f053e33f149e952bb5971d138e3af637f5097727ed6dc0ed95dd" + "url": "https://static.crates.io/crates/cranelift-control/0.115.1/download", + "sha256": "92cc4c98d6a4256a1600d93ccd3536f3e77da9b4ca2c279de786ac22876e67d6" } }, "targets": [ @@ -14733,14 +14788,14 @@ "deps": { "common": [ { - "id": "arbitrary 1.3.2", + "id": "arbitrary 1.4.1", "target": "arbitrary" } ], "selects": {} }, "edition": "2021", - "version": "0.115.0" + "version": "0.115.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14748,14 +14803,14 @@ ], "license_file": "LICENSE" }, - "cranelift-entity 0.115.0": { + "cranelift-entity 0.115.1": { "name": "cranelift-entity", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-entity/0.115.0/download", - "sha256": "118597e3a9cf86c3556fa579a7a23b955fa18231651a52a77a2475d305a9cf84" + "url": "https://static.crates.io/crates/cranelift-entity/0.115.1/download", + "sha256": "760af4b5e051b5f82097a27274b917e3751736369fa73660513488248d27f23d" } }, "targets": [ @@ -14788,7 +14843,7 @@ "deps": { "common": [ { - "id": "cranelift-bitset 0.115.0", + "id": "cranelift-bitset 0.115.1", "target": "cranelift_bitset" }, { @@ -14808,7 +14863,7 @@ ], "selects": {} }, - "version": "0.115.0" + "version": "0.115.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14816,14 +14871,14 @@ ], "license_file": "LICENSE" }, - "cranelift-frontend 0.115.0": { + "cranelift-frontend 0.115.1": { "name": "cranelift-frontend", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-frontend/0.115.0/download", - "sha256": "7638ea1efb069a0aa18d8ee67401b6b0d19f6bfe5de5e9ede348bfc80bb0d8c7" + "url": "https://static.crates.io/crates/cranelift-frontend/0.115.1/download", + "sha256": "c0bf77ec0f470621655ec7539860b5c620d4f91326654ab21b075b83900f8831" } }, "targets": [ @@ -14855,11 +14910,11 @@ "deps": { "common": [ { - "id": "cranelift-codegen 0.115.0", + "id": "cranelift-codegen 0.115.1", "target": "cranelift_codegen" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -14874,7 +14929,7 @@ "selects": {} }, "edition": "2021", - "version": "0.115.0" + "version": "0.115.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14882,14 +14937,14 @@ ], "license_file": "LICENSE" }, - "cranelift-isle 0.115.0": { + "cranelift-isle 0.115.1": { "name": "cranelift-isle", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime/tree/main/cranelift/isle", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-isle/0.115.0/download", - "sha256": "15c53e1152a0b01c4ed2b1e0535602b8e86458777dd9d18b28732b16325c7dc0", + "url": "https://static.crates.io/crates/cranelift-isle/0.115.1/download", + "sha256": "4b665d0a6932c421620be184f9fc7f7adaf1b0bc2fa77bb7ac5177c49abf645b", "patch_args": [ "-p4" ], @@ -14938,14 +14993,14 @@ "deps": { "common": [ { - "id": "cranelift-isle 0.115.0", + "id": "cranelift-isle 0.115.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.115.0" + "version": "0.115.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -14961,14 +15016,14 @@ ], "license_file": null }, - "cranelift-native 0.115.0": { + "cranelift-native 0.115.1": { "name": "cranelift-native", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-native/0.115.0/download", - "sha256": "7b7d8f895444fa52dd7bdd0bed11bf007a7fb43af65a6deac8fcc4094c6372f7" + "url": "https://static.crates.io/crates/cranelift-native/0.115.1/download", + "sha256": "bb2e75d1bd43dfec10924798f15e6474f1dbf63b0024506551aa19394dbe72ab" } }, "targets": [ @@ -15000,7 +15055,7 @@ "deps": { "common": [ { - "id": "cranelift-codegen 0.115.0", + "id": "cranelift-codegen 0.115.1", "target": "cranelift_codegen" }, { @@ -15011,14 +15066,14 @@ "selects": { "cfg(any(target_arch = \"s390x\", target_arch = \"riscv64\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] } }, "edition": "2021", - "version": "0.115.0" + "version": "0.115.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -15026,14 +15081,14 @@ ], "license_file": "LICENSE" }, - "crc32fast 1.3.2": { + "crc32fast 1.4.2": { "name": "crc32fast", - "version": "1.3.2", + "version": "1.4.2", "package_url": "https://github.com/srijs/rust-crc32fast", "repository": { "Http": { - "url": "https://static.crates.io/crates/crc32fast/1.3.2/download", - "sha256": "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" + "url": "https://static.crates.io/crates/crc32fast/1.4.2/download", + "sha256": "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" } }, "targets": [ @@ -15048,18 +15103,6 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], "library_target_name": "crc32fast", @@ -15079,24 +15122,12 @@ { "id": "cfg-if 1.0.0", "target": "cfg_if" - }, - { - "id": "crc32fast 1.3.2", - "target": "build_script_build" } ], "selects": {} }, "edition": "2015", - "version": "1.3.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] + "version": "1.4.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15159,11 +15190,11 @@ "target": "cast" }, { - "id": "ciborium 0.2.1", + "id": "ciborium 0.2.2", "target": "ciborium" }, { - "id": "clap 4.5.20", + "id": "clap 4.5.26", "target": "clap" }, { @@ -15175,7 +15206,7 @@ "target": "futures" }, { - "id": "is-terminal 0.4.9", + "id": "is-terminal 0.4.13", "target": "is_terminal" }, { @@ -15187,15 +15218,15 @@ "target": "num_traits" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "oorandom 11.1.3", + "id": "oorandom 11.1.4", "target": "oorandom" }, { - "id": "plotters 0.3.5", + "id": "plotters 0.3.7", "target": "plotters" }, { @@ -15203,7 +15234,7 @@ "target": "rayon" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -15211,7 +15242,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -15219,11 +15250,11 @@ "target": "tinytemplate" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { - "id": "walkdir 2.3.3", + "id": "walkdir 2.5.0", "target": "walkdir" } ], @@ -15344,11 +15375,11 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { - "id": "crossbeam-deque 0.8.5", + "id": "crossbeam-deque 0.8.6", "target": "crossbeam_deque" }, { @@ -15356,11 +15387,11 @@ "target": "crossbeam_epoch" }, { - "id": "crossbeam-queue 0.3.11", + "id": "crossbeam-queue 0.3.12", "target": "crossbeam_queue" }, { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" } ], @@ -15376,14 +15407,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crossbeam-channel 0.5.13": { + "crossbeam-channel 0.5.14": { "name": "crossbeam-channel", - "version": "0.5.13", + "version": "0.5.14", "package_url": "https://github.com/crossbeam-rs/crossbeam", "repository": { "Http": { - "url": "https://static.crates.io/crates/crossbeam-channel/0.5.13/download", - "sha256": "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" + "url": "https://static.crates.io/crates/crossbeam-channel/0.5.14/download", + "sha256": "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471" } }, "targets": [ @@ -15415,14 +15446,14 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" } ], "selects": {} }, "edition": "2021", - "version": "0.5.13" + "version": "0.5.14" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15431,14 +15462,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crossbeam-deque 0.8.5": { + "crossbeam-deque 0.8.6": { "name": "crossbeam-deque", - "version": "0.8.5", + "version": "0.8.6", "package_url": "https://github.com/crossbeam-rs/crossbeam", "repository": { "Http": { - "url": "https://static.crates.io/crates/crossbeam-deque/0.8.5/download", - "sha256": "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" + "url": "https://static.crates.io/crates/crossbeam-deque/0.8.6/download", + "sha256": "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" } }, "targets": [ @@ -15474,14 +15505,14 @@ "target": "crossbeam_epoch" }, { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" } ], "selects": {} }, "edition": "2021", - "version": "0.8.5" + "version": "0.8.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15530,7 +15561,7 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" } ], @@ -15546,14 +15577,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crossbeam-queue 0.3.11": { + "crossbeam-queue 0.3.12": { "name": "crossbeam-queue", - "version": "0.3.11", + "version": "0.3.12", "package_url": "https://github.com/crossbeam-rs/crossbeam", "repository": { "Http": { - "url": "https://static.crates.io/crates/crossbeam-queue/0.3.11/download", - "sha256": "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" + "url": "https://static.crates.io/crates/crossbeam-queue/0.3.12/download", + "sha256": "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" } }, "targets": [ @@ -15585,14 +15616,14 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" } ], "selects": {} }, "edition": "2021", - "version": "0.3.11" + "version": "0.3.12" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15601,14 +15632,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crossbeam-utils 0.8.19": { + "crossbeam-utils 0.8.21": { "name": "crossbeam-utils", - "version": "0.8.19", + "version": "0.8.21", "package_url": "https://github.com/crossbeam-rs/crossbeam", "repository": { "Http": { - "url": "https://static.crates.io/crates/crossbeam-utils/0.8.19/download", - "sha256": "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" + "url": "https://static.crates.io/crates/crossbeam-utils/0.8.21/download", + "sha256": "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" } }, "targets": [ @@ -15652,14 +15683,14 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.8.19" + "version": "0.8.21" }, "build_script_attrs": { "compile_data_glob": [ @@ -15717,18 +15748,18 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15736,13 +15767,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "aarch64-apple-ios": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15750,13 +15781,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "aarch64-apple-ios-sim": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15764,13 +15795,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "aarch64-linux-android": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15778,7 +15809,7 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], @@ -15794,7 +15825,7 @@ ], "aarch64-unknown-fuchsia": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15802,13 +15833,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "aarch64-unknown-linux-gnu": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15816,13 +15847,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15830,13 +15861,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15844,13 +15875,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "arm-unknown-linux-gnueabi": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15858,13 +15889,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "armv7-linux-androideabi": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15872,13 +15903,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15886,19 +15917,19 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-apple-darwin": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15906,13 +15937,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "i686-linux-android": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15920,7 +15951,7 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], @@ -15936,7 +15967,7 @@ ], "i686-unknown-freebsd": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15944,13 +15975,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "i686-unknown-linux-gnu": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15958,13 +15989,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "powerpc-unknown-linux-gnu": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15972,13 +16003,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "s390x-unknown-linux-gnu": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15986,13 +16017,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "x86_64-apple-darwin": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -16000,13 +16031,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "x86_64-apple-ios": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -16014,13 +16045,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "x86_64-linux-android": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -16028,7 +16059,7 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], @@ -16044,7 +16075,7 @@ ], "x86_64-unknown-freebsd": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -16052,13 +16083,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "x86_64-unknown-fuchsia": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -16066,13 +16097,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "x86_64-unknown-linux-gnu": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -16080,13 +16111,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -16094,7 +16125,7 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ] @@ -16234,14 +16265,14 @@ ], "license_file": null }, - "crypto-bigint 0.5.3": { + "crypto-bigint 0.5.5": { "name": "crypto-bigint", - "version": "0.5.3", + "version": "0.5.5", "package_url": "https://github.com/RustCrypto/crypto-bigint", "repository": { "Http": { - "url": "https://static.crates.io/crates/crypto-bigint/0.5.3/download", - "sha256": "740fe28e594155f10cfc383984cbefd529d7396050557148f79cb0f621204124" + "url": "https://static.crates.io/crates/crypto-bigint/0.5.5/download", + "sha256": "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" } }, "targets": [ @@ -16293,7 +16324,7 @@ "selects": {} }, "edition": "2021", - "version": "0.5.3" + "version": "0.5.5" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -16398,15 +16429,15 @@ "deps": { "common": [ { - "id": "dtoa-short 0.3.4", + "id": "dtoa-short 0.3.5", "target": "dtoa_short" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "phf 0.11.2", + "id": "phf 0.11.3", "target": "phf" }, { @@ -16466,11 +16497,11 @@ "deps": { "common": [ { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -16485,14 +16516,14 @@ ], "license_file": "LICENSE" }, - "csv 1.3.0": { + "csv 1.3.1": { "name": "csv", - "version": "1.3.0", + "version": "1.3.1", "package_url": "https://github.com/BurntSushi/rust-csv", "repository": { "Http": { - "url": "https://static.crates.io/crates/csv/1.3.0/download", - "sha256": "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe" + "url": "https://static.crates.io/crates/csv/1.3.1/download", + "sha256": "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf" } }, "targets": [ @@ -16521,11 +16552,11 @@ "target": "csv_core" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "ryu 1.0.15", + "id": "ryu 1.0.18", "target": "ryu" }, { @@ -16536,7 +16567,7 @@ "selects": {} }, "edition": "2021", - "version": "1.3.0" + "version": "1.3.1" }, "license": "Unlicense/MIT", "license_ids": [ @@ -16583,7 +16614,7 @@ "deps": { "common": [ { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" } ], @@ -16748,13 +16779,13 @@ "selects": { "cfg(curve25519_dalek_backend = \"fiat\")": [ { - "id": "fiat-crypto 0.2.6", + "id": "fiat-crypto 0.2.9", "target": "fiat_crypto" } ], "cfg(target_arch = \"x86_64\")": [ { - "id": "cpufeatures 0.2.9", + "id": "cpufeatures 0.2.16", "target": "cpufeatures" } ] @@ -16791,7 +16822,7 @@ "deps": { "common": [ { - "id": "rustc_version 0.4.0", + "id": "rustc_version 0.4.1", "target": "rustc_version" } ], @@ -16836,15 +16867,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -17151,11 +17182,11 @@ "target": "ident_case" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -17225,11 +17256,11 @@ "target": "ident_case" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -17237,7 +17268,7 @@ "target": "strsim" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -17288,7 +17319,7 @@ "target": "darling_core" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -17343,11 +17374,11 @@ "target": "darling_core" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -17362,14 +17393,14 @@ ], "license_file": "LICENSE" }, - "dary_heap 0.3.6": { + "dary_heap 0.3.7": { "name": "dary_heap", - "version": "0.3.6", + "version": "0.3.7", "package_url": "https://github.com/hanmertens/dary_heap", "repository": { "Http": { - "url": "https://static.crates.io/crates/dary_heap/0.3.6/download", - "sha256": "7762d17f1241643615821a8455a0b2c3e803784b058693d990b11f2dce25a0ca" + "url": "https://static.crates.io/crates/dary_heap/0.3.7/download", + "sha256": "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728" } }, "targets": [ @@ -17392,7 +17423,7 @@ "**" ], "edition": "2018", - "version": "0.3.6" + "version": "0.3.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -17441,15 +17472,15 @@ "target": "hashbrown" }, { - "id": "lock_api 0.4.10", + "id": "lock_api 0.4.12", "target": "lock_api" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "parking_lot_core 0.9.8", + "id": "parking_lot_core 0.9.10", "target": "parking_lot_core" } ], @@ -17500,7 +17531,7 @@ "target": "cfg_if" }, { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" }, { @@ -17508,15 +17539,15 @@ "target": "hashbrown" }, { - "id": "lock_api 0.4.10", + "id": "lock_api 0.4.12", "target": "lock_api" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "parking_lot_core 0.9.8", + "id": "parking_lot_core 0.9.10", "target": "parking_lot_core" } ], @@ -17531,14 +17562,14 @@ ], "license_file": "LICENSE" }, - "data-encoding 2.4.0": { + "data-encoding 2.7.0": { "name": "data-encoding", - "version": "2.4.0", + "version": "2.7.0", "package_url": "https://github.com/ia0/data-encoding", "repository": { "Http": { - "url": "https://static.crates.io/crates/data-encoding/2.4.0/download", - "sha256": "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" + "url": "https://static.crates.io/crates/data-encoding/2.7.0/download", + "sha256": "0e60eed09d8c01d3cee5b7d30acb059b76614c918fa0f992e0dd6eeb10daad6f" } }, "targets": [ @@ -17569,7 +17600,7 @@ "selects": {} }, "edition": "2018", - "version": "2.4.0" + "version": "2.7.0" }, "license": "MIT", "license_ids": [ @@ -17609,7 +17640,7 @@ "deps": { "common": [ { - "id": "uuid 1.11.0", + "id": "uuid 1.12.0", "target": "uuid" } ], @@ -17624,14 +17655,14 @@ ], "license_file": "LICENSE" }, - "der 0.7.8": { + "der 0.7.9": { "name": "der", - "version": "0.7.8", + "version": "0.7.9", "package_url": "https://github.com/RustCrypto/formats/tree/master/der", "repository": { "Http": { - "url": "https://static.crates.io/crates/der/0.7.8/download", - "sha256": "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c" + "url": "https://static.crates.io/crates/der/0.7.9/download", + "sha256": "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" } }, "targets": [ @@ -17668,11 +17699,11 @@ "deps": { "common": [ { - "id": "const-oid 0.9.5", + "id": "const-oid 0.9.6", "target": "const_oid" }, { - "id": "flagset 0.4.4", + "id": "flagset 0.4.6", "target": "flagset" }, { @@ -17690,13 +17721,13 @@ "proc_macro_deps": { "common": [ { - "id": "der_derive 0.7.2", + "id": "der_derive 0.7.3", "target": "der_derive" } ], "selects": {} }, - "version": "0.7.8" + "version": "0.7.9" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -17746,7 +17777,7 @@ "deps": { "common": [ { - "id": "asn1-rs 0.6.1", + "id": "asn1-rs 0.6.2", "target": "asn1_rs" }, { @@ -17772,7 +17803,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], @@ -17787,14 +17818,14 @@ ], "license_file": "LICENSE-APACHE" }, - "der_derive 0.7.2": { + "der_derive 0.7.3": { "name": "der_derive", - "version": "0.7.2", + "version": "0.7.3", "package_url": "https://github.com/RustCrypto/formats/tree/master/der/derive", "repository": { "Http": { - "url": "https://static.crates.io/crates/der_derive/0.7.2/download", - "sha256": "5fe87ce4529967e0ba1dcf8450bab64d97dfd5010a6256187ffe2e43e6f0e049" + "url": "https://static.crates.io/crates/der_derive/0.7.3/download", + "sha256": "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18" } }, "targets": [ @@ -17819,22 +17850,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.7.2" + "version": "0.7.3" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -17843,14 +17874,14 @@ ], "license_file": "LICENSE-APACHE" }, - "deranged 0.3.9": { + "deranged 0.3.11": { "name": "deranged", - "version": "0.3.9", + "version": "0.3.11", "package_url": "https://github.com/jhpratt/deranged", "repository": { "Http": { - "url": "https://static.crates.io/crates/deranged/0.3.9/download", - "sha256": "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" + "url": "https://static.crates.io/crates/deranged/0.3.11/download", + "sha256": "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" } }, "targets": [ @@ -17890,7 +17921,7 @@ "selects": {} }, "edition": "2021", - "version": "0.3.9" + "version": "0.3.11" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -17938,15 +17969,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -17961,14 +17992,14 @@ ], "license_file": "LICENSE" }, - "derive_arbitrary 1.3.2": { + "derive_arbitrary 1.4.1": { "name": "derive_arbitrary", - "version": "1.3.2", + "version": "1.4.1", "package_url": "https://github.com/rust-fuzz/arbitrary", "repository": { "Http": { - "url": "https://static.crates.io/crates/derive_arbitrary/1.3.2/download", - "sha256": "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" + "url": "https://static.crates.io/crates/derive_arbitrary/1.4.1/download", + "sha256": "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" } }, "targets": [ @@ -17993,22 +18024,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.3.2" + "version": "1.4.1" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -18017,14 +18048,14 @@ ], "license_file": "LICENSE-APACHE" }, - "derive_more 0.99.17": { + "derive_more 0.99.18": { "name": "derive_more", - "version": "0.99.17", + "version": "0.99.18", "package_url": "https://github.com/JelteF/derive_more", "repository": { "Http": { - "url": "https://static.crates.io/crates/derive_more/0.99.17/download", - "sha256": "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" + "url": "https://static.crates.io/crates/derive_more/0.99.18/download", + "sha256": "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" } }, "targets": [ @@ -18084,22 +18115,137 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 1.0.109", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.99.17" + "version": "0.99.18" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, + "derive_more 1.0.0": { + "name": "derive_more", + "version": "1.0.0", + "package_url": "https://github.com/JelteF/derive_more", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/derive_more/1.0.0/download", + "sha256": "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" + } + }, + "targets": [ + { + "Library": { + "crate_name": "derive_more", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "derive_more", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "from" + ], + "selects": {} + }, + "edition": "2021", + "proc_macro_deps": { + "common": [ + { + "id": "derive_more-impl 1.0.0", + "target": "derive_more_impl" + } + ], + "selects": {} + }, + "version": "1.0.0" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, + "derive_more-impl 1.0.0": { + "name": "derive_more-impl", + "version": "1.0.0", + "package_url": "https://github.com/JelteF/derive_more", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/derive_more-impl/1.0.0/download", + "sha256": "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "derive_more_impl", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "derive_more_impl", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "from" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "proc-macro2 1.0.93", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.38", + "target": "quote" + }, + { + "id": "syn 2.0.96", + "target": "syn" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "1.0.0" }, "license": "MIT", "license_ids": [ @@ -18289,7 +18435,7 @@ "target": "block_buffer" }, { - "id": "const-oid 0.9.5", + "id": "const-oid 0.9.6", "target": "const_oid" }, { @@ -18352,15 +18498,15 @@ "target": "addr" }, { - "id": "aide 0.13.4", + "id": "aide 0.13.5", "target": "aide" }, { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "arbitrary 1.3.2", + "id": "arbitrary 1.4.1", "target": "arbitrary" }, { @@ -18368,7 +18514,7 @@ "target": "arc_swap" }, { - "id": "arrayvec 0.7.4", + "id": "arrayvec 0.7.6", "target": "arrayvec" }, { @@ -18412,7 +18558,7 @@ "target": "backoff" }, { - "id": "backon 0.4.1", + "id": "backon 0.4.4", "target": "backon" }, { @@ -18436,7 +18582,7 @@ "target": "bindgen" }, { - "id": "bip32 0.5.1", + "id": "bip32 0.5.2", "target": "bip32" }, { @@ -18448,7 +18594,7 @@ "target": "bitcoin" }, { - "id": "bitcoin 0.32.2", + "id": "bitcoin 0.32.5", "target": "bitcoin", "alias": "bitcoin_0_32" }, @@ -18465,7 +18611,7 @@ "target": "bitflags" }, { - "id": "bs58 0.5.0", + "id": "bs58 0.5.1", "target": "bs58" }, { @@ -18477,7 +18623,7 @@ "target": "build_info_build" }, { - "id": "by_address 1.1.0", + "id": "by_address 1.2.1", "target": "by_address" }, { @@ -18493,7 +18639,7 @@ "target": "bytes" }, { - "id": "cached 0.49.2", + "id": "cached 0.49.3", "target": "cached" }, { @@ -18505,11 +18651,11 @@ "target": "canbench_rs" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "candid_parser 0.1.2", + "id": "candid_parser 0.1.4", "target": "candid_parser" }, { @@ -18517,7 +18663,7 @@ "target": "cargo_metadata" }, { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { @@ -18533,11 +18679,11 @@ "target": "chacha20poly1305" }, { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { - "id": "ciborium 0.2.1", + "id": "ciborium 0.2.2", "target": "ciborium" }, { @@ -18545,7 +18691,7 @@ "target": "cidr" }, { - "id": "clap 4.5.20", + "id": "clap 4.5.26", "target": "clap" }, { @@ -18553,11 +18699,11 @@ "target": "cloudflare" }, { - "id": "colored 2.0.4", + "id": "colored 2.2.0", "target": "colored" }, { - "id": "comparable 0.5.4", + "id": "comparable 0.5.5", "target": "comparable" }, { @@ -18569,7 +18715,7 @@ "target": "convert_case" }, { - "id": "crc32fast 1.3.2", + "id": "crc32fast 1.4.2", "target": "crc32fast" }, { @@ -18581,11 +18727,11 @@ "target": "crossbeam" }, { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { - "id": "csv 1.3.0", + "id": "csv 1.3.1", "target": "csv" }, { @@ -18605,7 +18751,7 @@ "target": "dashmap" }, { - "id": "dyn-clone 1.0.14", + "id": "dyn-clone 1.0.17", "target": "dyn_clone" }, { @@ -18621,15 +18767,15 @@ "target": "erased_serde" }, { - "id": "escargot 0.5.8", + "id": "escargot 0.5.13", "target": "escargot" }, { - "id": "ethers-core 2.0.10", + "id": "ethers-core 2.0.14", "target": "ethers_core" }, { - "id": "ethnum 1.4.0", + "id": "ethnum 1.5.0", "target": "ethnum" }, { @@ -18641,7 +18787,7 @@ "target": "exec" }, { - "id": "eyre 0.6.8", + "id": "eyre 0.6.12", "target": "eyre" }, { @@ -18649,7 +18795,7 @@ "target": "ff" }, { - "id": "flate2 1.0.31", + "id": "flate2 1.0.35", "target": "flate2" }, { @@ -18657,7 +18803,7 @@ "target": "form_urlencoded" }, { - "id": "fqdn 0.3.11", + "id": "fqdn 0.3.12", "target": "fqdn" }, { @@ -18677,7 +18823,7 @@ "target": "get_if_addrs" }, { - "id": "getrandom 0.2.10", + "id": "getrandom 0.2.15", "target": "getrandom" }, { @@ -18725,11 +18871,11 @@ "target": "humantime_serde" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { @@ -18805,7 +18951,7 @@ "target": "ic_sha3" }, { - "id": "ic-stable-structures 0.6.5", + "id": "ic-stable-structures 0.6.7", "target": "ic_stable_structures" }, { @@ -18825,7 +18971,7 @@ "target": "ic_verify_bls_signature" }, { - "id": "ic-wasm 0.8.4", + "id": "ic-wasm 0.8.6", "target": "ic_wasm" }, { @@ -18857,19 +19003,19 @@ "target": "idna" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "indicatif 0.17.7", + "id": "indicatif 0.17.9", "target": "indicatif" }, { - "id": "inferno 0.12.0", + "id": "inferno 0.12.1", "target": "inferno" }, { - "id": "insta 1.34.0", + "id": "insta 1.42.0", "target": "insta" }, { @@ -18889,7 +19035,7 @@ "target": "isocountry" }, { - "id": "itertools 0.12.0", + "id": "itertools 0.12.1", "target": "itertools" }, { @@ -18913,7 +19059,7 @@ "target": "kube" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -18921,7 +19067,7 @@ "target": "leb128" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -18929,7 +19075,7 @@ "target": "libflate" }, { - "id": "libfuzzer-sys 0.4.7", + "id": "libfuzzer-sys 0.4.8", "target": "libfuzzer_sys" }, { @@ -18949,7 +19095,7 @@ "target": "lmdb_sys" }, { - "id": "local-ip-address 0.5.6", + "id": "local-ip-address 0.5.7", "target": "local_ip_address" }, { @@ -18981,15 +19127,15 @@ "target": "minicbor" }, { - "id": "mockall 0.13.0", + "id": "mockall 0.13.1", "target": "mockall" }, { - "id": "mockito 1.2.0", + "id": "mockito 1.6.1", "target": "mockito" }, { - "id": "moka 0.12.8", + "id": "moka 0.12.10", "target": "moka" }, { @@ -19025,7 +19171,7 @@ "target": "num_cpus" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -19038,7 +19184,7 @@ "alias": "opentelemetry_0_20_0" }, { - "id": "opentelemetry 0.27.0", + "id": "opentelemetry 0.27.1", "target": "opentelemetry" }, { @@ -19062,11 +19208,11 @@ "target": "pairing" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { - "id": "pcre2 0.2.6", + "id": "pcre2 0.2.9", "target": "pcre2" }, { @@ -19074,11 +19220,11 @@ "target": "pem" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "ping 0.5.0", + "id": "ping 0.5.2", "target": "ping" }, { @@ -19086,7 +19232,7 @@ "target": "pkcs8" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" }, { @@ -19094,7 +19240,7 @@ "target": "pprof" }, { - "id": "predicates 3.1.2", + "id": "predicates 3.1.3", "target": "predicates" }, { @@ -19102,15 +19248,15 @@ "target": "pretty_bytes" }, { - "id": "pretty_assertions 1.4.0", + "id": "pretty_assertions 1.4.1", "target": "pretty_assertions" }, { - "id": "priority-queue 1.3.2", + "id": "priority-queue 1.4.0", "target": "priority_queue" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { @@ -19122,24 +19268,24 @@ "target": "prometheus" }, { - "id": "prometheus-parse 0.2.4", + "id": "prometheus-parse 0.2.5", "target": "prometheus_parse" }, { - "id": "proptest 1.5.0", + "id": "proptest 1.6.0", "target": "proptest" }, { - "id": "prost 0.12.2", + "id": "prost 0.12.6", "target": "prost", "alias": "prost_0_12_0" }, { - "id": "prost 0.13.3", + "id": "prost 0.13.4", "target": "prost" }, { - "id": "prost-build 0.13.3", + "id": "prost-build 0.13.4", "target": "prost_build" }, { @@ -19147,7 +19293,7 @@ "target": "protobuf" }, { - "id": "publicsuffix 2.2.3", + "id": "publicsuffix 2.3.0", "target": "publicsuffix" }, { @@ -19155,15 +19301,15 @@ "target": "quickcheck" }, { - "id": "quinn 0.11.5", + "id": "quinn 0.11.6", "target": "quinn" }, { - "id": "quinn-udp 0.5.5", + "id": "quinn-udp 0.5.9", "target": "quinn_udp" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -19191,23 +19337,23 @@ "target": "rayon" }, { - "id": "rcgen 0.13.1", + "id": "rcgen 0.13.2", "target": "rcgen" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { - "id": "reqwest 0.12.9", + "id": "reqwest 0.12.12", "target": "reqwest" }, { - "id": "rgb 0.8.37", + "id": "rgb 0.8.50", "target": "rgb" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { @@ -19227,7 +19373,7 @@ "target": "rolling_file" }, { - "id": "rsa 0.9.6", + "id": "rsa 0.9.7", "target": "rsa" }, { @@ -19235,7 +19381,7 @@ "target": "rstest" }, { - "id": "rusb 0.9.3", + "id": "rusb 0.9.4", "target": "rusb" }, { @@ -19247,7 +19393,7 @@ "target": "rust_decimal" }, { - "id": "rustc-demangle 0.1.23", + "id": "rustc-demangle 0.1.24", "target": "rustc_demangle" }, { @@ -19255,7 +19401,7 @@ "target": "rustc_hash" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { @@ -19267,7 +19413,7 @@ "target": "rusty_fork" }, { - "id": "schemars 0.8.16", + "id": "schemars 0.8.21", "target": "schemars" }, { @@ -19287,7 +19433,7 @@ "target": "secp256k1" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -19307,7 +19453,7 @@ "target": "serde_cbor" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -19339,7 +19485,7 @@ "target": "signature" }, { - "id": "simple_asn1 0.6.2", + "id": "simple_asn1 0.6.3", "target": "simple_asn1" }, { @@ -19371,7 +19517,7 @@ "target": "slog_term" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { @@ -19387,7 +19533,7 @@ "target": "strum" }, { - "id": "stubborn-io 0.3.2", + "id": "stubborn-io 0.3.5", "target": "stubborn_io" }, { @@ -19399,7 +19545,7 @@ "target": "syn" }, { - "id": "tar 0.4.39", + "id": "tar 0.4.43", "target": "tar" }, { @@ -19407,7 +19553,7 @@ "target": "tarpc" }, { - "id": "tempfile 3.12.0", + "id": "tempfile 3.15.0", "target": "tempfile" }, { @@ -19415,11 +19561,11 @@ "target": "tester" }, { - "id": "textplots 0.8.4", + "id": "textplots 0.8.6", "target": "textplots" }, { - "id": "thiserror 2.0.3", + "id": "thiserror 2.0.11", "target": "thiserror" }, { @@ -19439,11 +19585,11 @@ "target": "tikv_jemallocator" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -19455,7 +19601,7 @@ "target": "tokio_metrics" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -19491,7 +19637,7 @@ "target": "tonic_build" }, { - "id": "tower 0.5.1", + "id": "tower 0.5.2", "target": "tower" }, { @@ -19507,7 +19653,7 @@ "target": "tower_test" }, { - "id": "tower_governor 0.4.2", + "id": "tower_governor 0.4.3", "target": "tower_governor" }, { @@ -19547,11 +19693,11 @@ "target": "turmoil" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" }, { - "id": "uuid 1.11.0", + "id": "uuid 1.12.0", "target": "uuid" }, { @@ -19559,7 +19705,7 @@ "target": "vsock" }, { - "id": "walkdir 2.3.3", + "id": "walkdir 2.5.0", "target": "walkdir" }, { @@ -19567,7 +19713,7 @@ "target": "warp" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" }, { @@ -19587,11 +19733,11 @@ "target": "wasmprinter" }, { - "id": "wasmtime 28.0.0", + "id": "wasmtime 28.0.1", "target": "wasmtime" }, { - "id": "wasmtime-environ 28.0.0", + "id": "wasmtime-environ 28.0.1", "target": "wasmtime_environ" }, { @@ -19599,7 +19745,7 @@ "target": "wast" }, { - "id": "wat 1.212.0", + "id": "wat 1.223.0", "target": "wat" }, { @@ -19645,11 +19791,11 @@ "proc_macro_deps": { "common": [ { - "id": "async-recursion 1.0.5", + "id": "async-recursion 1.1.1", "target": "async_recursion" }, { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" }, { @@ -19673,7 +19819,7 @@ "target": "paste" }, { - "id": "proptest-derive 0.5.0", + "id": "proptest-derive 0.5.1", "target": "proptest_derive" }, { @@ -19681,7 +19827,7 @@ "target": "rust_decimal_macros" }, { - "id": "rustversion 1.0.14", + "id": "rustversion 1.0.19", "target": "rustversion" }, { @@ -19839,13 +19985,13 @@ "selects": { "cfg(target_os = \"redox\")": [ { - "id": "redox_users 0.4.3", + "id": "redox_users 0.4.6", "target": "redox_users" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -19901,13 +20047,13 @@ "selects": { "cfg(target_os = \"redox\")": [ { - "id": "redox_users 0.4.3", + "id": "redox_users 0.4.6", "target": "redox_users" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -19929,14 +20075,14 @@ ], "license_file": "LICENSE-APACHE" }, - "displaydoc 0.2.4": { + "displaydoc 0.2.5": { "name": "displaydoc", - "version": "0.2.4", + "version": "0.2.5", "package_url": "https://github.com/yaahc/displaydoc", "repository": { "Http": { - "url": "https://static.crates.io/crates/displaydoc/0.2.4/download", - "sha256": "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" + "url": "https://static.crates.io/crates/displaydoc/0.2.5/download", + "sha256": "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" } }, "targets": [ @@ -19968,22 +20114,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, - "edition": "2018", - "version": "0.2.4" + "edition": "2021", + "version": "0.2.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -20136,7 +20282,7 @@ "deps": { "common": [ { - "id": "colored 2.0.4", + "id": "colored 2.2.0", "target": "colored" }, { @@ -20195,14 +20341,14 @@ ], "license_file": "LICENSE-APACHE" }, - "dtoa-short 0.3.4": { + "dtoa-short 0.3.5": { "name": "dtoa-short", - "version": "0.3.4", + "version": "0.3.5", "package_url": "https://github.com/upsuper/dtoa-short", "repository": { "Http": { - "url": "https://static.crates.io/crates/dtoa-short/0.3.4/download", - "sha256": "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74" + "url": "https://static.crates.io/crates/dtoa-short/0.3.5/download", + "sha256": "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" } }, "targets": [ @@ -20234,7 +20380,7 @@ "selects": {} }, "edition": "2015", - "version": "0.3.4" + "version": "0.3.5" }, "license": "MPL-2.0", "license_ids": [ @@ -20293,14 +20439,14 @@ "license_ids": [], "license_file": "LICENSE" }, - "dyn-clone 1.0.14": { + "dyn-clone 1.0.17": { "name": "dyn-clone", - "version": "1.0.14", + "version": "1.0.17", "package_url": "https://github.com/dtolnay/dyn-clone", "repository": { "Http": { - "url": "https://static.crates.io/crates/dyn-clone/1.0.14/download", - "sha256": "23d2f3407d9a573d666de4b5bdf10569d73ca9478087346697dcbae6244bfbcd" + "url": "https://static.crates.io/crates/dyn-clone/1.0.17/download", + "sha256": "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" } }, "targets": [ @@ -20323,7 +20469,7 @@ "**" ], "edition": "2018", - "version": "1.0.14" + "version": "1.0.17" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -20382,7 +20528,7 @@ "deps": { "common": [ { - "id": "der 0.7.8", + "id": "der 0.7.9", "target": "der" }, { @@ -20541,7 +20687,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -20703,11 +20849,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -20735,14 +20881,14 @@ ], "license_file": "LICENSE" }, - "ego-tree 0.6.2": { + "ego-tree 0.6.3": { "name": "ego-tree", - "version": "0.6.2", - "package_url": "https://github.com/programble/ego-tree", + "version": "0.6.3", + "package_url": "https://github.com/rust-scraper/ego-tree", "repository": { "Http": { - "url": "https://static.crates.io/crates/ego-tree/0.6.2/download", - "sha256": "3a68a4904193147e0a8dec3314640e6db742afd5f6e634f428a6af230d9b3591" + "url": "https://static.crates.io/crates/ego-tree/0.6.3/download", + "sha256": "12a0bb14ac04a9fcf170d0bbbef949b44cc492f4452bd20c095636956f653642" } }, "targets": [ @@ -20765,7 +20911,7 @@ "**" ], "edition": "2015", - "version": "0.6.2" + "version": "0.6.3" }, "license": "ISC", "license_ids": [ @@ -20773,14 +20919,14 @@ ], "license_file": "LICENSE" }, - "either 1.9.0": { + "either 1.13.0": { "name": "either", - "version": "1.9.0", - "package_url": "https://github.com/bluss/either", + "version": "1.13.0", + "package_url": "https://github.com/rayon-rs/either", "repository": { "Http": { - "url": "https://static.crates.io/crates/either/1.9.0/download", - "sha256": "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" + "url": "https://static.crates.io/crates/either/1.13.0/download", + "sha256": "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" } }, "targets": [ @@ -20810,7 +20956,7 @@ "selects": {} }, "edition": "2018", - "version": "1.9.0" + "version": "1.13.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -20871,7 +21017,7 @@ "target": "base16ct" }, { - "id": "crypto-bigint 0.5.3", + "id": "crypto-bigint 0.5.5", "target": "crypto_bigint" }, { @@ -20956,12 +21102,6 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "alloc" - ], - "selects": {} - }, "edition": "2021", "version": "0.4.0" }, @@ -20972,14 +21112,53 @@ ], "license_file": "LICENSE-APACHE" }, - "ena 0.14.2": { + "embedded-io 0.6.1": { + "name": "embedded-io", + "version": "0.6.1", + "package_url": "https://github.com/rust-embedded/embedded-hal", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/embedded-io/0.6.1/download", + "sha256": "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" + } + }, + "targets": [ + { + "Library": { + "crate_name": "embedded_io", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "embedded_io", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2021", + "version": "0.6.1" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "ena 0.14.3": { "name": "ena", - "version": "0.14.2", + "version": "0.14.3", "package_url": "https://github.com/rust-lang/ena", "repository": { "Http": { - "url": "https://static.crates.io/crates/ena/0.14.2/download", - "sha256": "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1" + "url": "https://static.crates.io/crates/ena/0.14.3/download", + "sha256": "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5" } }, "targets": [ @@ -21004,14 +21183,14 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" } ], "selects": {} }, "edition": "2015", - "version": "0.14.2" + "version": "0.14.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -21066,14 +21245,60 @@ ], "license_file": "LICENSE-APACHE" }, - "encoding_rs 0.8.33": { + "encode_unicode 1.0.0": { + "name": "encode_unicode", + "version": "1.0.0", + "package_url": "https://github.com/tormol/encode_unicode", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/encode_unicode/1.0.0/download", + "sha256": "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" + } + }, + "targets": [ + { + "Library": { + "crate_name": "encode_unicode", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "encode_unicode", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "std" + ], + "selects": {} + }, + "edition": "2021", + "version": "1.0.0" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "encoding_rs 0.8.35": { "name": "encoding_rs", - "version": "0.8.33", + "version": "0.8.35", "package_url": "https://github.com/hsivonen/encoding_rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/encoding_rs/0.8.33/download", - "sha256": "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" + "url": "https://static.crates.io/crates/encoding_rs/0.8.35/download", + "sha256": "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" } }, "targets": [ @@ -21112,7 +21337,7 @@ "selects": {} }, "edition": "2018", - "version": "0.8.33" + "version": "0.8.35" }, "license": "(Apache-2.0 OR MIT) AND BSD-3-Clause", "license_ids": [ @@ -21158,11 +21383,11 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -21182,14 +21407,14 @@ ], "license_file": "LICENSE-APACHE" }, - "enum-as-inner 0.6.0": { + "enum-as-inner 0.6.1": { "name": "enum-as-inner", - "version": "0.6.0", + "version": "0.6.1", "package_url": "https://github.com/bluejekyll/enum-as-inner", "repository": { "Http": { - "url": "https://static.crates.io/crates/enum-as-inner/0.6.0/download", - "sha256": "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" + "url": "https://static.crates.io/crates/enum-as-inner/0.6.1/download", + "sha256": "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" } }, "targets": [ @@ -21214,26 +21439,26 @@ "deps": { "common": [ { - "id": "heck 0.4.1", + "id": "heck 0.5.0", "target": "heck" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.6.0" + "version": "0.6.1" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -21282,15 +21507,15 @@ "target": "num_traits" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -21389,14 +21614,14 @@ ], "license_file": "LICENSE" }, - "env_filter 0.1.2": { + "env_filter 0.1.3": { "name": "env_filter", - "version": "0.1.2", + "version": "0.1.3", "package_url": "https://github.com/rust-cli/env_logger", "repository": { "Http": { - "url": "https://static.crates.io/crates/env_filter/0.1.2/download", - "sha256": "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" + "url": "https://static.crates.io/crates/env_filter/0.1.3/download", + "sha256": "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" } }, "targets": [ @@ -21421,14 +21646,14 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" } ], "selects": {} }, "edition": "2021", - "version": "0.1.2" + "version": "0.1.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -21475,11 +21700,11 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], @@ -21495,14 +21720,14 @@ ], "license_file": "LICENSE-APACHE" }, - "env_logger 0.11.2": { + "env_logger 0.11.6": { "name": "env_logger", - "version": "0.11.2", + "version": "0.11.6", "package_url": "https://github.com/rust-cli/env_logger", "repository": { "Http": { - "url": "https://static.crates.io/crates/env_logger/0.11.2/download", - "sha256": "6c012a26a7f605efc424dd53697843a72be7dc86ad2d01f7814337794a12231d" + "url": "https://static.crates.io/crates/env_logger/0.11.6/download", + "sha256": "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0" } }, "targets": [ @@ -21527,18 +21752,18 @@ "deps": { "common": [ { - "id": "env_filter 0.1.2", + "id": "env_filter 0.1.3", "target": "env_filter" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" } ], "selects": {} }, "edition": "2021", - "version": "0.11.2" + "version": "0.11.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -21626,15 +21851,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -21790,19 +22015,19 @@ ], "cfg(target_os = \"hermit\")": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -21824,14 +22049,14 @@ ], "license_file": "LICENSE-APACHE" }, - "errno 0.3.8": { + "errno 0.3.10": { "name": "errno", - "version": "0.3.8", + "version": "0.3.10", "package_url": "https://github.com/lambda-fairy/rust-errno", "repository": { "Http": { - "url": "https://static.crates.io/crates/errno/0.3.8/download", - "sha256": "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" + "url": "https://static.crates.io/crates/errno/0.3.10/download", + "sha256": "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" } }, "targets": [ @@ -21864,32 +22089,32 @@ "selects": { "cfg(target_os = \"hermit\")": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(windows)": [ { - "id": "windows-sys 0.52.0", + "id": "windows-sys 0.59.0", "target": "windows_sys" } ] } }, "edition": "2018", - "version": "0.3.8" + "version": "0.3.10" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -21946,7 +22171,7 @@ "target": "build_script_build" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -21965,7 +22190,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -21978,14 +22203,14 @@ ], "license_file": "LICENSE" }, - "escargot 0.5.8": { + "escargot 0.5.13": { "name": "escargot", - "version": "0.5.8", + "version": "0.5.13", "package_url": "https://github.com/crate-ci/escargot.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/escargot/0.5.8/download", - "sha256": "768064bd3a0e2bedcba91dc87ace90beea91acc41b6a01a3ca8e9aa8827461bf" + "url": "https://static.crates.io/crates/escargot/0.5.13/download", + "sha256": "05a3ac187a16b5382fef8c69fd1bad123c67b7cf3932240a2d43dcdd32cded88" } }, "targets": [ @@ -22028,15 +22253,15 @@ "deps": { "common": [ { - "id": "escargot 0.5.8", + "id": "escargot 0.5.13", "target": "build_script_build" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -22044,14 +22269,14 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], "selects": {} }, "edition": "2021", - "version": "0.5.8" + "version": "0.5.13" }, "build_script_attrs": { "compile_data_glob": [ @@ -22122,11 +22347,11 @@ "target": "hex" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -22134,7 +22359,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -22142,7 +22367,7 @@ "target": "sha3" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -22226,7 +22451,7 @@ "target": "impl_serde" }, { - "id": "scale-info 2.9.0", + "id": "scale-info 2.11.6", "target": "scale_info" }, { @@ -22317,7 +22542,7 @@ "target": "primitive_types" }, { - "id": "scale-info 2.9.0", + "id": "scale-info 2.11.6", "target": "scale_info" }, { @@ -22338,14 +22563,14 @@ ], "license_file": null }, - "ethers-core 2.0.10": { + "ethers-core 2.0.14": { "name": "ethers-core", - "version": "2.0.10", + "version": "2.0.14", "package_url": "https://github.com/gakonst/ethers-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ethers-core/2.0.10/download", - "sha256": "c0a17f0708692024db9956b31d7a20163607d2745953f5ae8125ab368ba280ad" + "url": "https://static.crates.io/crates/ethers-core/2.0.14/download", + "sha256": "82d80cc6ad30b14a48ab786523af33b37f28a8623fc06afd55324816ef18fb1f" } }, "targets": [ @@ -22370,7 +22595,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.4", + "id": "arrayvec 0.7.6", "target": "arrayvec" }, { @@ -22378,11 +22603,11 @@ "target": "bytes" }, { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { - "id": "const-hex 1.9.1", + "id": "const-hex 1.14.0", "target": "const_hex", "alias": "hex" }, @@ -22403,7 +22628,7 @@ "target": "k256" }, { - "id": "num_enum 0.7.0", + "id": "num_enum 0.7.3", "target": "num_enum" }, { @@ -22423,15 +22648,15 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "strum 0.25.0", + "id": "strum 0.26.3", "target": "strum" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -22439,21 +22664,21 @@ "target": "tiny_keccak" }, { - "id": "unicode-xid 0.2.4", + "id": "unicode-xid 0.2.6", "target": "unicode_xid" } ], "selects": { "cfg(not(target_arch = \"wasm32\"))": [ { - "id": "tempfile 3.12.0", + "id": "tempfile 3.15.0", "target": "tempfile" } ] } }, "edition": "2021", - "version": "2.0.10" + "version": "2.0.14" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -22462,14 +22687,14 @@ ], "license_file": null }, - "ethnum 1.4.0": { + "ethnum 1.5.0": { "name": "ethnum", - "version": "1.4.0", + "version": "1.5.0", "package_url": "https://github.com/nlordell/ethnum-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ethnum/1.4.0/download", - "sha256": "6c8ff382b2fa527fb7fb06eeebfc5bbb3f17e3cc6b9d70b006c41daa8824adac" + "url": "https://static.crates.io/crates/ethnum/1.5.0/download", + "sha256": "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c" } }, "targets": [ @@ -22507,7 +22732,7 @@ "selects": {} }, "edition": "2021", - "version": "1.4.0" + "version": "1.5.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -22555,266 +22780,14 @@ ], "license_file": "LICENSE-APACHE" }, - "event-listener 4.0.3": { - "name": "event-listener", - "version": "4.0.3", - "package_url": "https://github.com/smol-rs/event-listener", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/event-listener/4.0.3/download", - "sha256": "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" - } - }, - "targets": [ - { - "Library": { - "crate_name": "event_listener", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "event_listener", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "parking", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "concurrent-queue 2.5.0", - "target": "concurrent_queue" - }, - { - "id": "pin-project-lite 0.2.13", - "target": "pin_project_lite" - } - ], - "selects": { - "aarch64-apple-darwin": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "aarch64-apple-ios": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "aarch64-apple-ios-sim": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "aarch64-linux-android": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "aarch64-pc-windows-msvc": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "aarch64-unknown-fuchsia": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "aarch64-unknown-linux-gnu": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "aarch64-unknown-nixos-gnu": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "aarch64-unknown-nto-qnx710": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "arm-unknown-linux-gnueabi": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "armv7-linux-androideabi": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "armv7-unknown-linux-gnueabi": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "i686-apple-darwin": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "i686-linux-android": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "i686-pc-windows-msvc": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "i686-unknown-freebsd": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "i686-unknown-linux-gnu": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "powerpc-unknown-linux-gnu": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "riscv32imc-unknown-none-elf": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "riscv64gc-unknown-none-elf": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "s390x-unknown-linux-gnu": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "thumbv7em-none-eabi": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "thumbv8m.main-none-eabi": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "x86_64-apple-darwin": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "x86_64-apple-ios": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "x86_64-linux-android": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "x86_64-pc-windows-msvc": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "x86_64-unknown-freebsd": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "x86_64-unknown-fuchsia": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "x86_64-unknown-linux-gnu": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ], - "x86_64-unknown-none": [ - { - "id": "parking 2.1.1", - "target": "parking" - } - ] - } - }, - "edition": "2021", - "version": "4.0.3" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "event-listener 5.3.1": { + "event-listener 5.4.0": { "name": "event-listener", - "version": "5.3.1", + "version": "5.4.0", "package_url": "https://github.com/smol-rs/event-listener", "repository": { "Http": { - "url": "https://static.crates.io/crates/event-listener/5.3.1/download", - "sha256": "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" + "url": "https://static.crates.io/crates/event-listener/5.4.0/download", + "sha256": "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" } }, "targets": [ @@ -22851,207 +22824,207 @@ "target": "concurrent_queue" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "aarch64-apple-ios": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "aarch64-apple-ios-sim": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "aarch64-linux-android": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "aarch64-pc-windows-msvc": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "aarch64-unknown-fuchsia": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "aarch64-unknown-linux-gnu": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "arm-unknown-linux-gnueabi": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "armv7-linux-androideabi": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "i686-apple-darwin": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "i686-linux-android": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "i686-pc-windows-msvc": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "i686-unknown-freebsd": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "i686-unknown-linux-gnu": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "powerpc-unknown-linux-gnu": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "riscv32imc-unknown-none-elf": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "riscv64gc-unknown-none-elf": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "s390x-unknown-linux-gnu": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "thumbv7em-none-eabi": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "thumbv8m.main-none-eabi": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-apple-darwin": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-apple-ios": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-linux-android": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-pc-windows-msvc": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-unknown-freebsd": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-unknown-fuchsia": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-unknown-linux-gnu": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-unknown-none": [ { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" } ] } }, "edition": "2021", - "version": "5.3.1" + "version": "5.4.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -23060,72 +23033,14 @@ ], "license_file": "LICENSE-APACHE" }, - "event-listener-strategy 0.4.0": { + "event-listener-strategy 0.5.3": { "name": "event-listener-strategy", - "version": "0.4.0", - "package_url": "https://github.com/smol-rs/event-listener", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/event-listener-strategy/0.4.0/download", - "sha256": "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" - } - }, - "targets": [ - { - "Library": { - "crate_name": "event_listener_strategy", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "event_listener_strategy", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "event-listener 4.0.3", - "target": "event_listener" - }, - { - "id": "pin-project-lite 0.2.13", - "target": "pin_project_lite" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.4.0" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "event-listener-strategy 0.5.2": { - "name": "event-listener-strategy", - "version": "0.5.2", + "version": "0.5.3", "package_url": "https://github.com/smol-rs/event-listener-strategy", "repository": { "Http": { - "url": "https://static.crates.io/crates/event-listener-strategy/0.5.2/download", - "sha256": "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" + "url": "https://static.crates.io/crates/event-listener-strategy/0.5.3/download", + "sha256": "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2" } }, "targets": [ @@ -23156,18 +23071,18 @@ "deps": { "common": [ { - "id": "event-listener 5.3.1", + "id": "event-listener 5.4.0", "target": "event_listener" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], "selects": {} }, "edition": "2021", - "version": "0.5.2" + "version": "0.5.3" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -23208,7 +23123,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -23232,11 +23147,11 @@ "target": "strum" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" } ], @@ -23287,7 +23202,7 @@ "target": "errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -23341,14 +23256,14 @@ ], "license_file": "LICENSE" }, - "eyre 0.6.8": { + "eyre 0.6.12": { "name": "eyre", - "version": "0.6.8", - "package_url": "https://github.com/yaahc/eyre", + "version": "0.6.12", + "package_url": "https://github.com/eyre-rs/eyre", "repository": { "Http": { - "url": "https://static.crates.io/crates/eyre/0.6.8/download", - "sha256": "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb" + "url": "https://static.crates.io/crates/eyre/0.6.12/download", + "sha256": "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec" } }, "targets": [ @@ -23393,7 +23308,7 @@ "deps": { "common": [ { - "id": "eyre 0.6.8", + "id": "eyre 0.6.12", "target": "build_script_build" }, { @@ -23401,14 +23316,14 @@ "target": "indenter" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "selects": {} }, "edition": "2018", - "version": "0.6.8" + "version": "0.6.12" }, "build_script_attrs": { "compile_data_glob": [ @@ -23549,64 +23464,14 @@ ], "license_file": "LICENSE-APACHE" }, - "fastrand 1.9.0": { - "name": "fastrand", - "version": "1.9.0", - "package_url": "https://github.com/smol-rs/fastrand", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/fastrand/1.9.0/download", - "sha256": "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" - } - }, - "targets": [ - { - "Library": { - "crate_name": "fastrand", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "fastrand", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [], - "selects": { - "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ - { - "id": "instant 0.1.12", - "target": "instant" - } - ] - } - }, - "edition": "2018", - "version": "1.9.0" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "fastrand 2.2.0": { + "fastrand 2.3.0": { "name": "fastrand", - "version": "2.2.0", + "version": "2.3.0", "package_url": "https://github.com/smol-rs/fastrand", "repository": { "Http": { - "url": "https://static.crates.io/crates/fastrand/2.2.0/download", - "sha256": "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4" + "url": "https://static.crates.io/crates/fastrand/2.3.0/download", + "sha256": "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" } }, "targets": [ @@ -23637,7 +23502,7 @@ "selects": {} }, "edition": "2018", - "version": "2.2.0" + "version": "2.3.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -23763,14 +23628,14 @@ ], "license_file": "LICENSE-APACHE" }, - "fiat-crypto 0.2.6": { + "fiat-crypto 0.2.9": { "name": "fiat-crypto", - "version": "0.2.6", + "version": "0.2.9", "package_url": "https://github.com/mit-plv/fiat-crypto", "repository": { "Http": { - "url": "https://static.crates.io/crates/fiat-crypto/0.2.6/download", - "sha256": "1676f435fc1dadde4d03e43f5d62b259e1ce5f40bd4ffb21db2b42ebe59c1382" + "url": "https://static.crates.io/crates/fiat-crypto/0.2.9/download", + "sha256": "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" } }, "targets": [ @@ -23793,7 +23658,7 @@ "**" ], "edition": "2018", - "version": "0.2.6" + "version": "0.2.9" }, "license": "MIT OR Apache-2.0 OR BSD-1-Clause", "license_ids": [ @@ -23803,14 +23668,14 @@ ], "license_file": "LICENSE-APACHE" }, - "filetime 0.2.22": { + "filetime 0.2.25": { "name": "filetime", - "version": "0.2.22", + "version": "0.2.25", "package_url": "https://github.com/alexcrichton/filetime", "repository": { "Http": { - "url": "https://static.crates.io/crates/filetime/0.2.22/download", - "sha256": "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" + "url": "https://static.crates.io/crates/filetime/0.2.25/download", + "sha256": "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" } }, "targets": [ @@ -23842,26 +23707,26 @@ "selects": { "cfg(target_os = \"redox\")": [ { - "id": "redox_syscall 0.3.5", - "target": "syscall" + "id": "libredox 0.1.3", + "target": "libredox" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(windows)": [ { - "id": "windows-sys 0.48.0", + "id": "windows-sys 0.59.0", "target": "windows_sys" } ] } }, "edition": "2018", - "version": "0.2.22" + "version": "0.2.25" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -23918,14 +23783,14 @@ "target": "build_script_build" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "selects": { "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" } ], @@ -23950,7 +23815,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -24072,14 +23937,14 @@ ], "license_file": "LICENSE-APACHE" }, - "flagset 0.4.4": { + "flagset 0.4.6": { "name": "flagset", - "version": "0.4.4", + "version": "0.4.6", "package_url": "https://github.com/enarx/flagset", "repository": { "Http": { - "url": "https://static.crates.io/crates/flagset/0.4.4/download", - "sha256": "d52a7e408202050813e6f1d9addadcaafef3dca7530c7ddfb005d4081cce6779" + "url": "https://static.crates.io/crates/flagset/0.4.6/download", + "sha256": "b3ea1ec5f8307826a5b71094dd91fc04d4ae75d5709b20ad351c7fb4815c86ec" } }, "targets": [ @@ -24102,7 +23967,7 @@ "**" ], "edition": "2021", - "version": "0.4.4" + "version": "0.4.6" }, "license": "Apache-2.0", "license_ids": [ @@ -24110,14 +23975,14 @@ ], "license_file": "LICENSE" }, - "flate2 1.0.31": { + "flate2 1.0.35": { "name": "flate2", - "version": "1.0.31", + "version": "1.0.35", "package_url": "https://github.com/rust-lang/flate2-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/flate2/1.0.31/download", - "sha256": "7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920" + "url": "https://static.crates.io/crates/flate2/1.0.35/download", + "sha256": "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c" } }, "targets": [ @@ -24151,18 +24016,18 @@ "deps": { "common": [ { - "id": "crc32fast 1.3.2", + "id": "crc32fast 1.4.2", "target": "crc32fast" }, { - "id": "miniz_oxide 0.7.1", + "id": "miniz_oxide 0.8.3", "target": "miniz_oxide" } ], "selects": {} }, "edition": "2018", - "version": "1.0.31" + "version": "1.0.35" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -24171,14 +24036,14 @@ ], "license_file": "LICENSE-APACHE" }, - "float-cmp 0.9.0": { + "float-cmp 0.10.0": { "name": "float-cmp", - "version": "0.9.0", + "version": "0.10.0", "package_url": "https://github.com/mikedilger/float-cmp", "repository": { "Http": { - "url": "https://static.crates.io/crates/float-cmp/0.9.0/download", - "sha256": "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" + "url": "https://static.crates.io/crates/float-cmp/0.10.0/download", + "sha256": "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8" } }, "targets": [ @@ -24218,7 +24083,7 @@ "selects": {} }, "edition": "2018", - "version": "0.9.0" + "version": "0.10.0" }, "license": "MIT", "license_ids": [ @@ -24402,7 +24267,7 @@ "target": "nonempty" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -24417,14 +24282,14 @@ ], "license_file": "LICENSE.txt" }, - "fqdn 0.3.11": { + "fqdn 0.3.12": { "name": "fqdn", - "version": "0.3.11", + "version": "0.3.12", "package_url": "https://github.com/Orange-OpenSource/fqdn", "repository": { "Http": { - "url": "https://static.crates.io/crates/fqdn/0.3.11/download", - "sha256": "08b1eaa7dfddeab6036292995620bf0435712e619db6d7690605897e76975eb0" + "url": "https://static.crates.io/crates/fqdn/0.3.12/download", + "sha256": "eb540cf7bc4fe6df9d8f7f0c974cfd0dce8ed4e9e8884e73433b503ee78b4e7d" } }, "targets": [ @@ -24454,7 +24319,7 @@ "selects": {} }, "edition": "2021", - "version": "0.3.11" + "version": "0.3.12" }, "license": "MIT", "license_ids": [ @@ -24462,14 +24327,14 @@ ], "license_file": null }, - "fqdn 0.4.1": { + "fqdn 0.4.4": { "name": "fqdn", - "version": "0.4.1", + "version": "0.4.4", "package_url": "https://github.com/Orange-OpenSource/fqdn", "repository": { "Http": { - "url": "https://static.crates.io/crates/fqdn/0.4.1/download", - "sha256": "5eeee501d87b436020fcd3065cc981b5e4d22f2066735268b36b9d513d23e553" + "url": "https://static.crates.io/crates/fqdn/0.4.4/download", + "sha256": "8f66e93156d144bd3a9a970033d04c6fbfb4b641275d8eaa3ff83f5b9c232496" } }, "targets": [ @@ -24499,7 +24364,7 @@ "selects": {} }, "edition": "2021", - "version": "0.4.1" + "version": "0.4.4" }, "license": "MIT", "license_ids": [ @@ -24693,7 +24558,7 @@ "target": "mac" }, { - "id": "new_debug_unreachable 1.0.4", + "id": "new_debug_unreachable 1.0.6", "target": "debug_unreachable" } ], @@ -25010,14 +24875,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-lite 2.0.0": { + "futures-lite 2.6.0": { "name": "futures-lite", - "version": "2.0.0", + "version": "2.6.0", "package_url": "https://github.com/smol-rs/futures-lite", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-lite/2.0.0/download", - "sha256": "9c1155db57329dca6d018b61e76b1488ce9a2e5e44028cac420a5898f4fcef63" + "url": "https://static.crates.io/crates/futures-lite/2.6.0/download", + "sha256": "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" } }, "targets": [ @@ -25045,18 +24910,16 @@ "default", "fastrand", "futures-io", - "memchr", "parking", "race", - "std", - "waker-fn" + "std" ], "selects": {} }, "deps": { "common": [ { - "id": "fastrand 2.2.0", + "id": "fastrand 2.3.0", "target": "fastrand" }, { @@ -25068,26 +24931,18 @@ "target": "futures_io" }, { - "id": "memchr 2.6.4", - "target": "memchr" - }, - { - "id": "parking 2.1.1", + "id": "parking 2.2.1", "target": "parking" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" - }, - { - "id": "waker-fn 1.1.1", - "target": "waker_fn" } ], "selects": {} }, - "edition": "2018", - "version": "2.0.0" + "edition": "2021", + "version": "2.6.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -25128,15 +24983,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -25195,11 +25050,11 @@ "target": "futures_io" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" } @@ -25309,14 +25164,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-timer 3.0.2": { + "futures-timer 3.0.3": { "name": "futures-timer", - "version": "3.0.2", + "version": "3.0.3", "package_url": "https://github.com/async-rs/futures-timer", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-timer/3.0.2/download", - "sha256": "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" + "url": "https://static.crates.io/crates/futures-timer/3.0.3/download", + "sha256": "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" } }, "targets": [ @@ -25339,7 +25194,7 @@ "**" ], "edition": "2018", - "version": "3.0.2" + "version": "3.0.3" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -25419,11 +25274,11 @@ "target": "futures_task" }, { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -25543,6 +25398,104 @@ ], "license_file": "LICENSE-APACHE" }, + "generator 0.8.4": { + "name": "generator", + "version": "0.8.4", + "package_url": "https://github.com/Xudong-Huang/generator-rs.git", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/generator/0.8.4/download", + "sha256": "cc6bd114ceda131d3b1d665eba35788690ad37f5916457286b32ab6fd3c438dd" + } + }, + "targets": [ + { + "Library": { + "crate_name": "generator", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "generator", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "cfg-if 1.0.0", + "target": "cfg_if" + }, + { + "id": "generator 0.8.4", + "target": "build_script_build" + }, + { + "id": "log 0.4.25", + "target": "log" + } + ], + "selects": { + "cfg(unix)": [ + { + "id": "libc 0.2.169", + "target": "libc" + } + ], + "cfg(windows)": [ + { + "id": "windows 0.58.0", + "target": "windows" + } + ] + } + }, + "edition": "2021", + "version": "0.8.4" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ], + "proc_macro_deps": { + "common": [ + { + "id": "rustversion 1.0.19", + "target": "rustversion" + } + ], + "selects": {} + } + }, + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "generic-array 0.14.7": { "name": "generic-array", "version": "0.14.7", @@ -25621,7 +25574,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.4", + "id": "version_check 0.9.5", "target": "version_check" } ], @@ -25670,7 +25623,7 @@ "target": "c_linked_list" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -25747,7 +25700,7 @@ "target": "build_script_build" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -25813,7 +25766,7 @@ "deps": { "common": [ { - "id": "unicode-width 0.1.11", + "id": "unicode-width 0.1.14", "target": "unicode_width" } ], @@ -25829,14 +25782,14 @@ ], "license_file": "LICENSE-APACHE" }, - "getrandom 0.2.10": { + "getrandom 0.2.15": { "name": "getrandom", - "version": "0.2.10", + "version": "0.2.15", "package_url": "https://github.com/rust-random/getrandom", "repository": { "Http": { - "url": "https://static.crates.io/crates/getrandom/0.2.10/download", - "sha256": "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" + "url": "https://static.crates.io/crates/getrandom/0.2.15/download", + "sha256": "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" } }, "targets": [ @@ -25863,7 +25816,13 @@ "custom", "std" ], - "selects": {} + "selects": { + "wasm32-unknown-unknown": [ + "js", + "js-sys", + "wasm-bindgen" + ] + } }, "deps": { "common": [ @@ -25881,14 +25840,24 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } + ], + "wasm32-unknown-unknown": [ + { + "id": "js-sys 0.3.77", + "target": "js_sys" + }, + { + "id": "wasm-bindgen 0.2.100", + "target": "wasm_bindgen" + } ] } }, "edition": "2018", - "version": "0.2.10" + "version": "0.2.15" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -25967,52 +25936,6 @@ ], "license_file": "LICENSE-APACHE" }, - "gimli 0.28.0": { - "name": "gimli", - "version": "0.28.0", - "package_url": "https://github.com/gimli-rs/gimli", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/gimli/0.28.0/download", - "sha256": "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" - } - }, - "targets": [ - { - "Library": { - "crate_name": "gimli", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "gimli", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "read", - "read-core" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.28.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "gimli 0.31.1": { "name": "gimli", "version": "0.31.1", @@ -26054,7 +25977,7 @@ "deps": { "common": [ { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" } ], @@ -26070,14 +25993,14 @@ ], "license_file": "LICENSE-APACHE" }, - "glob 0.3.1": { + "glob 0.3.2": { "name": "glob", - "version": "0.3.1", + "version": "0.3.2", "package_url": "https://github.com/rust-lang/glob", "repository": { "Http": { - "url": "https://static.crates.io/crates/glob/0.3.1/download", - "sha256": "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" + "url": "https://static.crates.io/crates/glob/0.3.2/download", + "sha256": "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" } }, "targets": [ @@ -26100,7 +26023,7 @@ "**" ], "edition": "2015", - "version": "0.3.1" + "version": "0.3.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -26109,14 +26032,14 @@ ], "license_file": "LICENSE-APACHE" }, - "governor 0.6.0": { + "governor 0.6.3": { "name": "governor", - "version": "0.6.0", - "package_url": "https://github.com/antifuchs/governor.git", + "version": "0.6.3", + "package_url": "https://github.com/boinkor-net/governor.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/governor/0.6.0/download", - "sha256": "821239e5672ff23e2a7060901fa622950bbd80b649cdaadd78d1c1767ed14eb4" + "url": "https://static.crates.io/crates/governor/0.6.3/download", + "sha256": "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b" } }, "targets": [ @@ -26166,7 +26089,7 @@ "target": "futures" }, { - "id": "futures-timer 3.0.2", + "id": "futures-timer 3.0.3", "target": "futures_timer" }, { @@ -26178,11 +26101,15 @@ "target": "nonzero_ext" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { - "id": "quanta 0.11.1", + "id": "portable-atomic 1.10.0", + "target": "portable_atomic" + }, + { + "id": "quanta 0.12.5", "target": "quanta" }, { @@ -26192,12 +26119,16 @@ { "id": "smallvec 1.13.2", "target": "smallvec" + }, + { + "id": "spinning_top 0.3.0", + "target": "spinning_top" } ], "selects": {} }, "edition": "2018", - "version": "0.6.0" + "version": "0.6.3" }, "license": "MIT", "license_ids": [ @@ -26330,7 +26261,7 @@ "target": "http" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { @@ -26338,7 +26269,7 @@ "target": "slab" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -26361,14 +26292,14 @@ ], "license_file": "LICENSE" }, - "h2 0.4.4": { + "h2 0.4.7": { "name": "h2", - "version": "0.4.4", + "version": "0.4.7", "package_url": "https://github.com/hyperium/h2", "repository": { "Http": { - "url": "https://static.crates.io/crates/h2/0.4.4/download", - "sha256": "816ec7294445779408f36fe57bc5b7fc1cf59664059096c65f905c1c61f58069" + "url": "https://static.crates.io/crates/h2/0.4.7/download", + "sha256": "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e" } }, "targets": [ @@ -26392,6 +26323,10 @@ ], "deps": { "common": [ + { + "id": "atomic-waker 1.1.2", + "target": "atomic_waker" + }, { "id": "bytes 1.9.0", "target": "bytes" @@ -26408,16 +26343,12 @@ "id": "futures-sink 0.3.31", "target": "futures_sink" }, - { - "id": "futures-util 0.3.31", - "target": "futures_util" - }, { "id": "http 1.2.0", "target": "http" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { @@ -26425,7 +26356,7 @@ "target": "slab" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -26440,7 +26371,7 @@ "selects": {} }, "edition": "2021", - "version": "0.4.4" + "version": "0.4.7" }, "license": "MIT", "license_ids": [ @@ -26448,14 +26379,14 @@ ], "license_file": "LICENSE" }, - "half 1.8.2": { + "half 1.8.3": { "name": "half", - "version": "1.8.2", + "version": "1.8.3", "package_url": "https://github.com/starkat99/half-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/half/1.8.2/download", - "sha256": "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" + "url": "https://static.crates.io/crates/half/1.8.3/download", + "sha256": "1b43ede17f21864e81be2fa654110bf1e793774238d86ef8555c37e6519c0403" } }, "targets": [ @@ -26478,7 +26409,62 @@ "**" ], "edition": "2018", - "version": "1.8.2" + "version": "1.8.3" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE" + }, + "half 2.4.1": { + "name": "half", + "version": "2.4.1", + "package_url": "https://github.com/starkat99/half-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/half/2.4.1/download", + "sha256": "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" + } + }, + "targets": [ + { + "Library": { + "crate_name": "half", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "half", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "cfg-if 1.0.0", + "target": "cfg_if" + } + ], + "selects": { + "cfg(target_arch = \"spirv\")": [ + { + "id": "crunchy 0.2.2", + "target": "crunchy" + } + ] + } + }, + "edition": "2021", + "version": "2.4.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -26701,14 +26687,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hdrhistogram 7.5.2": { + "hdrhistogram 7.5.4": { "name": "hdrhistogram", - "version": "7.5.2", + "version": "7.5.4", "package_url": "https://github.com/HdrHistogram/HdrHistogram_rust.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/hdrhistogram/7.5.2/download", - "sha256": "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8" + "url": "https://static.crates.io/crates/hdrhistogram/7.5.4/download", + "sha256": "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d" } }, "targets": [ @@ -26744,7 +26730,7 @@ "selects": {} }, "edition": "2018", - "version": "7.5.2" + "version": "7.5.4" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -26785,7 +26771,7 @@ "deps": { "common": [ { - "id": "base64 0.21.4", + "id": "base64 0.21.7", "target": "base64" }, { @@ -26856,7 +26842,7 @@ "deps": { "common": [ { - "id": "base64 0.21.4", + "id": "base64 0.21.7", "target": "base64" }, { @@ -27021,7 +27007,7 @@ "deps": { "common": [ { - "id": "unicode-segmentation 1.10.1", + "id": "unicode-segmentation 1.12.0", "target": "unicode_segmentation" } ], @@ -27153,7 +27139,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -27342,7 +27328,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.4", + "id": "arrayvec 0.7.6", "target": "arrayvec" } ], @@ -27501,14 +27487,14 @@ ], "license_file": null }, - "hickory-proto 0.24.1": { + "hickory-proto 0.24.2": { "name": "hickory-proto", - "version": "0.24.1", + "version": "0.24.2", "package_url": "https://github.com/hickory-dns/hickory-dns", "repository": { "Http": { - "url": "https://static.crates.io/crates/hickory-proto/0.24.1/download", - "sha256": "07698b8420e2f0d6447a436ba999ec85d8fbf2a398bbd737b82cac4a2e96e512" + "url": "https://static.crates.io/crates/hickory-proto/0.24.2/download", + "sha256": "447afdcdb8afb9d0a852af6dc65d9b285ce720ed7a59e42a8bf2e931c67bc1b5" } }, "targets": [ @@ -27563,7 +27549,7 @@ "target": "cfg_if" }, { - "id": "data-encoding 2.4.0", + "id": "data-encoding 2.7.0", "target": "data_encoding" }, { @@ -27587,7 +27573,7 @@ "target": "http" }, { - "id": "idna 0.4.0", + "id": "idna 1.0.3", "target": "idna" }, { @@ -27595,7 +27581,7 @@ "target": "ipnet" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -27611,19 +27597,19 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tinyvec 1.6.0", + "id": "tinyvec 1.8.1", "target": "tinyvec" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -27635,11 +27621,11 @@ "target": "tracing" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], @@ -27649,17 +27635,17 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" }, { - "id": "enum-as-inner 0.6.0", + "id": "enum-as-inner 0.6.1", "target": "enum_as_inner" } ], "selects": {} }, - "version": "0.24.1" + "version": "0.24.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -27668,14 +27654,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hickory-resolver 0.24.1": { + "hickory-resolver 0.24.2": { "name": "hickory-resolver", - "version": "0.24.1", + "version": "0.24.2", "package_url": "https://github.com/hickory-dns/hickory-dns", "repository": { "Http": { - "url": "https://static.crates.io/crates/hickory-resolver/0.24.1/download", - "sha256": "28757f23aa75c98f254cf0405e6d8c25b831b32921b050a66692427679b1f243" + "url": "https://static.crates.io/crates/hickory-resolver/0.24.2/download", + "sha256": "0a2e2aba9c389ce5267d31cf1e4dace82390ae276b0b364ea55630b1fa1b44b4" } }, "targets": [ @@ -27728,7 +27714,7 @@ "target": "futures_util" }, { - "id": "hickory-proto 0.24.1", + "id": "hickory-proto 0.24.2", "target": "hickory_proto" }, { @@ -27736,11 +27722,11 @@ "target": "lru_cache" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { @@ -27760,11 +27746,11 @@ "target": "smallvec" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -27776,7 +27762,7 @@ "target": "tracing" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], @@ -27802,7 +27788,7 @@ } }, "edition": "2021", - "version": "0.24.1" + "version": "0.24.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -27913,14 +27899,14 @@ ], "license_file": "LICENSE-APACHE" }, - "home 0.5.5": { + "home 0.5.11": { "name": "home", - "version": "0.5.5", + "version": "0.5.11", "package_url": "https://github.com/rust-lang/cargo", "repository": { "Http": { - "url": "https://static.crates.io/crates/home/0.5.5/download", - "sha256": "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" + "url": "https://static.crates.io/crates/home/0.5.11/download", + "sha256": "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" } }, "targets": [ @@ -27947,14 +27933,14 @@ "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.48.0", + "id": "windows-sys 0.59.0", "target": "windows_sys" } ] } }, - "edition": "2018", - "version": "0.5.5" + "edition": "2021", + "version": "0.5.11" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -28008,7 +27994,7 @@ "selects": { "cfg(any(unix, target_os = \"redox\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -28077,7 +28063,7 @@ "target": "build_script_build" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -28104,11 +28090,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -28166,7 +28152,7 @@ "target": "fnv" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" } ], @@ -28229,7 +28215,7 @@ "target": "fnv" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" } ], @@ -28285,7 +28271,7 @@ "target": "http" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], @@ -28399,7 +28385,7 @@ "target": "http_body" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], @@ -28414,14 +28400,14 @@ ], "license_file": "LICENSE" }, - "httparse 1.8.0": { + "httparse 1.9.5": { "name": "httparse", - "version": "1.8.0", + "version": "1.9.5", "package_url": "https://github.com/seanmonstar/httparse", "repository": { "Http": { - "url": "https://static.crates.io/crates/httparse/1.8.0/download", - "sha256": "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" + "url": "https://static.crates.io/crates/httparse/1.9.5/download", + "sha256": "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" } }, "targets": [ @@ -28465,14 +28451,14 @@ "deps": { "common": [ { - "id": "httparse 1.8.0", + "id": "httparse 1.9.5", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.8.0" + "version": "1.9.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -28482,7 +28468,7 @@ "**" ] }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -28560,7 +28546,7 @@ "deps": { "common": [ { - "id": "libm 0.2.8", + "id": "libm 0.2.11", "target": "libm" } ], @@ -28667,14 +28653,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hyper 0.14.27": { + "hyper 0.14.32": { "name": "hyper", - "version": "0.14.27", + "version": "0.14.32", "package_url": "https://github.com/hyperium/hyper", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper/0.14.27/download", - "sha256": "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" + "url": "https://static.crates.io/crates/hyper/0.14.32/download", + "sha256": "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" } }, "targets": [ @@ -28700,7 +28686,6 @@ "common": [ "client", "default", - "full", "h2", "http1", "http2", @@ -28743,7 +28728,7 @@ "target": "http_body" }, { - "id": "httparse 1.8.0", + "id": "httparse 1.9.5", "target": "httparse" }, { @@ -28751,19 +28736,19 @@ "target": "httpdate" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "socket2 0.4.9", + "id": "socket2 0.5.8", "target": "socket2" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -28782,7 +28767,7 @@ "selects": {} }, "edition": "2018", - "version": "0.14.27" + "version": "0.14.32" }, "license": "MIT", "license_ids": [ @@ -28790,14 +28775,14 @@ ], "license_file": "LICENSE" }, - "hyper 1.5.1": { + "hyper 1.5.2": { "name": "hyper", - "version": "1.5.1", + "version": "1.5.2", "package_url": "https://github.com/hyperium/hyper", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper/1.5.1/download", - "sha256": "97818827ef4f364230e16705d4706e2897df2bb60617d6ca15d598025a3c481f" + "url": "https://static.crates.io/crates/hyper/1.5.2/download", + "sha256": "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0" } }, "targets": [ @@ -28845,7 +28830,7 @@ "target": "futures_util" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { @@ -28857,7 +28842,7 @@ "target": "http_body" }, { - "id": "httparse 1.8.0", + "id": "httparse 1.9.5", "target": "httparse" }, { @@ -28865,11 +28850,11 @@ "target": "httpdate" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -28877,7 +28862,7 @@ "target": "smallvec" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -28888,7 +28873,7 @@ "selects": {} }, "edition": "2021", - "version": "1.5.1" + "version": "1.5.2" }, "license": "MIT", "license_ids": [ @@ -28944,7 +28929,7 @@ "target": "http" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -28952,11 +28937,11 @@ "target": "hyper_util" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -29029,11 +29014,11 @@ "target": "http" }, { - "id": "hyper 0.14.27", + "id": "hyper 0.14.32", "target": "hyper" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -29045,7 +29030,7 @@ "target": "rustls_native_certs" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -29066,14 +29051,14 @@ ], "license_file": "LICENSE" }, - "hyper-rustls 0.27.3": { + "hyper-rustls 0.27.5": { "name": "hyper-rustls", - "version": "0.27.3", + "version": "0.27.5", "package_url": "https://github.com/rustls/hyper-rustls", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper-rustls/0.27.3/download", - "sha256": "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" + "url": "https://static.crates.io/crates/hyper-rustls/0.27.5/download", + "sha256": "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2" } }, "targets": [ @@ -29248,7 +29233,7 @@ "target": "http" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -29256,28 +29241,28 @@ "target": "hyper_util" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -29288,200 +29273,200 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "aarch64-apple-ios": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "aarch64-apple-ios-sim": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "aarch64-linux-android": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "aarch64-pc-windows-msvc": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "aarch64-unknown-fuchsia": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "aarch64-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "arm-unknown-linux-gnueabi": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "armv7-linux-androideabi": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "i686-apple-darwin": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "i686-linux-android": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "i686-pc-windows-msvc": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "i686-unknown-freebsd": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "i686-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "powerpc-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "riscv32imc-unknown-none-elf": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "riscv64gc-unknown-none-elf": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "s390x-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "thumbv7em-none-eabi": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "thumbv8m.main-none-eabi": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-apple-darwin": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-apple-ios": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-linux-android": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-pc-windows-msvc": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-unknown-freebsd": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-unknown-fuchsia": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-unknown-none": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ] } }, "edition": "2021", - "version": "0.27.3" + "version": "0.27.5" }, "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ @@ -29531,7 +29516,7 @@ "target": "http" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -29539,11 +29524,11 @@ "target": "hyper_util" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -29563,14 +29548,14 @@ ], "license_file": "LICENSE-APACHE.md" }, - "hyper-timeout 0.5.1": { + "hyper-timeout 0.5.2": { "name": "hyper-timeout", - "version": "0.5.1", + "version": "0.5.2", "package_url": "https://github.com/hjr3/hyper-timeout", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper-timeout/0.5.1/download", - "sha256": "3203a961e5c83b6f5498933e78b6b263e208c197b63e9c6c53cc82ffd3f63793" + "url": "https://static.crates.io/crates/hyper-timeout/0.5.2/download", + "sha256": "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" } }, "targets": [ @@ -29595,7 +29580,7 @@ "deps": { "common": [ { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -29603,11 +29588,11 @@ "target": "hyper_util" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -29618,7 +29603,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.1" + "version": "0.5.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -29695,19 +29680,19 @@ "target": "http_body" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -29730,14 +29715,14 @@ ], "license_file": "LICENSE" }, - "iana-time-zone 0.1.59": { + "iana-time-zone 0.1.61": { "name": "iana-time-zone", - "version": "0.1.59", + "version": "0.1.61", "package_url": "https://github.com/strawlab/iana-time-zone", "repository": { "Http": { - "url": "https://static.crates.io/crates/iana-time-zone/0.1.59/download", - "sha256": "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539" + "url": "https://static.crates.io/crates/iana-time-zone/0.1.61/download", + "sha256": "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" } }, "targets": [ @@ -29768,22 +29753,22 @@ "deps": { "common": [], "selects": { - "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ - { - "id": "core-foundation-sys 0.8.7", - "target": "core_foundation_sys" - } - ], - "cfg(target_arch = \"wasm32\")": [ + "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], + "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ + { + "id": "core-foundation-sys 0.8.7", + "target": "core_foundation_sys" + } + ], "cfg(target_os = \"android\")": [ { "id": "android_system_properties 0.1.5", @@ -29805,7 +29790,7 @@ } }, "edition": "2018", - "version": "0.1.59" + "version": "0.1.61" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -29877,7 +29862,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -29939,7 +29924,7 @@ "target": "async_channel" }, { - "id": "async-lock 3.3.0", + "id": "async-lock 3.4.0", "target": "async_lock" }, { @@ -29955,11 +29940,11 @@ "target": "cached" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "der 0.7.8", + "id": "der 0.7.9", "target": "der" }, { @@ -30027,15 +30012,15 @@ "target": "rand" }, { - "id": "rangemap 1.4.0", + "id": "rangemap 1.5.1", "target": "rangemap" }, { - "id": "reqwest 0.12.9", + "id": "reqwest 0.12.12", "target": "reqwest" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { @@ -30059,7 +30044,7 @@ "target": "sha2" }, { - "id": "simple_asn1 0.6.2", + "id": "simple_asn1 0.6.3", "target": "simple_asn1" }, { @@ -30067,11 +30052,11 @@ "target": "stop_token" }, { - "id": "thiserror 2.0.3", + "id": "thiserror 2.0.11", "target": "thiserror" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" }, { @@ -30079,14 +30064,14 @@ "target": "tower_service" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" } ], "selects": { "cfg(not(target_family = \"wasm\"))": [ { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ] @@ -30096,7 +30081,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" }, { @@ -30152,7 +30137,7 @@ "target": "ahash" }, { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -30180,7 +30165,7 @@ "target": "chacha20poly1305" }, { - "id": "clap 4.5.20", + "id": "clap 4.5.26", "target": "clap" }, { @@ -30188,7 +30173,7 @@ "target": "cloudflare" }, { - "id": "fqdn 0.4.1", + "id": "fqdn 0.4.4", "target": "fqdn" }, { @@ -30200,11 +30185,11 @@ "target": "futures_util" }, { - "id": "hickory-proto 0.24.1", + "id": "hickory-proto 0.24.2", "target": "hickory_proto" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { @@ -30224,7 +30209,7 @@ "target": "humantime" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -30236,7 +30221,7 @@ "target": "instant_acme" }, { - "id": "moka 0.12.8", + "id": "moka 0.12.10", "target": "moka" }, { @@ -30248,11 +30233,11 @@ "target": "prometheus" }, { - "id": "prost 0.13.3", + "id": "prost 0.13.4", "target": "prost" }, { - "id": "prost-types 0.13.3", + "id": "prost-types 0.13.4", "target": "prost_types" }, { @@ -30260,15 +30245,15 @@ "target": "rand" }, { - "id": "rcgen 0.13.1", + "id": "rcgen 0.13.2", "target": "rcgen" }, { - "id": "reqwest 0.12.9", + "id": "reqwest 0.12.12", "target": "reqwest" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { @@ -30292,7 +30277,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -30304,15 +30289,15 @@ "target": "strum" }, { - "id": "systemstat 0.2.3", + "id": "systemstat 0.2.4", "target": "systemstat" }, { - "id": "thiserror 2.0.3", + "id": "thiserror 2.0.11", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -30320,7 +30305,7 @@ "target": "tokio_io_timeout" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -30328,7 +30313,7 @@ "target": "tokio_util" }, { - "id": "tower 0.5.1", + "id": "tower 0.5.2", "target": "tower" }, { @@ -30340,11 +30325,11 @@ "target": "tracing" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" }, { - "id": "uuid 1.11.0", + "id": "uuid 1.12.0", "target": "uuid" }, { @@ -30352,7 +30337,7 @@ "target": "vrl" }, { - "id": "webpki-root-certs 0.26.6", + "id": "webpki-root-certs 0.26.7", "target": "webpki_root_certs" }, { @@ -30370,11 +30355,11 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" }, { - "id": "clap_derive 4.5.18", + "id": "clap_derive 4.5.24", "target": "clap_derive" }, { @@ -30426,7 +30411,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -30530,7 +30515,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -30538,7 +30523,7 @@ "target": "hex" }, { - "id": "ic-cdk 0.17.0", + "id": "ic-cdk 0.17.1", "target": "ic_cdk" }, { @@ -30550,7 +30535,7 @@ "target": "ic_representation_independent_hash" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -30570,7 +30555,7 @@ "target": "sha2" }, { - "id": "thiserror 2.0.3", + "id": "thiserror 2.0.11", "target": "thiserror" } ], @@ -30617,7 +30602,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -30633,7 +30618,7 @@ "target": "nom" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -30680,7 +30665,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -30748,7 +30733,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -30784,14 +30769,14 @@ ], "license_file": "LICENSE" }, - "ic-cdk 0.17.0": { + "ic-cdk 0.17.1": { "name": "ic-cdk", - "version": "0.17.0", + "version": "0.17.1", "package_url": "https://github.com/dfinity/cdk-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-cdk/0.17.0/download", - "sha256": "b2abdf9341da9f9f6b451a40609cb69645a05a8e9eb7784c16209f16f2c0f76f" + "url": "https://static.crates.io/crates/ic-cdk/0.17.1/download", + "sha256": "122efbcb0af5280d408a75a57b7dc6e9d92893bf6ed9cc98fe4dcff51f18b67c" } }, "targets": [ @@ -30816,7 +30801,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -30838,13 +30823,13 @@ "proc_macro_deps": { "common": [ { - "id": "ic-cdk-macros 0.17.0", + "id": "ic-cdk-macros 0.17.1", "target": "ic_cdk_macros" } ], "selects": {} }, - "version": "0.17.0" + "version": "0.17.1" }, "license": "Apache-2.0", "license_ids": [ @@ -30884,15 +30869,15 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -30951,15 +30936,15 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -31018,15 +31003,15 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -31034,11 +31019,11 @@ "target": "serde" }, { - "id": "serde_tokenstream 0.2.1", + "id": "serde_tokenstream 0.2.2", "target": "serde_tokenstream" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -31053,14 +31038,14 @@ ], "license_file": "LICENSE" }, - "ic-cdk-macros 0.17.0": { + "ic-cdk-macros 0.17.1": { "name": "ic-cdk-macros", - "version": "0.17.0", + "version": "0.17.1", "package_url": "https://github.com/dfinity/cdk-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-cdk-macros/0.17.0/download", - "sha256": "b8df41980e95dead28735ab0f748c75477b0c5eab37a09a5641c78ec406a1db0" + "url": "https://static.crates.io/crates/ic-cdk-macros/0.17.1/download", + "sha256": "c792bf0d1621c893ccf2bcdeac4ee70121103a03030a1827031a6b3c60488944" } }, "targets": [ @@ -31085,15 +31070,15 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -31101,18 +31086,18 @@ "target": "serde" }, { - "id": "serde_tokenstream 0.2.1", + "id": "serde_tokenstream 0.2.2", "target": "serde_tokenstream" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.17.0" + "version": "0.17.1" }, "license": "Apache-2.0", "license_ids": [ @@ -31156,7 +31141,7 @@ "target": "futures" }, { - "id": "ic-cdk 0.17.0", + "id": "ic-cdk 0.17.1", "target": "ic_cdk" }, { @@ -31172,7 +31157,7 @@ "target": "serde_bytes" }, { - "id": "slotmap 1.0.6", + "id": "slotmap 1.0.7", "target": "slotmap" } ], @@ -31223,7 +31208,7 @@ "target": "cached" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -31235,7 +31220,7 @@ "target": "ic_certification" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -31251,7 +31236,7 @@ "target": "nom" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { @@ -31259,7 +31244,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -31498,7 +31483,7 @@ "target": "base64" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -31522,7 +31507,7 @@ "target": "serde_cbor" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -31577,7 +31562,7 @@ "target": "bytes" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -31613,7 +31598,7 @@ "target": "ic_utils" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -31753,11 +31738,11 @@ "target": "base64" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "flate2 1.0.31", + "id": "flate2 1.0.35", "target": "flate2" }, { @@ -31793,7 +31778,7 @@ "target": "leb128" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -31805,7 +31790,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -31871,14 +31856,14 @@ ], "license_file": "LICENSE" }, - "ic-stable-structures 0.6.5": { + "ic-stable-structures 0.6.7": { "name": "ic-stable-structures", - "version": "0.6.5", + "version": "0.6.7", "package_url": "https://github.com/dfinity/stable-structures", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-stable-structures/0.6.5/download", - "sha256": "03f3044466a69802de74e710dc0300b706a05696a0531c942ca856751a13b0db" + "url": "https://static.crates.io/crates/ic-stable-structures/0.6.7/download", + "sha256": "b492c5a16455ae78623eaa12ead96dda6c69a83c535b1b00789f19b381c8a24c" } }, "targets": [ @@ -31931,7 +31916,7 @@ ], "selects": {} }, - "version": "0.6.5" + "version": "0.6.7" }, "license": "Apache-2.0", "license_ids": [ @@ -31971,11 +31956,11 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "ciborium 0.2.1", + "id": "ciborium 0.2.2", "target": "ciborium" }, { @@ -32030,7 +32015,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -32058,7 +32043,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -32114,7 +32099,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -32146,7 +32131,7 @@ "target": "sha2" }, { - "id": "thiserror 2.0.3", + "id": "thiserror 2.0.11", "target": "thiserror" } ], @@ -32208,7 +32193,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -32220,11 +32205,11 @@ "target": "ic_agent" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -32244,15 +32229,15 @@ "target": "strum" }, { - "id": "thiserror 2.0.3", + "id": "thiserror 2.0.11", "target": "thiserror" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -32262,7 +32247,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" }, { @@ -32330,7 +32315,7 @@ "alias": "bls12_381" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -32406,7 +32391,7 @@ "alias": "bls12_381" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -32429,14 +32414,14 @@ ], "license_file": null }, - "ic-wasm 0.8.4": { + "ic-wasm 0.8.6": { "name": "ic-wasm", - "version": "0.8.4", + "version": "0.8.6", "package_url": "https://github.com/dfinity/ic-wasm", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-wasm/0.8.4/download", - "sha256": "45bc33855672981ae4a2f4e77c1a77d1bdc0756fb1b36ad0dbe47df77a955e2d" + "url": "https://static.crates.io/crates/ic-wasm/0.8.6/download", + "sha256": "19fabaeecfe37f24b433c62489242fc54503d98d4cc8d0f9ef7544dfdfc0ddcb" } }, "targets": [ @@ -32482,15 +32467,15 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "clap 4.5.20", + "id": "clap 4.5.26", "target": "clap" }, { @@ -32498,7 +32483,7 @@ "target": "libflate" }, { - "id": "rustc-demangle 0.1.23", + "id": "rustc-demangle 0.1.24", "target": "rustc_demangle" }, { @@ -32506,22 +32491,22 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "walrus 0.21.1", + "id": "walrus 0.21.3", "target": "walrus" } ], "selects": {} }, "edition": "2021", - "version": "0.8.4" + "version": "0.8.6" }, "license": "Apache-2.0", "license_ids": [ @@ -32561,7 +32546,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -32828,15 +32813,15 @@ "deps": { "common": [ { - "id": "arbitrary 1.3.2", + "id": "arbitrary 1.4.1", "target": "arbitrary" }, { - "id": "crc32fast 1.3.2", + "id": "crc32fast 1.4.2", "target": "crc32fast" }, { - "id": "data-encoding 2.4.0", + "id": "data-encoding 2.7.0", "target": "data_encoding" }, { @@ -32848,7 +32833,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -32898,11 +32883,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -32910,7 +32895,7 @@ "target": "serde" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -32920,7 +32905,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -32969,11 +32954,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -33028,11 +33013,11 @@ "deps": { "common": [ { - "id": "yoke 0.7.4", + "id": "yoke 0.7.5", "target": "yoke" }, { - "id": "zerofrom 0.1.4", + "id": "zerofrom 0.1.5", "target": "zerofrom" }, { @@ -33046,7 +33031,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], @@ -33098,7 +33083,7 @@ "deps": { "common": [ { - "id": "litemap 0.7.3", + "id": "litemap 0.7.4", "target": "litemap" }, { @@ -33120,7 +33105,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], @@ -33198,7 +33183,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], @@ -33331,7 +33316,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], @@ -33452,7 +33437,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], @@ -33558,11 +33543,11 @@ "target": "writeable" }, { - "id": "yoke 0.7.4", + "id": "yoke 0.7.5", "target": "yoke" }, { - "id": "zerofrom 0.1.4", + "id": "zerofrom 0.1.5", "target": "zerofrom" }, { @@ -33576,7 +33561,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" }, { @@ -33626,15 +33611,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -33770,11 +33755,11 @@ "target": "matches" }, { - "id": "unicode-bidi 0.3.13", + "id": "unicode-bidi 0.3.18", "target": "unicode_bidi" }, { - "id": "unicode-normalization 0.1.22", + "id": "unicode-normalization 0.1.24", "target": "unicode_normalization" } ], @@ -33790,118 +33775,6 @@ ], "license_file": "LICENSE-APACHE" }, - "idna 0.3.0": { - "name": "idna", - "version": "0.3.0", - "package_url": "https://github.com/servo/rust-url/", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/idna/0.3.0/download", - "sha256": "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" - } - }, - "targets": [ - { - "Library": { - "crate_name": "idna", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "idna", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "unicode-bidi 0.3.13", - "target": "unicode_bidi" - }, - { - "id": "unicode-normalization 0.1.22", - "target": "unicode_normalization" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "idna 0.4.0": { - "name": "idna", - "version": "0.4.0", - "package_url": "https://github.com/servo/rust-url/", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/idna/0.4.0/download", - "sha256": "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" - } - }, - "targets": [ - { - "Library": { - "crate_name": "idna", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "idna", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "unicode-bidi 0.3.13", - "target": "unicode_bidi" - }, - { - "id": "unicode-normalization 0.1.22", - "target": "unicode_normalization" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.4.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "idna 1.0.3": { "name": "idna", "version": "1.0.3", @@ -34063,7 +33936,7 @@ "deps": { "common": [ { - "id": "parity-scale-codec 3.6.4", + "id": "parity-scale-codec 3.6.12", "target": "parity_scale_codec" } ], @@ -34079,14 +33952,14 @@ ], "license_file": null }, - "impl-more 0.1.6": { + "impl-more 0.1.9": { "name": "impl-more", - "version": "0.1.6", + "version": "0.1.9", "package_url": "https://github.com/robjtede/impl-more", "repository": { "Http": { - "url": "https://static.crates.io/crates/impl-more/0.1.6/download", - "sha256": "206ca75c9c03ba3d4ace2460e57b189f39f43de612c2f85836e65c929701bb2d" + "url": "https://static.crates.io/crates/impl-more/0.1.9/download", + "sha256": "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" } }, "targets": [ @@ -34109,7 +33982,7 @@ "**" ], "edition": "2018", - "version": "0.1.6" + "version": "0.1.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -34214,14 +34087,14 @@ ], "license_file": null }, - "impl-trait-for-tuples 0.2.2": { + "impl-trait-for-tuples 0.2.3": { "name": "impl-trait-for-tuples", - "version": "0.2.2", + "version": "0.2.3", "package_url": "https://github.com/bkchr/impl-trait-for-tuples", "repository": { "Http": { - "url": "https://static.crates.io/crates/impl-trait-for-tuples/0.2.2/download", - "sha256": "11d7a9f6330b71fea57921c9b61c47ee6e84f72d394754eff6163ae67e7395eb" + "url": "https://static.crates.io/crates/impl-trait-for-tuples/0.2.3/download", + "sha256": "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" } }, "targets": [ @@ -34246,22 +34119,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 1.0.109", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.2.2" + "version": "0.2.3" }, "license": "Apache-2.0/MIT", "license_ids": [ @@ -34388,7 +34261,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -34402,14 +34275,14 @@ ], "license_file": "LICENSE-APACHE" }, - "indexmap 2.2.6": { + "indexmap 2.7.0": { "name": "indexmap", - "version": "2.2.6", + "version": "2.7.0", "package_url": "https://github.com/indexmap-rs/indexmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/indexmap/2.2.6/download", - "sha256": "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" + "url": "https://static.crates.io/crates/indexmap/2.7.0/download", + "sha256": "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f" } }, "targets": [ @@ -34446,7 +34319,7 @@ "target": "equivalent" }, { - "id": "hashbrown 0.14.5", + "id": "hashbrown 0.15.2", "target": "hashbrown" }, { @@ -34457,7 +34330,7 @@ "selects": {} }, "edition": "2021", - "version": "2.2.6" + "version": "2.7.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -34466,14 +34339,14 @@ ], "license_file": "LICENSE-APACHE" }, - "indicatif 0.17.7": { + "indicatif 0.17.9": { "name": "indicatif", - "version": "0.17.7", + "version": "0.17.9", "package_url": "https://github.com/console-rs/indicatif", "repository": { "Http": { - "url": "https://static.crates.io/crates/indicatif/0.17.7/download", - "sha256": "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25" + "url": "https://static.crates.io/crates/indicatif/0.17.9/download", + "sha256": "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281" } }, "targets": [ @@ -34505,7 +34378,7 @@ "deps": { "common": [ { - "id": "console 0.15.7", + "id": "console 0.15.10", "target": "console" }, { @@ -34513,25 +34386,25 @@ "target": "number_prefix" }, { - "id": "portable-atomic 1.4.3", + "id": "portable-atomic 1.10.0", "target": "portable_atomic" }, { - "id": "unicode-width 0.1.11", + "id": "unicode-width 0.2.0", "target": "unicode_width" } ], "selects": { "cfg(target_arch = \"wasm32\")": [ { - "id": "instant 0.1.12", - "target": "instant" + "id": "web-time 1.1.0", + "target": "web_time" } ] } }, "edition": "2021", - "version": "0.17.7" + "version": "0.17.9" }, "license": "MIT", "license_ids": [ @@ -34578,14 +34451,14 @@ ], "license_file": "LICENSE-APACHE" }, - "inferno 0.11.19": { + "inferno 0.11.21": { "name": "inferno", - "version": "0.11.19", + "version": "0.11.21", "package_url": "https://github.com/jonhoo/inferno.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/inferno/0.11.19/download", - "sha256": "321f0f839cd44a4686e9504b0a62b4d69a50b62072144c71c68f5873c167b8d9" + "url": "https://static.crates.io/crates/inferno/0.11.21/download", + "sha256": "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88" } }, "targets": [ @@ -34621,19 +34494,19 @@ "target": "ahash" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "is-terminal 0.4.9", + "id": "is-terminal 0.4.13", "target": "is_terminal" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -34641,7 +34514,7 @@ "target": "num_format" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -34649,7 +34522,7 @@ "target": "quick_xml" }, { - "id": "rgb 0.8.37", + "id": "rgb 0.8.50", "target": "rgb" }, { @@ -34660,7 +34533,7 @@ "selects": {} }, "edition": "2021", - "version": "0.11.19" + "version": "0.11.21" }, "license": "CDDL-1.0", "license_ids": [ @@ -34668,14 +34541,14 @@ ], "license_file": "LICENSE" }, - "inferno 0.12.0": { + "inferno 0.12.1": { "name": "inferno", - "version": "0.12.0", + "version": "0.12.1", "package_url": "https://github.com/jonhoo/inferno.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/inferno/0.12.0/download", - "sha256": "75a5d75fee4d36809e6b021e4b96b686e763d365ffdb03af2bd00786353f84fe" + "url": "https://static.crates.io/crates/inferno/0.12.1/download", + "sha256": "692eda1cc790750b9f5a5e3921ef9c117fd5498b97cfacbc910693e5b29002dc" } }, "targets": [ @@ -34719,15 +34592,15 @@ "target": "ahash" }, { - "id": "clap 4.5.20", + "id": "clap 4.5.26", "target": "clap" }, { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" }, { @@ -34735,19 +34608,19 @@ "target": "dashmap" }, { - "id": "env_logger 0.11.2", + "id": "env_logger 0.11.6", "target": "env_logger" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -34755,15 +34628,15 @@ "target": "num_format" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "quick-xml 0.37.1", + "id": "quick-xml 0.37.2", "target": "quick_xml" }, { - "id": "rgb 0.8.37", + "id": "rgb 0.8.50", "target": "rgb" }, { @@ -34774,7 +34647,7 @@ "selects": {} }, "edition": "2021", - "version": "0.12.0" + "version": "0.12.1" }, "license": "CDDL-1.0", "license_ids": [ @@ -34830,14 +34703,14 @@ ], "license_file": "LICENSE-APACHE" }, - "insta 1.34.0": { + "insta 1.42.0": { "name": "insta", - "version": "1.34.0", + "version": "1.42.0", "package_url": "https://github.com/mitsuhiko/insta", "repository": { "Http": { - "url": "https://static.crates.io/crates/insta/1.34.0/download", - "sha256": "5d64600be34b2fcfc267740a243fa7744441bb4947a619ac4e5bb6507f35fbfc" + "url": "https://static.crates.io/crates/insta/1.42.0/download", + "sha256": "6513e4067e16e69ed1db5ab56048ed65db32d10ba5fc1217f5393f8f17d8b5a5" } }, "targets": [ @@ -34870,30 +34743,26 @@ "deps": { "common": [ { - "id": "console 0.15.7", + "id": "console 0.15.10", "target": "console" }, - { - "id": "lazy_static 1.4.0", - "target": "lazy_static" - }, { "id": "linked-hash-map 0.5.6", "target": "linked_hash_map" }, { - "id": "similar 2.3.0", - "target": "similar" + "id": "once_cell 1.20.2", + "target": "once_cell" }, { - "id": "yaml-rust 0.4.5", - "target": "yaml_rust" + "id": "similar 2.6.0", + "target": "similar" } ], "selects": {} }, - "edition": "2018", - "version": "1.34.0" + "edition": "2021", + "version": "1.42.0" }, "license": "Apache-2.0", "license_ids": [ @@ -34901,14 +34770,14 @@ ], "license_file": "LICENSE" }, - "instant 0.1.12": { + "instant 0.1.13": { "name": "instant", - "version": "0.1.12", + "version": "0.1.13", "package_url": "https://github.com/sebcrozet/instant", "repository": { "Http": { - "url": "https://static.crates.io/crates/instant/0.1.12/download", - "sha256": "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" + "url": "https://static.crates.io/crates/instant/0.1.13/download", + "sha256": "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" } }, "targets": [ @@ -34940,7 +34809,7 @@ "selects": {} }, "edition": "2018", - "version": "0.1.12" + "version": "0.1.13" }, "license": "BSD-3-Clause", "license_ids": [ @@ -35008,11 +34877,11 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { @@ -35020,11 +34889,11 @@ "target": "hyper_util" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { @@ -35032,11 +34901,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -35046,7 +34915,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -35176,11 +35045,11 @@ "selects": { "cfg(windows)": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { - "id": "widestring 1.0.2", + "id": "widestring 1.1.0", "target": "widestring" }, { @@ -35319,14 +35188,14 @@ ], "license_file": "LICENSE-APACHE.md" }, - "is-terminal 0.4.9": { + "is-terminal 0.4.13": { "name": "is-terminal", - "version": "0.4.9", + "version": "0.4.13", "package_url": "https://github.com/sunfishcode/is-terminal", "repository": { "Http": { - "url": "https://static.crates.io/crates/is-terminal/0.4.9/download", - "sha256": "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" + "url": "https://static.crates.io/crates/is-terminal/0.4.13/download", + "sha256": "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" } }, "targets": [ @@ -35351,28 +35220,28 @@ "deps": { "common": [], "selects": { - "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))": [ + "cfg(any(unix, target_os = \"wasi\"))": [ { - "id": "rustix 0.38.32", - "target": "rustix" + "id": "libc 0.2.169", + "target": "libc" } ], "cfg(target_os = \"hermit\")": [ { - "id": "hermit-abi 0.3.9", + "id": "hermit-abi 0.4.0", "target": "hermit_abi" } ], "cfg(windows)": [ { - "id": "windows-sys 0.48.0", + "id": "windows-sys 0.52.0", "target": "windows_sys" } ] } }, "edition": "2018", - "version": "0.4.9" + "version": "0.4.13" }, "license": "MIT", "license_ids": [ @@ -35461,7 +35330,7 @@ "target": "serde" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -35516,7 +35385,7 @@ "deps": { "common": [ { - "id": "either 1.9.0", + "id": "either 1.13.0", "target": "either" } ], @@ -35572,7 +35441,7 @@ "deps": { "common": [ { - "id": "either 1.9.0", + "id": "either 1.13.0", "target": "either" } ], @@ -35588,14 +35457,14 @@ ], "license_file": "LICENSE-APACHE" }, - "itertools 0.12.0": { + "itertools 0.12.1": { "name": "itertools", - "version": "0.12.0", + "version": "0.12.1", "package_url": "https://github.com/rust-itertools/itertools", "repository": { "Http": { - "url": "https://static.crates.io/crates/itertools/0.12.0/download", - "sha256": "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" + "url": "https://static.crates.io/crates/itertools/0.12.1/download", + "sha256": "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" } }, "targets": [ @@ -35628,14 +35497,125 @@ "deps": { "common": [ { - "id": "either 1.9.0", + "id": "either 1.13.0", "target": "either" } ], "selects": {} }, "edition": "2018", - "version": "0.12.0" + "version": "0.12.1" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "itertools 0.13.0": { + "name": "itertools", + "version": "0.13.0", + "package_url": "https://github.com/rust-itertools/itertools", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/itertools/0.13.0/download", + "sha256": "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" + } + }, + "targets": [ + { + "Library": { + "crate_name": "itertools", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "itertools", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "use_alloc" + ], + "selects": { + "aarch64-apple-darwin": [ + "default", + "use_std" + ], + "aarch64-pc-windows-msvc": [ + "default", + "use_std" + ], + "aarch64-unknown-linux-gnu": [ + "default", + "use_std" + ], + "aarch64-unknown-nixos-gnu": [ + "default", + "use_std" + ], + "arm-unknown-linux-gnueabi": [ + "default", + "use_std" + ], + "i686-pc-windows-msvc": [ + "default", + "use_std" + ], + "i686-unknown-linux-gnu": [ + "default", + "use_std" + ], + "powerpc-unknown-linux-gnu": [ + "default", + "use_std" + ], + "s390x-unknown-linux-gnu": [ + "default", + "use_std" + ], + "x86_64-apple-darwin": [ + "default", + "use_std" + ], + "x86_64-pc-windows-msvc": [ + "default", + "use_std" + ], + "x86_64-unknown-freebsd": [ + "default", + "use_std" + ], + "x86_64-unknown-linux-gnu": [ + "default", + "use_std" + ], + "x86_64-unknown-nixos-gnu": [ + "default", + "use_std" + ] + } + }, + "deps": { + "common": [ + { + "id": "either 1.13.0", + "target": "either" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.13.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -35644,14 +35624,14 @@ ], "license_file": "LICENSE-APACHE" }, - "itoa 1.0.9": { + "itoa 1.0.14": { "name": "itoa", - "version": "1.0.9", + "version": "1.0.14", "package_url": "https://github.com/dtolnay/itoa", "repository": { "Http": { - "url": "https://static.crates.io/crates/itoa/1.0.9/download", - "sha256": "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" + "url": "https://static.crates.io/crates/itoa/1.0.14/download", + "sha256": "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" } }, "targets": [ @@ -35674,7 +35654,7 @@ "**" ], "edition": "2018", - "version": "1.0.9" + "version": "1.0.14" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -35743,11 +35723,11 @@ "target": "jni_sys" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -35766,7 +35746,7 @@ "deps": { "common": [ { - "id": "walkdir 2.3.3", + "id": "walkdir 2.5.0", "target": "walkdir" } ], @@ -35819,14 +35799,14 @@ ], "license_file": "LICENSE-APACHE" }, - "jobserver 0.1.27": { + "jobserver 0.1.32": { "name": "jobserver", - "version": "0.1.27", - "package_url": "https://github.com/alexcrichton/jobserver-rs", + "version": "0.1.32", + "package_url": "https://github.com/rust-lang/jobserver-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/jobserver/0.1.27/download", - "sha256": "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" + "url": "https://static.crates.io/crates/jobserver/0.1.32/download", + "sha256": "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" } }, "targets": [ @@ -35853,30 +35833,30 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] } }, - "edition": "2018", - "version": "0.1.27" + "edition": "2021", + "version": "0.1.32" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "js-sys 0.3.64": { + "js-sys 0.3.77": { "name": "js-sys", - "version": "0.3.64", + "version": "0.3.77", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/js-sys/0.3.64/download", - "sha256": "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" + "url": "https://static.crates.io/crates/js-sys/0.3.77/download", + "sha256": "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" } }, "targets": [ @@ -35898,19 +35878,30 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "default", + "std" + ], + "selects": {} + }, "deps": { "common": [ { - "id": "wasm-bindgen 0.2.95", + "id": "once_cell 1.20.2", + "target": "once_cell" + }, + { + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], "selects": {} }, - "edition": "2018", - "version": "0.3.64" + "edition": "2021", + "version": "0.3.77" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -35961,7 +35952,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -36013,7 +36004,7 @@ "deps": { "common": [ { - "id": "pest 2.7.4", + "id": "pest 2.7.15", "target": "pest" }, { @@ -36027,7 +36018,7 @@ "proc_macro_deps": { "common": [ { - "id": "pest_derive 2.7.4", + "id": "pest_derive 2.7.15", "target": "pest_derive" } ], @@ -36073,27 +36064,27 @@ "deps": { "common": [ { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "pest 2.7.4", + "id": "pest 2.7.15", "target": "pest" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -36103,7 +36094,7 @@ "proc_macro_deps": { "common": [ { - "id": "pest_derive 2.7.4", + "id": "pest_derive 2.7.15", "target": "pest_derive" } ], @@ -36166,7 +36157,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -36230,7 +36221,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -36310,7 +36301,7 @@ "target": "elliptic_curve" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -36395,7 +36386,7 @@ "target": "base64" }, { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { @@ -36411,7 +36402,7 @@ "target": "serde_value" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -36435,14 +36426,14 @@ ], "license_file": "LICENSE" }, - "keccak 0.1.4": { + "keccak 0.1.5": { "name": "keccak", - "version": "0.1.4", + "version": "0.1.5", "package_url": "https://github.com/RustCrypto/sponges/tree/master/keccak", "repository": { "Http": { - "url": "https://static.crates.io/crates/keccak/0.1.4/download", - "sha256": "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940" + "url": "https://static.crates.io/crates/keccak/0.1.5/download", + "sha256": "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" } }, "targets": [ @@ -36469,14 +36460,14 @@ "selects": { "cfg(target_arch = \"aarch64\")": [ { - "id": "cpufeatures 0.2.9", + "id": "cpufeatures 0.2.16", "target": "cpufeatures" } ] } }, "edition": "2018", - "version": "0.1.4" + "version": "0.1.5" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -36621,11 +36612,11 @@ "target": "bytes" }, { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { - "id": "either 1.9.0", + "id": "either 1.13.0", "target": "either" }, { @@ -36633,7 +36624,7 @@ "target": "futures" }, { - "id": "home 0.5.5", + "id": "home 0.5.11", "target": "home" }, { @@ -36649,15 +36640,15 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "hyper-timeout 0.5.1", + "id": "hyper-timeout 0.5.2", "target": "hyper_timeout" }, { @@ -36681,7 +36672,7 @@ "target": "pem" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { @@ -36697,7 +36688,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -36705,11 +36696,11 @@ "target": "serde_yaml" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -36772,7 +36763,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { @@ -36792,11 +36783,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -36862,11 +36853,11 @@ "target": "diff" }, { - "id": "ena 0.14.2", + "id": "ena 0.14.3", "target": "ena" }, { - "id": "is-terminal 0.4.9", + "id": "is-terminal 0.4.13", "target": "is_terminal" }, { @@ -36878,11 +36869,11 @@ "target": "lalrpop_util" }, { - "id": "petgraph 0.6.4", + "id": "petgraph 0.6.5", "target": "petgraph" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -36902,7 +36893,7 @@ "target": "tiny_keccak" }, { - "id": "unicode-xid 0.2.4", + "id": "unicode-xid 0.2.6", "target": "unicode_xid" } ], @@ -36918,14 +36909,14 @@ ], "license_file": null }, - "lalrpop 0.20.0": { + "lalrpop 0.20.2": { "name": "lalrpop", - "version": "0.20.0", + "version": "0.20.2", "package_url": "https://github.com/lalrpop/lalrpop", "repository": { "Http": { - "url": "https://static.crates.io/crates/lalrpop/0.20.0/download", - "sha256": "da4081d44f4611b66c6dd725e6de3169f9f63905421e8626fcb86b6a898998b8" + "url": "https://static.crates.io/crates/lalrpop/0.20.2/download", + "sha256": "55cb077ad656299f160924eb2912aa147d7339ea7d69e1b5517326fdcec3c1ca" } }, "targets": [ @@ -36967,27 +36958,19 @@ "target": "bit_set" }, { - "id": "diff 0.1.13", - "target": "diff" - }, - { - "id": "ena 0.14.2", + "id": "ena 0.14.3", "target": "ena" }, { - "id": "is-terminal 0.4.9", - "target": "is_terminal" - }, - { - "id": "itertools 0.10.5", + "id": "itertools 0.11.0", "target": "itertools" }, { - "id": "lalrpop-util 0.20.0", + "id": "lalrpop-util 0.20.2", "target": "lalrpop_util" }, { - "id": "petgraph 0.6.4", + "id": "petgraph 0.6.5", "target": "petgraph" }, { @@ -36995,11 +36978,11 @@ "target": "pico_args" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { - "id": "regex-syntax 0.7.5", + "id": "regex-syntax 0.8.5", "target": "regex_syntax" }, { @@ -37015,21 +36998,25 @@ "target": "tiny_keccak" }, { - "id": "unicode-xid 0.2.4", + "id": "unicode-xid 0.2.6", "target": "unicode_xid" + }, + { + "id": "walkdir 2.5.0", + "target": "walkdir" } ], "selects": {} }, "edition": "2021", - "version": "0.20.0" + "version": "0.20.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null + "license_file": "LICENSE-APACHE" }, "lalrpop-util 0.19.12": { "name": "lalrpop-util", @@ -37129,85 +37116,85 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "aarch64-pc-windows-msvc": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "aarch64-unknown-linux-gnu": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "arm-unknown-linux-gnueabi": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "i686-pc-windows-msvc": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "i686-unknown-linux-gnu": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "powerpc-unknown-linux-gnu": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "s390x-unknown-linux-gnu": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "x86_64-apple-darwin": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "x86_64-pc-windows-msvc": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "x86_64-unknown-freebsd": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "x86_64-unknown-linux-gnu": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ] @@ -37223,14 +37210,14 @@ ], "license_file": null }, - "lalrpop-util 0.20.0": { + "lalrpop-util 0.20.2": { "name": "lalrpop-util", - "version": "0.20.0", + "version": "0.20.2", "package_url": "https://github.com/lalrpop/lalrpop", "repository": { "Http": { - "url": "https://static.crates.io/crates/lalrpop-util/0.20.0/download", - "sha256": "3f35c735096c0293d313e8f2a641627472b83d01b937177fe76e5e2708d31e0d" + "url": "https://static.crates.io/crates/lalrpop-util/0.20.2/download", + "sha256": "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553" } }, "targets": [ @@ -37255,64 +37242,65 @@ "crate_features": { "common": [ "default", - "std" + "std", + "unicode" ], "selects": { "aarch64-apple-darwin": [ "lexer", - "regex" + "regex-automata" ], "aarch64-pc-windows-msvc": [ "lexer", - "regex" + "regex-automata" ], "aarch64-unknown-linux-gnu": [ "lexer", - "regex" + "regex-automata" ], "aarch64-unknown-nixos-gnu": [ "lexer", - "regex" + "regex-automata" ], "arm-unknown-linux-gnueabi": [ "lexer", - "regex" + "regex-automata" ], "i686-pc-windows-msvc": [ "lexer", - "regex" + "regex-automata" ], "i686-unknown-linux-gnu": [ "lexer", - "regex" + "regex-automata" ], "powerpc-unknown-linux-gnu": [ "lexer", - "regex" + "regex-automata" ], "s390x-unknown-linux-gnu": [ "lexer", - "regex" + "regex-automata" ], "x86_64-apple-darwin": [ "lexer", - "regex" + "regex-automata" ], "x86_64-pc-windows-msvc": [ "lexer", - "regex" + "regex-automata" ], "x86_64-unknown-freebsd": [ "lexer", - "regex" + "regex-automata" ], "x86_64-unknown-linux-gnu": [ "lexer", - "regex" + "regex-automata" ], "x86_64-unknown-nixos-gnu": [ "lexer", - "regex" + "regex-automata" ] } }, @@ -37321,99 +37309,99 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "aarch64-pc-windows-msvc": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "aarch64-unknown-linux-gnu": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "arm-unknown-linux-gnueabi": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "i686-pc-windows-msvc": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "i686-unknown-linux-gnu": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "powerpc-unknown-linux-gnu": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "s390x-unknown-linux-gnu": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "x86_64-apple-darwin": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "x86_64-pc-windows-msvc": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "x86_64-unknown-freebsd": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "x86_64-unknown-linux-gnu": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ] } }, "edition": "2021", - "version": "0.20.0" + "version": "0.20.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null + "license_file": "LICENSE-APACHE" }, "language-tags 0.3.2": { "name": "language-tags", @@ -37454,14 +37442,14 @@ ], "license_file": "LICENSE" }, - "lazy_static 1.4.0": { + "lazy_static 1.5.0": { "name": "lazy_static", - "version": "1.4.0", + "version": "1.5.0", "package_url": "https://github.com/rust-lang-nursery/lazy-static.rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/lazy_static/1.4.0/download", - "sha256": "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + "url": "https://static.crates.io/crates/lazy_static/1.5.0/download", + "sha256": "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" } }, "targets": [ @@ -37493,16 +37481,16 @@ "deps": { "common": [ { - "id": "spin 0.5.2", + "id": "spin 0.9.8", "target": "spin" } ], "selects": {} }, "edition": "2015", - "version": "1.4.0" + "version": "1.5.0" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -37972,14 +37960,14 @@ ], "license_file": "LICENSE-APACHE" }, - "libc 0.2.158": { + "libc 0.2.169": { "name": "libc", - "version": "0.2.158", + "version": "0.2.169", "package_url": "https://github.com/rust-lang/libc", "repository": { "Http": { - "url": "https://static.crates.io/crates/libc/0.2.158/download", - "sha256": "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" + "url": "https://static.crates.io/crates/libc/0.2.169/download", + "sha256": "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" } }, "targets": [ @@ -38024,14 +38012,14 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "build_script_build" } ], "selects": {} }, - "edition": "2015", - "version": "0.2.158" + "edition": "2021", + "version": "0.2.169" }, "build_script_attrs": { "compile_data_glob": [ @@ -38095,11 +38083,11 @@ "target": "core2" }, { - "id": "crc32fast 1.3.2", + "id": "crc32fast 1.4.2", "target": "crc32fast" }, { - "id": "dary_heap 0.3.6", + "id": "dary_heap 0.3.7", "target": "dary_heap" }, { @@ -38179,14 +38167,14 @@ ], "license_file": "LICENSE" }, - "libfuzzer-sys 0.4.7": { + "libfuzzer-sys 0.4.8": { "name": "libfuzzer-sys", - "version": "0.4.7", + "version": "0.4.8", "package_url": "https://github.com/rust-fuzz/libfuzzer", "repository": { "Http": { - "url": "https://static.crates.io/crates/libfuzzer-sys/0.4.7/download", - "sha256": "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7" + "url": "https://static.crates.io/crates/libfuzzer-sys/0.4.8/download", + "sha256": "9b9569d2f74e257076d8c6bfa73fb505b46b851e51ddaecc825944aa3bed17fa" } }, "targets": [ @@ -38223,22 +38211,18 @@ "deps": { "common": [ { - "id": "arbitrary 1.3.2", + "id": "arbitrary 1.4.1", "target": "arbitrary" }, { - "id": "libfuzzer-sys 0.4.7", + "id": "libfuzzer-sys 0.4.8", "target": "build_script_build" - }, - { - "id": "once_cell 1.19.0", - "target": "once_cell" } ], "selects": {} }, "edition": "2018", - "version": "0.4.7" + "version": "0.4.8" }, "build_script_attrs": { "compile_data_glob": [ @@ -38250,7 +38234,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -38265,14 +38249,14 @@ ], "license_file": "LICENSE-APACHE" }, - "libloading 0.7.4": { + "libloading 0.8.6": { "name": "libloading", - "version": "0.7.4", + "version": "0.8.6", "package_url": "https://github.com/nagisa/rust_libloading/", "repository": { "Http": { - "url": "https://static.crates.io/crates/libloading/0.7.4/download", - "sha256": "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" + "url": "https://static.crates.io/crates/libloading/0.8.6/download", + "sha256": "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" } }, "targets": [ @@ -38305,14 +38289,14 @@ ], "cfg(windows)": [ { - "id": "winapi 0.3.9", - "target": "winapi" + "id": "windows-targets 0.52.6", + "target": "windows_targets" } ] } }, "edition": "2015", - "version": "0.7.4" + "version": "0.8.6" }, "license": "ISC", "license_ids": [ @@ -38320,14 +38304,14 @@ ], "license_file": "LICENSE" }, - "libm 0.2.8": { + "libm 0.2.11": { "name": "libm", - "version": "0.2.8", + "version": "0.2.11", "package_url": "https://github.com/rust-lang/libm", "repository": { "Http": { - "url": "https://static.crates.io/crates/libm/0.2.8/download", - "sha256": "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" + "url": "https://static.crates.io/crates/libm/0.2.11/download", + "sha256": "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa" } }, "targets": [ @@ -38370,14 +38354,14 @@ "deps": { "common": [ { - "id": "libm 0.2.8", + "id": "libm 0.2.11", "target": "build_script_build" } ], "selects": {} }, - "edition": "2018", - "version": "0.2.8" + "edition": "2021", + "version": "0.2.11" }, "build_script_attrs": { "compile_data_glob": [ @@ -38387,12 +38371,12 @@ "**" ] }, - "license": "MIT OR Apache-2.0", + "license": "MIT AND (MIT OR Apache-2.0)", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": "LICENSE.txt" }, "libnss 0.5.0": { "name": "libnss", @@ -38426,11 +38410,11 @@ "deps": { "common": [ { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -38454,6 +38438,61 @@ ], "license_file": null }, + "libredox 0.1.3": { + "name": "libredox", + "version": "0.1.3", + "package_url": "https://gitlab.redox-os.org/redox-os/libredox.git", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/libredox/0.1.3/download", + "sha256": "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" + } + }, + "targets": [ + { + "Library": { + "crate_name": "libredox", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "libredox", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "bitflags 2.8.0", + "target": "bitflags" + }, + { + "id": "libc 0.2.169", + "target": "libc" + }, + { + "id": "redox_syscall 0.5.8", + "target": "syscall" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.1.3" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, "librocksdb-sys 0.16.0+8.10.0": { "name": "librocksdb-sys", "version": "0.16.0+8.10.0", @@ -38505,7 +38544,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -38528,15 +38567,15 @@ "deps": { "common": [ { - "id": "bindgen 0.69.4", + "id": "bindgen 0.69.5", "target": "bindgen" }, { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "glob 0.3.1", + "id": "glob 0.3.2", "target": "glob" } ], @@ -38633,11 +38672,11 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" }, { @@ -38705,7 +38744,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -38713,14 +38752,14 @@ "target": "build_script_build" }, { - "id": "libz-sys 1.1.12", + "id": "libz-sys 1.1.21", "target": "libz_sys" } ], "selects": { "cfg(unix)": [ { - "id": "openssl-sys 0.9.102", + "id": "openssl-sys 0.9.104", "target": "openssl_sys" } ] @@ -38739,11 +38778,11 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" } ], @@ -38759,14 +38798,14 @@ "link_deps": { "common": [ { - "id": "libz-sys 1.1.12", + "id": "libz-sys 1.1.21", "target": "libz_sys" } ], "selects": { "cfg(unix)": [ { - "id": "openssl-sys 0.9.102", + "id": "openssl-sys 0.9.104", "target": "openssl_sys" } ] @@ -38781,14 +38820,14 @@ ], "license_file": null }, - "libusb1-sys 0.6.4": { + "libusb1-sys 0.7.0": { "name": "libusb1-sys", - "version": "0.6.4", + "version": "0.7.0", "package_url": "https://github.com/a1ien/rusb.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/libusb1-sys/0.6.4/download", - "sha256": "f9d0e2afce4245f2c9a418511e5af8718bcaf2fa408aefb259504d1a9cb25f27" + "url": "https://static.crates.io/crates/libusb1-sys/0.7.0/download", + "sha256": "da050ade7ac4ff1ba5379af847a10a10a8e284181e060105bf8d86960ce9ce0f" } }, "targets": [ @@ -38825,18 +38864,18 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "libusb1-sys 0.6.4", + "id": "libusb1-sys 0.7.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.6.4" + "version": "0.7.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -38848,16 +38887,16 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" } ], "selects": { - "cfg(target_env = \"msvc\")": [ + "cfg(target_os = \"windows\")": [ { "id": "vcpkg 0.2.15", "target": "vcpkg" @@ -38873,14 +38912,14 @@ ], "license_file": "LICENSE" }, - "libz-sys 1.1.12": { + "libz-sys 1.1.21": { "name": "libz-sys", - "version": "1.1.12", + "version": "1.1.21", "package_url": "https://github.com/rust-lang/libz-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/libz-sys/1.1.12/download", - "sha256": "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b" + "url": "https://static.crates.io/crates/libz-sys/1.1.21/download", + "sha256": "df9b68e50e6e0b26f672573834882eb57759f6db9b3be2ea3c35c91188bb4eaa" } }, "targets": [ @@ -38923,18 +38962,18 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "libz-sys 1.1.12", + "id": "libz-sys 1.1.21", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.1.12" + "version": "1.1.21" }, "build_script_attrs": { "compile_data_glob": [ @@ -38946,11 +38985,11 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" }, { @@ -39008,14 +39047,14 @@ ], "license_file": "LICENSE-APACHE" }, - "linux-raw-sys 0.4.13": { + "linux-raw-sys 0.4.15": { "name": "linux-raw-sys", - "version": "0.4.13", + "version": "0.4.15", "package_url": "https://github.com/sunfishcode/linux-raw-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/linux-raw-sys/0.4.13/download", - "sha256": "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" + "url": "https://static.crates.io/crates/linux-raw-sys/0.4.15/download", + "sha256": "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" } }, "targets": [ @@ -39052,48 +39091,57 @@ "aarch64-unknown-linux-gnu": [ "elf", "errno", + "std", "system" ], "aarch64-unknown-nixos-gnu": [ "elf", "errno", + "std", "system" ], "arm-unknown-linux-gnueabi": [ "elf", "errno", + "std", "system" ], "armv7-unknown-linux-gnueabi": [ "elf", "errno", + "std", "system" ], "i686-unknown-linux-gnu": [ "elf", "errno", + "std", "system" ], "powerpc-unknown-linux-gnu": [ + "std", "system" ], "s390x-unknown-linux-gnu": [ + "std", "system" ], "x86_64-unknown-linux-gnu": [ "elf", "errno", + "std", "system" ], "x86_64-unknown-nixos-gnu": [ "elf", "errno", + "std", "system" ] } }, "edition": "2021", - "version": "0.4.13" + "version": "0.4.15" }, "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ @@ -39102,14 +39150,14 @@ ], "license_file": "LICENSE-APACHE" }, - "litemap 0.7.3": { + "litemap 0.7.4": { "name": "litemap", - "version": "0.7.3", + "version": "0.7.4", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/litemap/0.7.3/download", - "sha256": "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" + "url": "https://static.crates.io/crates/litemap/0.7.4/download", + "sha256": "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" } }, "targets": [ @@ -39138,7 +39186,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.3" + "version": "0.7.4" }, "license": "Unicode-3.0", "license_ids": [ @@ -39178,7 +39226,7 @@ "deps": { "common": [ { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -39246,7 +39294,7 @@ "target": "byteorder" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -39324,7 +39372,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -39354,11 +39402,11 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" } ], @@ -39378,14 +39426,14 @@ ], "license_file": null }, - "local-channel 0.1.4": { + "local-channel 0.1.5": { "name": "local-channel", - "version": "0.1.4", + "version": "0.1.5", "package_url": "https://github.com/actix/actix-net", "repository": { "Http": { - "url": "https://static.crates.io/crates/local-channel/0.1.4/download", - "sha256": "e0a493488de5f18c8ffcba89eebb8532ffc562dc400490eb65b84893fae0b178" + "url": "https://static.crates.io/crates/local-channel/0.1.5/download", + "sha256": "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" } }, "targets": [ @@ -39418,14 +39466,14 @@ "target": "futures_sink" }, { - "id": "local-waker 0.1.3", + "id": "local-waker 0.1.4", "target": "local_waker" } ], "selects": {} }, "edition": "2021", - "version": "0.1.4" + "version": "0.1.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -39434,14 +39482,14 @@ ], "license_file": "LICENSE-APACHE" }, - "local-ip-address 0.5.6": { + "local-ip-address 0.5.7": { "name": "local-ip-address", - "version": "0.5.6", + "version": "0.5.7", "package_url": "https://github.com/EstebanBorai/local-ip-address", "repository": { "Http": { - "url": "https://static.crates.io/crates/local-ip-address/0.5.6/download", - "sha256": "66357e687a569abca487dc399a9c9ac19beb3f13991ed49f00c144e02cbd42ab" + "url": "https://static.crates.io/crates/local-ip-address/0.5.7/download", + "sha256": "612ed4ea9ce5acfb5d26339302528a5e1e59dfed95e9e11af3c083236ff1d15d" } }, "targets": [ @@ -39466,20 +39514,20 @@ "deps": { "common": [ { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], "selects": { "cfg(target_os = \"linux\")": [ { - "id": "neli 0.6.4", + "id": "neli 0.6.5", "target": "neli" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -39492,7 +39540,7 @@ } }, "edition": "2021", - "version": "0.5.6" + "version": "0.5.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -39501,14 +39549,14 @@ ], "license_file": "LICENSE-APACHE" }, - "local-waker 0.1.3": { + "local-waker 0.1.4": { "name": "local-waker", - "version": "0.1.3", - "package_url": "https://github.com/actix/actix-net.git", + "version": "0.1.4", + "package_url": "https://github.com/actix/actix-net", "repository": { "Http": { - "url": "https://static.crates.io/crates/local-waker/0.1.3/download", - "sha256": "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1" + "url": "https://static.crates.io/crates/local-waker/0.1.4/download", + "sha256": "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" } }, "targets": [ @@ -39530,8 +39578,8 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "0.1.3" + "edition": "2021", + "version": "0.1.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -39540,14 +39588,14 @@ ], "license_file": "LICENSE-APACHE" }, - "lock_api 0.4.10": { + "lock_api 0.4.12": { "name": "lock_api", - "version": "0.4.10", + "version": "0.4.12", "package_url": "https://github.com/Amanieu/parking_lot", "repository": { "Http": { - "url": "https://static.crates.io/crates/lock_api/0.4.10/download", - "sha256": "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" + "url": "https://static.crates.io/crates/lock_api/0.4.12/download", + "sha256": "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" } }, "targets": [ @@ -39591,7 +39639,7 @@ "deps": { "common": [ { - "id": "lock_api 0.4.10", + "id": "lock_api 0.4.12", "target": "build_script_build" }, { @@ -39601,8 +39649,8 @@ ], "selects": {} }, - "edition": "2018", - "version": "0.4.10" + "edition": "2021", + "version": "0.4.12" }, "build_script_attrs": { "compile_data_glob": [ @@ -39614,7 +39662,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -39628,14 +39676,14 @@ ], "license_file": "LICENSE-APACHE" }, - "log 0.4.20": { + "log 0.4.25": { "name": "log", - "version": "0.4.20", + "version": "0.4.25", "package_url": "https://github.com/rust-lang/log", "repository": { "Http": { - "url": "https://static.crates.io/crates/log/0.4.20/download", - "sha256": "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" + "url": "https://static.crates.io/crates/log/0.4.25/download", + "sha256": "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f" } }, "targets": [ @@ -39663,8 +39711,8 @@ ], "selects": {} }, - "edition": "2015", - "version": "0.4.20" + "edition": "2021", + "version": "0.4.25" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -39827,11 +39875,11 @@ "target": "fnv" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -39839,7 +39887,7 @@ "target": "regex_syntax" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -39895,11 +39943,11 @@ "target": "fnv" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -39971,6 +40019,69 @@ ], "license_file": null }, + "loom 0.7.2": { + "name": "loom", + "version": "0.7.2", + "package_url": "https://github.com/tokio-rs/loom", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/loom/0.7.2/download", + "sha256": "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" + } + }, + "targets": [ + { + "Library": { + "crate_name": "loom", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "loom", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "cfg-if 1.0.0", + "target": "cfg_if" + }, + { + "id": "generator 0.8.4", + "target": "generator" + }, + { + "id": "scoped-tls 1.0.1", + "target": "scoped_tls" + }, + { + "id": "tracing 0.1.41", + "target": "tracing" + }, + { + "id": "tracing-subscriber 0.3.19", + "target": "tracing_subscriber" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.7.2" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, "lru 0.7.8": { "name": "lru", "version": "0.7.8", @@ -40101,7 +40212,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -40124,11 +40235,11 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" } ], @@ -40268,7 +40379,7 @@ "selects": { "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] @@ -40368,7 +40479,7 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -40639,11 +40750,11 @@ "target": "ipnetwork" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" }, { @@ -40709,7 +40820,7 @@ "target": "digest" }, { - "id": "opaque-debug 0.3.0", + "id": "opaque-debug 0.3.1", "target": "opaque_debug" } ], @@ -40725,14 +40836,14 @@ ], "license_file": "LICENSE-APACHE" }, - "memchr 2.6.4": { + "memchr 2.7.4": { "name": "memchr", - "version": "2.6.4", + "version": "2.7.4", "package_url": "https://github.com/BurntSushi/memchr", "repository": { "Http": { - "url": "https://static.crates.io/crates/memchr/2.6.4/download", - "sha256": "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" + "url": "https://static.crates.io/crates/memchr/2.7.4/download", + "sha256": "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" } }, "targets": [ @@ -40763,7 +40874,7 @@ "selects": {} }, "edition": "2021", - "version": "2.6.4" + "version": "2.7.4" }, "license": "Unlicense OR MIT", "license_ids": [ @@ -40804,7 +40915,7 @@ "deps": { "common": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -40820,14 +40931,14 @@ ], "license_file": "LICENSE-APACHE" }, - "memmap2 0.5.10": { + "memmap2 0.9.5": { "name": "memmap2", - "version": "0.5.10", + "version": "0.9.5", "package_url": "https://github.com/RazrFalcon/memmap2-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/memmap2/0.5.10/download", - "sha256": "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" + "url": "https://static.crates.io/crates/memmap2/0.9.5/download", + "sha256": "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" } }, "targets": [ @@ -40854,14 +40965,14 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] } }, "edition": "2018", - "version": "0.5.10" + "version": "0.9.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -40939,7 +41050,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -40952,14 +41063,14 @@ ], "license_file": "LICENSE" }, - "memoffset 0.9.0": { + "memoffset 0.9.1": { "name": "memoffset", - "version": "0.9.0", + "version": "0.9.1", "package_url": "https://github.com/Gilnaa/memoffset", "repository": { "Http": { - "url": "https://static.crates.io/crates/memoffset/0.9.0/download", - "sha256": "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" + "url": "https://static.crates.io/crates/memoffset/0.9.1/download", + "sha256": "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" } }, "targets": [ @@ -41002,14 +41113,14 @@ "deps": { "common": [ { - "id": "memoffset 0.9.0", + "id": "memoffset 0.9.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2015", - "version": "0.9.0" + "version": "0.9.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -41021,7 +41132,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -41108,7 +41219,7 @@ "target": "byteorder" }, { - "id": "keccak 0.1.4", + "id": "keccak 0.1.5", "target": "keccak" }, { @@ -41191,7 +41302,7 @@ "target": "axum_otel_metrics" }, { - "id": "clap 4.5.20", + "id": "clap 4.5.26", "target": "clap" }, { @@ -41219,7 +41330,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -41235,11 +41346,11 @@ "target": "itertools" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -41247,11 +41358,11 @@ "target": "opentelemetry" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "pretty_assertions 1.4.0", + "id": "pretty_assertions 1.4.1", "target": "pretty_assertions" }, { @@ -41259,7 +41370,7 @@ "target": "prometheus" }, { - "id": "prometheus-parse 0.2.4", + "id": "prometheus-parse 0.2.5", "target": "prometheus_parse" }, { @@ -41267,7 +41378,7 @@ "target": "rand" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -41279,7 +41390,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -41295,7 +41406,7 @@ "target": "simple_logger" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -41311,7 +41422,7 @@ "target": "tower_http" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" } ], @@ -41363,14 +41474,14 @@ ], "license_file": "LICENSE-APACHE" }, - "mime_guess 2.0.4": { + "mime_guess 2.0.5": { "name": "mime_guess", - "version": "2.0.4", + "version": "2.0.5", "package_url": "https://github.com/abonander/mime_guess", "repository": { "Http": { - "url": "https://static.crates.io/crates/mime_guess/2.0.4/download", - "sha256": "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" + "url": "https://static.crates.io/crates/mime_guess/2.0.5/download", + "sha256": "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" } }, "targets": [ @@ -41418,18 +41529,18 @@ "target": "mime" }, { - "id": "mime_guess 2.0.4", + "id": "mime_guess 2.0.5", "target": "build_script_build" }, { - "id": "unicase 2.7.0", + "id": "unicase 2.8.1", "target": "unicase" } ], "selects": {} }, "edition": "2015", - "version": "2.0.4" + "version": "2.0.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -41441,7 +41552,7 @@ "deps": { "common": [ { - "id": "unicase 2.7.0", + "id": "unicase 2.8.1", "target": "unicase" } ], @@ -41576,11 +41687,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -41644,14 +41755,14 @@ ], "license_file": "LICENSE-APACHE" }, - "miniz_oxide 0.7.1": { + "miniz_oxide 0.8.3": { "name": "miniz_oxide", - "version": "0.7.1", + "version": "0.8.3", "package_url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", "repository": { "Http": { - "url": "https://static.crates.io/crates/miniz_oxide/0.7.1/download", - "sha256": "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" + "url": "https://static.crates.io/crates/miniz_oxide/0.8.3/download", + "sha256": "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924" } }, "targets": [ @@ -41682,14 +41793,14 @@ "deps": { "common": [ { - "id": "adler 1.0.2", - "target": "adler" + "id": "adler2 2.0.0", + "target": "adler2" } ], "selects": {} }, - "edition": "2018", - "version": "0.7.1" + "edition": "2021", + "version": "0.8.3" }, "license": "MIT OR Zlib OR Apache-2.0", "license_ids": [ @@ -41699,14 +41810,14 @@ ], "license_file": "LICENSE" }, - "mio 0.8.10": { + "mio 0.8.11": { "name": "mio", - "version": "0.8.10", + "version": "0.8.11", "package_url": "https://github.com/tokio-rs/mio", "repository": { "Http": { - "url": "https://static.crates.io/crates/mio/0.8.10/download", - "sha256": "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" + "url": "https://static.crates.io/crates/mio/0.8.11/download", + "sha256": "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" } }, "targets": [ @@ -41733,94 +41844,22 @@ "default", "log", "net", + "os-ext", "os-poll" ], - "selects": { - "aarch64-apple-darwin": [ - "os-ext" - ], - "aarch64-apple-ios": [ - "os-ext" - ], - "aarch64-apple-ios-sim": [ - "os-ext" - ], - "aarch64-linux-android": [ - "os-ext" - ], - "aarch64-unknown-fuchsia": [ - "os-ext" - ], - "aarch64-unknown-linux-gnu": [ - "os-ext" - ], - "aarch64-unknown-nixos-gnu": [ - "os-ext" - ], - "aarch64-unknown-nto-qnx710": [ - "os-ext" - ], - "arm-unknown-linux-gnueabi": [ - "os-ext" - ], - "armv7-linux-androideabi": [ - "os-ext" - ], - "armv7-unknown-linux-gnueabi": [ - "os-ext" - ], - "i686-apple-darwin": [ - "os-ext" - ], - "i686-linux-android": [ - "os-ext" - ], - "i686-unknown-freebsd": [ - "os-ext" - ], - "i686-unknown-linux-gnu": [ - "os-ext" - ], - "powerpc-unknown-linux-gnu": [ - "os-ext" - ], - "s390x-unknown-linux-gnu": [ - "os-ext" - ], - "x86_64-apple-darwin": [ - "os-ext" - ], - "x86_64-apple-ios": [ - "os-ext" - ], - "x86_64-linux-android": [ - "os-ext" - ], - "x86_64-unknown-freebsd": [ - "os-ext" - ], - "x86_64-unknown-fuchsia": [ - "os-ext" - ], - "x86_64-unknown-linux-gnu": [ - "os-ext" - ], - "x86_64-unknown-nixos-gnu": [ - "os-ext" - ] - } + "selects": {} }, "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" } ], "selects": { "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -41830,7 +41869,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -41843,7 +41882,7 @@ } }, "edition": "2018", - "version": "0.8.10" + "version": "0.8.11" }, "license": "MIT", "license_ids": [ @@ -41851,14 +41890,14 @@ ], "license_file": "LICENSE" }, - "mio 1.0.2": { + "mio 1.0.3": { "name": "mio", - "version": "1.0.2", + "version": "1.0.3", "package_url": "https://github.com/tokio-rs/mio", "repository": { "Http": { - "url": "https://static.crates.io/crates/mio/1.0.2/download", - "sha256": "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" + "url": "https://static.crates.io/crates/mio/1.0.3/download", + "sha256": "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" } }, "targets": [ @@ -41882,6 +41921,8 @@ ], "crate_features": { "common": [ + "default", + "log", "net", "os-ext", "os-poll" @@ -41889,18 +41930,22 @@ "selects": {} }, "deps": { - "common": [], + "common": [ + { + "id": "log 0.4.25", + "target": "log" + } + ], "selects": { "cfg(target_os = \"hermit\")": [ { - "id": "hermit-abi 0.3.9", - "target": "hermit_abi", - "alias": "libc" + "id": "libc 0.2.169", + "target": "libc" } ], "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -41910,7 +41955,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -41923,7 +41968,7 @@ } }, "edition": "2021", - "version": "1.0.2" + "version": "1.0.3" }, "license": "MIT", "license_ids": [ @@ -41976,14 +42021,14 @@ ], "license_file": null }, - "mockall 0.13.0": { + "mockall 0.13.1": { "name": "mockall", - "version": "0.13.0", + "version": "0.13.1", "package_url": "https://github.com/asomers/mockall", "repository": { "Http": { - "url": "https://static.crates.io/crates/mockall/0.13.0/download", - "sha256": "d4c28b3fb6d753d28c20e826cd46ee611fda1cf3cde03a443a974043247c065a" + "url": "https://static.crates.io/crates/mockall/0.13.1/download", + "sha256": "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2" } }, "targets": [ @@ -42020,11 +42065,11 @@ "target": "fragile" }, { - "id": "predicates 3.1.2", + "id": "predicates 3.1.3", "target": "predicates" }, { - "id": "predicates-tree 1.0.9", + "id": "predicates-tree 1.0.12", "target": "predicates_tree" } ], @@ -42034,13 +42079,13 @@ "proc_macro_deps": { "common": [ { - "id": "mockall_derive 0.13.0", + "id": "mockall_derive 0.13.1", "target": "mockall_derive" } ], "selects": {} }, - "version": "0.13.0" + "version": "0.13.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -42049,14 +42094,14 @@ ], "license_file": "LICENSE-APACHE" }, - "mockall_derive 0.13.0": { + "mockall_derive 0.13.1": { "name": "mockall_derive", - "version": "0.13.0", + "version": "0.13.1", "package_url": "https://github.com/asomers/mockall", "repository": { "Http": { - "url": "https://static.crates.io/crates/mockall_derive/0.13.0/download", - "sha256": "341014e7f530314e9a1fdbc7400b244efea7122662c96bfa248c31da5bfb2020" + "url": "https://static.crates.io/crates/mockall_derive/0.13.1/download", + "sha256": "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898" } }, "targets": [ @@ -42097,26 +42142,26 @@ "target": "cfg_if" }, { - "id": "mockall_derive 0.13.0", + "id": "mockall_derive 0.13.1", "target": "build_script_build" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.13.0" + "version": "0.13.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -42133,14 +42178,14 @@ ], "license_file": "LICENSE-APACHE" }, - "mockito 1.2.0": { + "mockito 1.6.1": { "name": "mockito", - "version": "1.2.0", + "version": "1.6.1", "package_url": "https://github.com/lipanski/mockito", "repository": { "Http": { - "url": "https://static.crates.io/crates/mockito/1.2.0/download", - "sha256": "f8d3038e23466858569c2d30a537f691fa0d53b51626630ae08262943e3bbb8b" + "url": "https://static.crates.io/crates/mockito/1.6.1/download", + "sha256": "652cd6d169a36eaf9d1e6bce1a221130439a966d7f27858af66a33a66e9c4ee2" } }, "targets": [ @@ -42177,19 +42222,39 @@ "target": "assert_json_diff" }, { - "id": "colored 2.0.4", + "id": "bytes 1.9.0", + "target": "bytes" + }, + { + "id": "colored 2.2.0", "target": "colored" }, { - "id": "futures 0.3.31", - "target": "futures" + "id": "futures-util 0.3.31", + "target": "futures_util" + }, + { + "id": "http 1.2.0", + "target": "http" + }, + { + "id": "http-body 1.0.1", + "target": "http_body" + }, + { + "id": "http-body-util 0.1.2", + "target": "http_body_util" }, { - "id": "hyper 0.14.27", + "id": "hyper 1.5.2", "target": "hyper" }, { - "id": "log 0.4.20", + "id": "hyper-util 0.1.10", + "target": "hyper_util" + }, + { + "id": "log 0.4.25", "target": "log" }, { @@ -42197,11 +42262,11 @@ "target": "rand" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -42209,18 +42274,18 @@ "target": "serde_urlencoded" }, { - "id": "similar 2.3.0", + "id": "similar 2.6.0", "target": "similar" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "1.2.0" + "version": "1.6.1" }, "license": "MIT", "license_ids": [ @@ -42228,14 +42293,14 @@ ], "license_file": "LICENSE" }, - "moka 0.12.8": { + "moka 0.12.10": { "name": "moka", - "version": "0.12.8", + "version": "0.12.10", "package_url": "https://github.com/moka-rs/moka", "repository": { "Http": { - "url": "https://static.crates.io/crates/moka/0.12.8/download", - "sha256": "32cf62eb4dd975d2dde76432fb1075c49e3ee2331cf36f1f8fd4b66550d32b6f" + "url": "https://static.crates.io/crates/moka/0.12.10/download", + "sha256": "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" } }, "targets": [ @@ -42272,13 +42337,10 @@ "crate_features": { "common": [ "async-lock", - "async-trait", - "atomic64", "default", "event-listener", "future", "futures-util", - "quanta", "sync" ], "selects": {} @@ -42286,11 +42348,11 @@ "deps": { "common": [ { - "id": "async-lock 3.3.0", + "id": "async-lock 3.4.0", "target": "async_lock" }, { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { @@ -42298,11 +42360,11 @@ "target": "crossbeam_epoch" }, { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" }, { - "id": "event-listener 5.3.1", + "id": "event-listener 5.4.0", "target": "event_listener" }, { @@ -42310,20 +42372,16 @@ "target": "futures_util" }, { - "id": "moka 0.12.8", + "id": "moka 0.12.10", "target": "build_script_build" }, { - "id": "once_cell 1.19.0", - "target": "once_cell" - }, - { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { - "id": "quanta 0.12.3", - "target": "quanta" + "id": "portable-atomic 1.10.0", + "target": "portable_atomic" }, { "id": "smallvec 1.13.2", @@ -42334,31 +42392,25 @@ "target": "tagptr" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "triomphe 0.1.9", - "target": "triomphe" - }, - { - "id": "uuid 1.11.0", + "id": "uuid 1.12.0", "target": "uuid" } ], - "selects": {} + "selects": { + "cfg(moka_loom)": [ + { + "id": "loom 0.7.2", + "target": "loom" + } + ] + } }, "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "async-trait 0.1.83", - "target": "async_trait" - } - ], - "selects": {} - }, - "version": "0.12.8" + "version": "0.12.10" }, "build_script_attrs": { "compile_data_glob": [ @@ -42372,7 +42424,7 @@ "selects": { "cfg(rustver)": [ { - "id": "rustc_version 0.4.0", + "id": "rustc_version 0.4.1", "target": "rustc_version" } ] @@ -42481,7 +42533,7 @@ "target": "bytes" }, { - "id": "encoding_rs 0.8.33", + "id": "encoding_rs 0.8.35", "target": "encoding_rs" }, { @@ -42493,15 +42545,15 @@ "target": "http" }, { - "id": "httparse 1.8.0", + "id": "httparse 1.9.5", "target": "httparse" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" }, { @@ -42532,7 +42584,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.4", + "id": "version_check 0.9.5", "target": "version_check" } ], @@ -42599,7 +42651,7 @@ "target": "bytes" }, { - "id": "encoding_rs 0.8.33", + "id": "encoding_rs 0.8.35", "target": "encoding_rs" }, { @@ -42611,11 +42663,11 @@ "target": "http" }, { - "id": "httparse 1.8.0", + "id": "httparse 1.9.5", "target": "httparse" }, { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" }, { @@ -42646,7 +42698,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.4", + "id": "version_check 0.9.5", "target": "version_check" } ], @@ -42659,14 +42711,14 @@ ], "license_file": "LICENSE" }, - "multimap 0.8.3": { + "multimap 0.10.0": { "name": "multimap", - "version": "0.8.3", + "version": "0.10.0", "package_url": "https://github.com/havarnov/multimap", "repository": { "Http": { - "url": "https://static.crates.io/crates/multimap/0.8.3/download", - "sha256": "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" + "url": "https://static.crates.io/crates/multimap/0.10.0/download", + "sha256": "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" } }, "targets": [ @@ -42689,23 +42741,23 @@ "**" ], "edition": "2015", - "version": "0.8.3" + "version": "0.10.0" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "neli 0.6.4": { + "neli 0.6.5": { "name": "neli", - "version": "0.6.4", + "version": "0.6.5", "package_url": "https://github.com/jbaublitz/neli", "repository": { "Http": { - "url": "https://static.crates.io/crates/neli/0.6.4/download", - "sha256": "1100229e06604150b3becd61a4965d5c70f3be1759544ea7274166f4be41ef43" + "url": "https://static.crates.io/crates/neli/0.6.5/download", + "sha256": "93062a0dce6da2517ea35f301dfc88184ce18d3601ec786a727a87bf535deca9" } }, "targets": [ @@ -42740,11 +42792,11 @@ "target": "byteorder" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" } ], @@ -42754,13 +42806,13 @@ "proc_macro_deps": { "common": [ { - "id": "neli-proc-macros 0.1.3", + "id": "neli-proc-macros 0.1.4", "target": "neli_proc_macros" } ], "selects": {} }, - "version": "0.6.4" + "version": "0.6.5" }, "license": "BSD-3-Clause", "license_ids": [ @@ -42768,14 +42820,14 @@ ], "license_file": "LICENSE" }, - "neli-proc-macros 0.1.3": { + "neli-proc-macros 0.1.4": { "name": "neli-proc-macros", - "version": "0.1.3", + "version": "0.1.4", "package_url": "https://github.com/jbaublitz/neli", "repository": { "Http": { - "url": "https://static.crates.io/crates/neli-proc-macros/0.1.3/download", - "sha256": "c168194d373b1e134786274020dae7fc5513d565ea2ebb9bc9ff17ffb69106d4" + "url": "https://static.crates.io/crates/neli-proc-macros/0.1.4/download", + "sha256": "0c8034b7fbb6f9455b2a96c19e6edf8dc9fc34c70449938d8ee3b4df363f61fe" } }, "targets": [ @@ -42800,15 +42852,15 @@ "deps": { "common": [ { - "id": "either 1.9.0", + "id": "either 1.13.0", "target": "either" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -42823,22 +42875,22 @@ "selects": {} }, "edition": "2018", - "version": "0.1.3" + "version": "0.1.4" }, "license": "BSD-3-Clause", "license_ids": [ "BSD-3-Clause" ], - "license_file": null + "license_file": "LICENSE" }, - "new_debug_unreachable 1.0.4": { + "new_debug_unreachable 1.0.6": { "name": "new_debug_unreachable", - "version": "1.0.4", + "version": "1.0.6", "package_url": "https://github.com/mbrubeck/rust-debug-unreachable", "repository": { "Http": { - "url": "https://static.crates.io/crates/new_debug_unreachable/1.0.4/download", - "sha256": "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" + "url": "https://static.crates.io/crates/new_debug_unreachable/1.0.6/download", + "sha256": "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" } }, "targets": [ @@ -42860,8 +42912,8 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "1.0.4" + "edition": "2021", + "version": "1.0.6" }, "license": "MIT", "license_ids": [ @@ -42905,11 +42957,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "serde_path_to_error 0.1.14", + "id": "serde_path_to_error 0.1.16", "target": "serde_path_to_error" }, { @@ -42917,7 +42969,7 @@ "target": "strum" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -43021,7 +43073,7 @@ "target": "cfg_if" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -43088,7 +43140,7 @@ "target": "cfg_if" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -43144,7 +43196,7 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -43152,11 +43204,11 @@ "target": "cfg_if" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "memoffset 0.9.0", + "id": "memoffset 0.9.1", "target": "memoffset" } ], @@ -43223,7 +43275,7 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -43231,7 +43283,7 @@ "target": "cfg_if" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -43352,7 +43404,7 @@ "deps": { "common": [ { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" }, { @@ -43622,7 +43674,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -43761,11 +43813,11 @@ "target": "byteorder" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "libm 0.2.8", + "id": "libm 0.2.11", "target": "libm" }, { @@ -43777,7 +43829,7 @@ "target": "num_integer" }, { - "id": "num-iter 0.1.43", + "id": "num-iter 0.1.45", "target": "num_iter" }, { @@ -43892,11 +43944,11 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.4", + "id": "arrayvec 0.7.6", "target": "arrayvec" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" } ], @@ -43967,14 +44019,14 @@ ], "license_file": "LICENSE-APACHE" }, - "num-iter 0.1.43": { + "num-iter 0.1.45": { "name": "num-iter", - "version": "0.1.43", + "version": "0.1.45", "package_url": "https://github.com/rust-num/num-iter", "repository": { "Http": { - "url": "https://static.crates.io/crates/num-iter/0.1.43/download", - "sha256": "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" + "url": "https://static.crates.io/crates/num-iter/0.1.45/download", + "sha256": "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" } }, "targets": [ @@ -43989,18 +44041,6 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], "library_target_name": "num_iter", @@ -44014,10 +44054,6 @@ "id": "num-integer 0.1.46", "target": "num_integer" }, - { - "id": "num-iter 0.1.43", - "target": "build_script_build" - }, { "id": "num-traits 0.2.19", "target": "num_traits" @@ -44025,25 +44061,8 @@ ], "selects": {} }, - "edition": "2015", - "version": "0.1.43" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "autocfg 1.1.0", - "target": "autocfg" - } - ], - "selects": {} - } + "edition": "2018", + "version": "0.1.45" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -44137,7 +44156,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -44204,7 +44223,7 @@ "deps": { "common": [ { - "id": "libm 0.2.8", + "id": "libm 0.2.11", "target": "libm" }, { @@ -44227,7 +44246,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -44275,7 +44294,7 @@ "selects": { "cfg(not(windows))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -44297,14 +44316,14 @@ ], "license_file": "LICENSE-APACHE" }, - "num_enum 0.7.0": { + "num_enum 0.7.3": { "name": "num_enum", - "version": "0.7.0", + "version": "0.7.3", "package_url": "https://github.com/illicitonion/num_enum", "repository": { "Http": { - "url": "https://static.crates.io/crates/num_enum/0.7.0/download", - "sha256": "70bf6736f74634d299d00086f02986875b3c2d924781a6a2cb6c201e73da0ceb" + "url": "https://static.crates.io/crates/num_enum/0.7.3/download", + "sha256": "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" } }, "targets": [ @@ -44337,13 +44356,13 @@ "proc_macro_deps": { "common": [ { - "id": "num_enum_derive 0.7.0", + "id": "num_enum_derive 0.7.3", "target": "num_enum_derive" } ], "selects": {} }, - "version": "0.7.0" + "version": "0.7.3" }, "license": "BSD-3-Clause OR MIT OR Apache-2.0", "license_ids": [ @@ -44353,14 +44372,14 @@ ], "license_file": "LICENSE-APACHE" }, - "num_enum_derive 0.7.0": { + "num_enum_derive 0.7.3": { "name": "num_enum_derive", - "version": "0.7.0", + "version": "0.7.3", "package_url": "https://github.com/illicitonion/num_enum", "repository": { "Http": { - "url": "https://static.crates.io/crates/num_enum_derive/0.7.0/download", - "sha256": "56ea360eafe1022f7cc56cd7b869ed57330fb2453d0c7831d99b74c65d2f5597" + "url": "https://static.crates.io/crates/num_enum_derive/0.7.3/download", + "sha256": "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" } }, "targets": [ @@ -44392,26 +44411,26 @@ "deps": { "common": [ { - "id": "proc-macro-crate 1.3.1", + "id": "proc-macro-crate 3.2.0", "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.7.0" + "version": "0.7.3" }, "license": "BSD-3-Clause OR MIT OR Apache-2.0", "license_ids": [ @@ -44421,14 +44440,14 @@ ], "license_file": "LICENSE-APACHE" }, - "num_threads 0.1.6": { + "num_threads 0.1.7": { "name": "num_threads", - "version": "0.1.6", + "version": "0.1.7", "package_url": "https://github.com/jhpratt/num_threads", "repository": { "Http": { - "url": "https://static.crates.io/crates/num_threads/0.1.6/download", - "sha256": "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" + "url": "https://static.crates.io/crates/num_threads/0.1.7/download", + "sha256": "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" } }, "targets": [ @@ -44455,14 +44474,14 @@ "selects": { "cfg(any(target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] } }, "edition": "2015", - "version": "0.1.6" + "version": "0.1.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -44516,66 +44535,6 @@ ], "license_file": null }, - "object 0.32.1": { - "name": "object", - "version": "0.32.1", - "package_url": "https://github.com/gimli-rs/object", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/object/0.32.1/download", - "sha256": "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" - } - }, - "targets": [ - { - "Library": { - "crate_name": "object", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "object", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "archive", - "coff", - "elf", - "macho", - "pe", - "read_core", - "unaligned" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "memchr 2.6.4", - "target": "memchr" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.32.1" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "object 0.36.7": { "name": "object", "version": "0.36.7", @@ -44630,12 +44589,137 @@ "write_std", "xcoff" ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + "archive", + "unaligned" + ], + "aarch64-apple-ios": [ + "archive", + "unaligned" + ], + "aarch64-apple-ios-sim": [ + "archive", + "unaligned" + ], + "aarch64-linux-android": [ + "archive", + "unaligned" + ], + "aarch64-unknown-fuchsia": [ + "archive", + "unaligned" + ], + "aarch64-unknown-linux-gnu": [ + "archive", + "unaligned" + ], + "aarch64-unknown-nixos-gnu": [ + "archive", + "unaligned" + ], + "aarch64-unknown-nto-qnx710": [ + "archive", + "unaligned" + ], + "arm-unknown-linux-gnueabi": [ + "archive", + "unaligned" + ], + "armv7-linux-androideabi": [ + "archive", + "unaligned" + ], + "armv7-unknown-linux-gnueabi": [ + "archive", + "unaligned" + ], + "i686-apple-darwin": [ + "archive", + "unaligned" + ], + "i686-linux-android": [ + "archive", + "unaligned" + ], + "i686-unknown-freebsd": [ + "archive", + "unaligned" + ], + "i686-unknown-linux-gnu": [ + "archive", + "unaligned" + ], + "powerpc-unknown-linux-gnu": [ + "archive", + "unaligned" + ], + "riscv32imc-unknown-none-elf": [ + "archive", + "unaligned" + ], + "riscv64gc-unknown-none-elf": [ + "archive", + "unaligned" + ], + "s390x-unknown-linux-gnu": [ + "archive", + "unaligned" + ], + "thumbv7em-none-eabi": [ + "archive", + "unaligned" + ], + "thumbv8m.main-none-eabi": [ + "archive", + "unaligned" + ], + "wasm32-unknown-unknown": [ + "archive", + "unaligned" + ], + "wasm32-wasip1": [ + "archive", + "unaligned" + ], + "x86_64-apple-darwin": [ + "archive", + "unaligned" + ], + "x86_64-apple-ios": [ + "archive", + "unaligned" + ], + "x86_64-linux-android": [ + "archive", + "unaligned" + ], + "x86_64-unknown-freebsd": [ + "archive", + "unaligned" + ], + "x86_64-unknown-fuchsia": [ + "archive", + "unaligned" + ], + "x86_64-unknown-linux-gnu": [ + "archive", + "unaligned" + ], + "x86_64-unknown-nixos-gnu": [ + "archive", + "unaligned" + ], + "x86_64-unknown-none": [ + "archive", + "unaligned" + ] + } }, "deps": { "common": [ { - "id": "crc32fast 1.3.2", + "id": "crc32fast 1.4.2", "target": "crc32fast" }, { @@ -44643,11 +44727,11 @@ "target": "hashbrown" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" }, { @@ -44675,14 +44759,14 @@ ], "license_file": "LICENSE-APACHE" }, - "oid-registry 0.7.0": { + "oid-registry 0.7.1": { "name": "oid-registry", - "version": "0.7.0", + "version": "0.7.1", "package_url": "https://github.com/rusticata/oid-registry.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/oid-registry/0.7.0/download", - "sha256": "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d" + "url": "https://static.crates.io/crates/oid-registry/0.7.1/download", + "sha256": "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9" } }, "targets": [ @@ -44735,18 +44819,18 @@ "deps": { "common": [ { - "id": "asn1-rs 0.6.1", + "id": "asn1-rs 0.6.2", "target": "asn1_rs" }, { - "id": "oid-registry 0.7.0", + "id": "oid-registry 0.7.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.7.0" + "version": "0.7.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -44763,14 +44847,14 @@ ], "license_file": "LICENSE-APACHE" }, - "once_cell 1.19.0": { + "once_cell 1.20.2": { "name": "once_cell", - "version": "1.19.0", + "version": "1.20.2", "package_url": "https://github.com/matklad/once_cell", "repository": { "Http": { - "url": "https://static.crates.io/crates/once_cell/1.19.0/download", - "sha256": "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" + "url": "https://static.crates.io/crates/once_cell/1.20.2/download", + "sha256": "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" } }, "targets": [ @@ -44802,7 +44886,7 @@ "selects": {} }, "edition": "2021", - "version": "1.19.0" + "version": "1.20.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -44811,14 +44895,14 @@ ], "license_file": "LICENSE-APACHE" }, - "oorandom 11.1.3": { + "oorandom 11.1.4": { "name": "oorandom", - "version": "11.1.3", - "package_url": "https://sr.ht/~icefox/oorandom/", + "version": "11.1.4", + "package_url": "https://hg.sr.ht/~icefox/oorandom", "repository": { "Http": { - "url": "https://static.crates.io/crates/oorandom/11.1.3/download", - "sha256": "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" + "url": "https://static.crates.io/crates/oorandom/11.1.4/download", + "sha256": "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9" } }, "targets": [ @@ -44841,7 +44925,7 @@ "**" ], "edition": "2018", - "version": "11.1.3" + "version": "11.1.4" }, "license": "MIT", "license_ids": [ @@ -44849,14 +44933,14 @@ ], "license_file": "LICENSE-MIT" }, - "opaque-debug 0.3.0": { + "opaque-debug 0.3.1": { "name": "opaque-debug", - "version": "0.3.0", + "version": "0.3.1", "package_url": "https://github.com/RustCrypto/utils", "repository": { "Http": { - "url": "https://static.crates.io/crates/opaque-debug/0.3.0/download", - "sha256": "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" + "url": "https://static.crates.io/crates/opaque-debug/0.3.1/download", + "sha256": "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" } }, "targets": [ @@ -44879,7 +44963,7 @@ "**" ], "edition": "2018", - "version": "0.3.0" + "version": "0.3.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -44930,7 +45014,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.4", + "id": "arrayvec 0.7.6", "target": "arrayvec" }, { @@ -44948,7 +45032,7 @@ "proc_macro_deps": { "common": [ { - "id": "auto_impl 1.1.0", + "id": "auto_impl 1.2.1", "target": "auto_impl" }, { @@ -45003,11 +45087,11 @@ "target": "bytes" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -45074,7 +45158,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -45129,14 +45213,14 @@ ], "license_file": "LICENSE-APACHE" }, - "openssl-sys 0.9.102": { + "openssl-sys 0.9.104": { "name": "openssl-sys", - "version": "0.9.102", + "version": "0.9.104", "package_url": "https://github.com/sfackler/rust-openssl", "repository": { "Http": { - "url": "https://static.crates.io/crates/openssl-sys/0.9.102/download", - "sha256": "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" + "url": "https://static.crates.io/crates/openssl-sys/0.9.104/download", + "sha256": "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" } }, "targets": [ @@ -45173,18 +45257,18 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "openssl-sys 0.9.102", + "id": "openssl-sys 0.9.104", "target": "build_script_main" } ], "selects": {} }, - "edition": "2018", - "version": "0.9.102" + "edition": "2021", + "version": "0.9.104" }, "build_script_attrs": { "compile_data_glob": [ @@ -45196,11 +45280,11 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" }, { @@ -45383,19 +45467,19 @@ "target": "futures_sink" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -45406,7 +45490,7 @@ "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" } ] @@ -45421,14 +45505,14 @@ ], "license_file": "LICENSE" }, - "opentelemetry 0.27.0": { + "opentelemetry 0.27.1": { "name": "opentelemetry", - "version": "0.27.0", + "version": "0.27.1", "package_url": "https://github.com/open-telemetry/opentelemetry-rust", "repository": { "Http": { - "url": "https://static.crates.io/crates/opentelemetry/0.27.0/download", - "sha256": "0f3cebff57f7dbd1255b44d8bddc2cebeb0ea677dbaa2e25a3070a91b318f660" + "url": "https://static.crates.io/crates/opentelemetry/0.27.1/download", + "sha256": "ab70038c28ed37b97d8ed414b6429d343a8bbf44c9f79ec854f3a643029ba6d7" } }, "targets": [ @@ -45453,10 +45537,15 @@ "crate_features": { "common": [ "default", + "futures-core", + "futures-sink", + "internal-logs", "logs", "metrics", "pin-project-lite", - "trace" + "thiserror", + "trace", + "tracing" ], "selects": {} }, @@ -45471,29 +45560,29 @@ "target": "futures_sink" }, { - "id": "once_cell 1.19.0", - "target": "once_cell" - }, - { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" + }, + { + "id": "tracing 0.1.41", + "target": "tracing" } ], "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" } ] } }, "edition": "2021", - "version": "0.27.0" + "version": "0.27.1" }, "license": "Apache-2.0", "license_ids": [ @@ -45557,7 +45646,7 @@ "target": "http" }, { - "id": "opentelemetry 0.27.0", + "id": "opentelemetry 0.27.1", "target": "opentelemetry" }, { @@ -45569,15 +45658,15 @@ "target": "opentelemetry_sdk" }, { - "id": "prost 0.13.3", + "id": "prost 0.13.4", "target": "prost" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -45595,7 +45684,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -45641,7 +45730,7 @@ "deps": { "common": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -45710,7 +45799,7 @@ "deps": { "common": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -45785,7 +45874,7 @@ "deps": { "common": [ { - "id": "opentelemetry 0.27.0", + "id": "opentelemetry 0.27.1", "target": "opentelemetry" }, { @@ -45793,7 +45882,7 @@ "target": "opentelemetry_sdk" }, { - "id": "prost 0.13.3", + "id": "prost 0.13.4", "target": "prost" }, { @@ -45911,22 +46000,22 @@ "target": "indexmap" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], "selects": { "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" } ] @@ -45994,15 +46083,15 @@ "target": "indexmap" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -46013,7 +46102,7 @@ "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" } ] @@ -46071,7 +46160,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { @@ -46087,7 +46176,7 @@ "target": "futures_util" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -46103,7 +46192,7 @@ "target": "rand" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -46113,7 +46202,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -46172,7 +46261,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { @@ -46188,7 +46277,7 @@ "target": "futures_util" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -46208,11 +46297,11 @@ "target": "rand" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -46222,7 +46311,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -46284,7 +46373,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { @@ -46300,11 +46389,11 @@ "target": "futures_util" }, { - "id": "glob 0.3.1", + "id": "glob 0.3.2", "target": "glob" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -46312,7 +46401,7 @@ "target": "opentelemetry" }, { - "id": "ordered-float 4.2.0", + "id": "ordered-float 4.6.0", "target": "ordered_float" }, { @@ -46324,11 +46413,11 @@ "target": "rand" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -46342,7 +46431,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -46419,11 +46508,11 @@ "target": "futures_util" }, { - "id": "glob 0.3.1", + "id": "glob 0.3.2", "target": "glob" }, { - "id": "opentelemetry 0.27.0", + "id": "opentelemetry 0.27.1", "target": "opentelemetry" }, { @@ -46435,15 +46524,15 @@ "target": "rand" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -46461,7 +46550,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -46583,14 +46672,14 @@ ], "license_file": "LICENSE-MIT" }, - "ordered-float 4.2.0": { + "ordered-float 4.6.0": { "name": "ordered-float", - "version": "4.2.0", + "version": "4.6.0", "package_url": "https://github.com/reem/rust-ordered-float", "repository": { "Http": { - "url": "https://static.crates.io/crates/ordered-float/4.2.0/download", - "sha256": "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e" + "url": "https://static.crates.io/crates/ordered-float/4.6.0/download", + "sha256": "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951" } }, "targets": [ @@ -46629,7 +46718,7 @@ "selects": {} }, "edition": "2021", - "version": "4.2.0" + "version": "4.6.0" }, "license": "MIT", "license_ids": [ @@ -46777,7 +46866,7 @@ "target": "elliptic_curve" }, { - "id": "primeorder 0.13.2", + "id": "primeorder 0.13.6", "target": "primeorder" }, { @@ -46852,14 +46941,14 @@ ], "license_file": "LICENSE-APACHE" }, - "parity-scale-codec 3.6.4": { + "parity-scale-codec 3.6.12": { "name": "parity-scale-codec", - "version": "3.6.4", + "version": "3.6.12", "package_url": "https://github.com/paritytech/parity-scale-codec", "repository": { "Http": { - "url": "https://static.crates.io/crates/parity-scale-codec/3.6.4/download", - "sha256": "dd8e946cc0cc711189c0b0249fb8b599cbeeab9784d83c415719368bb8d4ac64" + "url": "https://static.crates.io/crates/parity-scale-codec/3.6.12/download", + "sha256": "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee" } }, "targets": [ @@ -46895,7 +46984,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.4", + "id": "arrayvec 0.7.6", "target": "arrayvec" }, { @@ -46913,17 +47002,17 @@ "proc_macro_deps": { "common": [ { - "id": "impl-trait-for-tuples 0.2.2", + "id": "impl-trait-for-tuples 0.2.3", "target": "impl_trait_for_tuples" }, { - "id": "parity-scale-codec-derive 3.6.5", + "id": "parity-scale-codec-derive 3.6.12", "target": "parity_scale_codec_derive" } ], "selects": {} }, - "version": "3.6.4" + "version": "3.6.12" }, "license": "Apache-2.0", "license_ids": [ @@ -46931,14 +47020,14 @@ ], "license_file": "LICENSE" }, - "parity-scale-codec-derive 3.6.5": { + "parity-scale-codec-derive 3.6.12": { "name": "parity-scale-codec-derive", - "version": "3.6.5", + "version": "3.6.12", "package_url": null, "repository": { "Http": { - "url": "https://static.crates.io/crates/parity-scale-codec-derive/3.6.5/download", - "sha256": "312270ee71e1cd70289dacf597cab7b207aa107d2f28191c2ae45b2ece18a260" + "url": "https://static.crates.io/crates/parity-scale-codec-derive/3.6.12/download", + "sha256": "d830939c76d294956402033aee57a6da7b438f2294eb94864c37b0569053a42c" } }, "targets": [ @@ -46969,15 +47058,15 @@ "deps": { "common": [ { - "id": "proc-macro-crate 1.3.1", + "id": "proc-macro-crate 3.2.0", "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -46988,7 +47077,7 @@ "selects": {} }, "edition": "2021", - "version": "3.6.5" + "version": "3.6.12" }, "license": "Apache-2.0", "license_ids": [ @@ -46996,14 +47085,14 @@ ], "license_file": null }, - "parking 2.1.1": { + "parking 2.2.1": { "name": "parking", - "version": "2.1.1", + "version": "2.2.1", "package_url": "https://github.com/smol-rs/parking", "repository": { "Http": { - "url": "https://static.crates.io/crates/parking/2.1.1/download", - "sha256": "e52c774a4c39359c1d1c52e43f73dd91a75a614652c825408eec30c95a9b2067" + "url": "https://static.crates.io/crates/parking/2.2.1/download", + "sha256": "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" } }, "targets": [ @@ -47026,7 +47115,7 @@ "**" ], "edition": "2018", - "version": "2.1.1" + "version": "2.2.1" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -47073,11 +47162,11 @@ "deps": { "common": [ { - "id": "instant 0.1.12", + "id": "instant 0.1.13", "target": "instant" }, { - "id": "lock_api 0.4.10", + "id": "lock_api 0.4.12", "target": "lock_api" }, { @@ -47097,14 +47186,14 @@ ], "license_file": "LICENSE-APACHE" }, - "parking_lot 0.12.1": { + "parking_lot 0.12.3": { "name": "parking_lot", - "version": "0.12.1", + "version": "0.12.3", "package_url": "https://github.com/Amanieu/parking_lot", "repository": { "Http": { - "url": "https://static.crates.io/crates/parking_lot/0.12.1/download", - "sha256": "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" + "url": "https://static.crates.io/crates/parking_lot/0.12.3/download", + "sha256": "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" } }, "targets": [ @@ -47135,18 +47224,18 @@ "deps": { "common": [ { - "id": "lock_api 0.4.10", + "id": "lock_api 0.4.12", "target": "lock_api" }, { - "id": "parking_lot_core 0.9.8", + "id": "parking_lot_core 0.9.10", "target": "parking_lot_core" } ], "selects": {} }, - "edition": "2018", - "version": "0.12.1" + "edition": "2021", + "version": "0.12.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -47203,7 +47292,7 @@ "target": "cfg_if" }, { - "id": "instant 0.1.12", + "id": "instant 0.1.13", "target": "instant" }, { @@ -47224,7 +47313,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -47254,14 +47343,14 @@ ], "license_file": "LICENSE-APACHE" }, - "parking_lot_core 0.9.8": { + "parking_lot_core 0.9.10": { "name": "parking_lot_core", - "version": "0.9.8", + "version": "0.9.10", "package_url": "https://github.com/Amanieu/parking_lot", "repository": { "Http": { - "url": "https://static.crates.io/crates/parking_lot_core/0.9.8/download", - "sha256": "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" + "url": "https://static.crates.io/crates/parking_lot_core/0.9.10/download", + "sha256": "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" } }, "targets": [ @@ -47302,7 +47391,7 @@ "target": "cfg_if" }, { - "id": "parking_lot_core 0.9.8", + "id": "parking_lot_core 0.9.10", "target": "build_script_build" }, { @@ -47313,26 +47402,26 @@ "selects": { "cfg(target_os = \"redox\")": [ { - "id": "redox_syscall 0.3.5", + "id": "redox_syscall 0.5.8", "target": "syscall" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(windows)": [ { - "id": "windows-targets 0.48.5", + "id": "windows-targets 0.52.6", "target": "windows_targets" } ] } }, - "edition": "2018", - "version": "0.9.8" + "edition": "2021", + "version": "0.9.10" }, "build_script_attrs": { "compile_data_glob": [ @@ -47519,14 +47608,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pcre2 0.2.6": { + "pcre2 0.2.9": { "name": "pcre2", - "version": "0.2.6", + "version": "0.2.9", "package_url": "https://github.com/BurntSushi/rust-pcre2", "repository": { "Http": { - "url": "https://static.crates.io/crates/pcre2/0.2.6/download", - "sha256": "4c9d53a8ea5fc3d3568d3de4bebc12606fd0eb8234c602576f1f1ee4880488a7" + "url": "https://static.crates.io/crates/pcre2/0.2.9/download", + "sha256": "3be55c43ac18044541d58d897e8f4c55157218428953ebd39d86df3ba0286b2b" } }, "targets": [ @@ -47551,22 +47640,22 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "pcre2-sys 0.2.8", + "id": "pcre2-sys 0.2.9", "target": "pcre2_sys" } ], "selects": {} }, "edition": "2021", - "version": "0.2.6" + "version": "0.2.9" }, "license": "Unlicense OR MIT", "license_ids": [ @@ -47575,14 +47664,14 @@ ], "license_file": "LICENSE-MIT" }, - "pcre2-sys 0.2.8": { + "pcre2-sys 0.2.9": { "name": "pcre2-sys", - "version": "0.2.8", + "version": "0.2.9", "package_url": "https://github.com/BurntSushi/rust-pcre2", "repository": { "Http": { - "url": "https://static.crates.io/crates/pcre2-sys/0.2.8/download", - "sha256": "25b8a7b5253a4465b873a21ee7e8d6ec561a57eed5d319621bec36bea35c86ae" + "url": "https://static.crates.io/crates/pcre2-sys/0.2.9/download", + "sha256": "550f5d18fb1b90c20b87e161852c10cde77858c3900c5059b5ad2a1449f11d8a" } }, "targets": [ @@ -47619,18 +47708,18 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "pcre2-sys 0.2.8", + "id": "pcre2-sys 0.2.9", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.2.8" + "version": "0.2.9" }, "build_script_attrs": { "compile_data_glob": [ @@ -47642,11 +47731,11 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" } ], @@ -47901,14 +47990,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pest 2.7.4": { + "pest 2.7.15": { "name": "pest", - "version": "2.7.4", + "version": "2.7.15", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest/2.7.4/download", - "sha256": "c022f1e7b65d6a24c0dbbd5fb344c66881bc01f3e5ae74a1c8100f2f985d98a4" + "url": "https://static.crates.io/crates/pest/2.7.15/download", + "sha256": "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc" } }, "targets": [ @@ -47941,22 +48030,22 @@ "deps": { "common": [ { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 2.0.11", "target": "thiserror" }, { - "id": "ucd-trie 0.1.6", + "id": "ucd-trie 0.1.7", "target": "ucd_trie" } ], "selects": {} }, "edition": "2021", - "version": "2.7.4" + "version": "2.7.15" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -47965,14 +48054,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pest_derive 2.7.4": { + "pest_derive 2.7.15": { "name": "pest_derive", - "version": "2.7.4", + "version": "2.7.15", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_derive/2.7.4/download", - "sha256": "35513f630d46400a977c4cb58f78e1bfbe01434316e60c37d27b9ad6139c66d8" + "url": "https://static.crates.io/crates/pest_derive/2.7.15/download", + "sha256": "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e" } }, "targets": [ @@ -48004,18 +48093,18 @@ "deps": { "common": [ { - "id": "pest 2.7.4", + "id": "pest 2.7.15", "target": "pest" }, { - "id": "pest_generator 2.7.4", + "id": "pest_generator 2.7.15", "target": "pest_generator" } ], "selects": {} }, "edition": "2021", - "version": "2.7.4" + "version": "2.7.15" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -48024,14 +48113,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pest_generator 2.7.4": { + "pest_generator 2.7.15": { "name": "pest_generator", - "version": "2.7.4", + "version": "2.7.15", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_generator/2.7.4/download", - "sha256": "bc9fc1b9e7057baba189b5c626e2d6f40681ae5b6eb064dc7c7834101ec8123a" + "url": "https://static.crates.io/crates/pest_generator/2.7.15/download", + "sha256": "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b" } }, "targets": [ @@ -48062,30 +48151,30 @@ "deps": { "common": [ { - "id": "pest 2.7.4", + "id": "pest 2.7.15", "target": "pest" }, { - "id": "pest_meta 2.7.4", + "id": "pest_meta 2.7.15", "target": "pest_meta" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.7.4" + "version": "2.7.15" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -48094,14 +48183,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pest_meta 2.7.4": { + "pest_meta 2.7.15": { "name": "pest_meta", - "version": "2.7.4", + "version": "2.7.15", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_meta/2.7.4/download", - "sha256": "1df74e9e7ec4053ceb980e7c0c8bd3594e977fde1af91daba9c928e8e8c6708d" + "url": "https://static.crates.io/crates/pest_meta/2.7.15/download", + "sha256": "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea" } }, "targets": [ @@ -48132,18 +48221,18 @@ "deps": { "common": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "pest 2.7.4", + "id": "pest 2.7.15", "target": "pest" } ], "selects": {} }, "edition": "2021", - "version": "2.7.4" + "version": "2.7.15" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -48152,14 +48241,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pest_vm 2.7.4": { + "pest_vm 2.7.15": { "name": "pest_vm", - "version": "2.7.4", + "version": "2.7.15", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_vm/2.7.4/download", - "sha256": "e42d84ab5b383273ab842bdc50249b5fea1cec928bcf3338e7749113f25bab7a" + "url": "https://static.crates.io/crates/pest_vm/2.7.15/download", + "sha256": "a8151168a80801131f6e0e79d6c84fa337ccd2493c99e59de027354c3e6fca0b" } }, "targets": [ @@ -48184,18 +48273,18 @@ "deps": { "common": [ { - "id": "pest 2.7.4", + "id": "pest 2.7.15", "target": "pest" }, { - "id": "pest_meta 2.7.4", + "id": "pest_meta 2.7.15", "target": "pest_meta" } ], "selects": {} }, "edition": "2021", - "version": "2.7.4" + "version": "2.7.15" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -48204,14 +48293,14 @@ ], "license_file": null }, - "petgraph 0.6.4": { + "petgraph 0.6.5": { "name": "petgraph", - "version": "0.6.4", + "version": "0.6.5", "package_url": "https://github.com/petgraph/petgraph", "repository": { "Http": { - "url": "https://static.crates.io/crates/petgraph/0.6.4/download", - "sha256": "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" + "url": "https://static.crates.io/crates/petgraph/0.6.5/download", + "sha256": "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" } }, "targets": [ @@ -48240,14 +48329,14 @@ "target": "fixedbitset" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" } ], "selects": {} }, "edition": "2018", - "version": "0.6.4" + "version": "0.6.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -48310,14 +48399,14 @@ ], "license_file": null }, - "phf 0.11.2": { + "phf 0.11.3": { "name": "phf", - "version": "0.11.2", + "version": "0.11.3", "package_url": "https://github.com/rust-phf/rust-phf", "repository": { "Http": { - "url": "https://static.crates.io/crates/phf/0.11.2/download", - "sha256": "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" + "url": "https://static.crates.io/crates/phf/0.11.3/download", + "sha256": "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" } }, "targets": [ @@ -48351,7 +48440,7 @@ "deps": { "common": [ { - "id": "phf_shared 0.11.2", + "id": "phf_shared 0.11.3", "target": "phf_shared" } ], @@ -48361,13 +48450,13 @@ "proc_macro_deps": { "common": [ { - "id": "phf_macros 0.11.2", + "id": "phf_macros 0.11.3", "target": "phf_macros" } ], "selects": {} }, - "version": "0.11.2" + "version": "0.11.3" }, "license": "MIT", "license_ids": [ @@ -48477,14 +48566,14 @@ ], "license_file": null }, - "phf_generator 0.11.2": { + "phf_generator 0.11.3": { "name": "phf_generator", - "version": "0.11.2", + "version": "0.11.3", "package_url": "https://github.com/rust-phf/rust-phf", "repository": { "Http": { - "url": "https://static.crates.io/crates/phf_generator/0.11.2/download", - "sha256": "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" + "url": "https://static.crates.io/crates/phf_generator/0.11.3/download", + "sha256": "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" } }, "targets": [ @@ -48509,7 +48598,7 @@ "deps": { "common": [ { - "id": "phf_shared 0.11.2", + "id": "phf_shared 0.11.3", "target": "phf_shared" }, { @@ -48520,7 +48609,7 @@ "selects": {} }, "edition": "2021", - "version": "0.11.2" + "version": "0.11.3" }, "license": "MIT", "license_ids": [ @@ -48528,14 +48617,14 @@ ], "license_file": "LICENSE" }, - "phf_macros 0.11.2": { + "phf_macros 0.11.3": { "name": "phf_macros", - "version": "0.11.2", + "version": "0.11.3", "package_url": "https://github.com/rust-phf/rust-phf", "repository": { "Http": { - "url": "https://static.crates.io/crates/phf_macros/0.11.2/download", - "sha256": "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" + "url": "https://static.crates.io/crates/phf_macros/0.11.3/download", + "sha256": "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" } }, "targets": [ @@ -48560,36 +48649,36 @@ "deps": { "common": [ { - "id": "phf_generator 0.11.2", + "id": "phf_generator 0.11.3", "target": "phf_generator" }, { - "id": "phf_shared 0.11.2", + "id": "phf_shared 0.11.3", "target": "phf_shared" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.11.2" + "version": "0.11.3" }, "license": "MIT", "license_ids": [ "MIT" ], - "license_file": null + "license_file": "LICENSE" }, "phf_shared 0.10.0": { "name": "phf_shared", @@ -48645,14 +48734,14 @@ ], "license_file": null }, - "phf_shared 0.11.2": { + "phf_shared 0.11.3": { "name": "phf_shared", - "version": "0.11.2", + "version": "0.11.3", "package_url": "https://github.com/rust-phf/rust-phf", "repository": { "Http": { - "url": "https://static.crates.io/crates/phf_shared/0.11.2/download", - "sha256": "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" + "url": "https://static.crates.io/crates/phf_shared/0.11.3/download", + "sha256": "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" } }, "targets": [ @@ -48683,14 +48772,14 @@ "deps": { "common": [ { - "id": "siphasher 0.3.11", + "id": "siphasher 1.0.1", "target": "siphasher" } ], "selects": {} }, "edition": "2021", - "version": "0.11.2" + "version": "0.11.3" }, "license": "MIT", "license_ids": [ @@ -48736,14 +48825,14 @@ ], "license_file": "LICENSE" }, - "pin-project 1.1.3": { + "pin-project 1.1.8": { "name": "pin-project", - "version": "1.1.3", + "version": "1.1.8", "package_url": "https://github.com/taiki-e/pin-project", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project/1.1.3/download", - "sha256": "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" + "url": "https://static.crates.io/crates/pin-project/1.1.8/download", + "sha256": "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916" } }, "targets": [ @@ -48769,13 +48858,13 @@ "proc_macro_deps": { "common": [ { - "id": "pin-project-internal 1.1.3", + "id": "pin-project-internal 1.1.8", "target": "pin_project_internal" } ], "selects": {} }, - "version": "1.1.3" + "version": "1.1.8" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -48784,14 +48873,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pin-project-internal 1.1.3": { + "pin-project-internal 1.1.8": { "name": "pin-project-internal", - "version": "1.1.3", + "version": "1.1.8", "package_url": "https://github.com/taiki-e/pin-project", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project-internal/1.1.3/download", - "sha256": "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" + "url": "https://static.crates.io/crates/pin-project-internal/1.1.8/download", + "sha256": "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb" } }, "targets": [ @@ -48816,22 +48905,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.1.3" + "version": "1.1.8" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -48840,14 +48929,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pin-project-lite 0.2.13": { + "pin-project-lite 0.2.16": { "name": "pin-project-lite", - "version": "0.2.13", + "version": "0.2.16", "package_url": "https://github.com/taiki-e/pin-project-lite", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project-lite/0.2.13/download", - "sha256": "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" + "url": "https://static.crates.io/crates/pin-project-lite/0.2.16/download", + "sha256": "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" } }, "targets": [ @@ -48870,7 +48959,7 @@ "**" ], "edition": "2018", - "version": "0.2.13" + "version": "0.2.16" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -48918,14 +49007,14 @@ ], "license_file": "LICENSE-APACHE" }, - "ping 0.5.0": { + "ping 0.5.2": { "name": "ping", - "version": "0.5.0", + "version": "0.5.2", "package_url": "https://github.com/aisk/rust-ping", "repository": { "Http": { - "url": "https://static.crates.io/crates/ping/0.5.0/download", - "sha256": "985c8af0584bf35ecfb95a65b74a457782966e1ab8f2c94c01697a36432a5814" + "url": "https://static.crates.io/crates/ping/0.5.2/download", + "sha256": "122ee1f5a6843bec84fcbd5c6ba3622115337a6b8965b93a61aad347648f4e8d" } }, "targets": [ @@ -48954,18 +49043,18 @@ "target": "rand" }, { - "id": "socket2 0.4.9", + "id": "socket2 0.4.10", "target": "socket2" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], "selects": {} }, "edition": "2018", - "version": "0.5.0" + "version": "0.5.2" }, "license": "MIT", "license_ids": [ @@ -49017,7 +49106,7 @@ "target": "atomic_waker" }, { - "id": "fastrand 2.2.0", + "id": "fastrand 2.3.0", "target": "fastrand" }, { @@ -49079,7 +49168,7 @@ "deps": { "common": [ { - "id": "der 0.7.8", + "id": "der 0.7.9", "target": "der" }, { @@ -49143,7 +49232,7 @@ "deps": { "common": [ { - "id": "der 0.7.8", + "id": "der 0.7.9", "target": "der" }, { @@ -49163,14 +49252,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pkg-config 0.3.27": { + "pkg-config 0.3.31": { "name": "pkg-config", - "version": "0.3.27", + "version": "0.3.31", "package_url": "https://github.com/rust-lang/pkg-config-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/pkg-config/0.3.27/download", - "sha256": "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" + "url": "https://static.crates.io/crates/pkg-config/0.3.31/download", + "sha256": "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" } }, "targets": [ @@ -49192,8 +49281,8 @@ "compile_data_glob": [ "**" ], - "edition": "2015", - "version": "0.3.27" + "edition": "2018", + "version": "0.3.31" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -49202,14 +49291,14 @@ ], "license_file": "LICENSE-APACHE" }, - "plotters 0.3.5": { + "plotters 0.3.7": { "name": "plotters", - "version": "0.3.5", + "version": "0.3.7", "package_url": "https://github.com/plotters-rs/plotters", "repository": { "Http": { - "url": "https://static.crates.io/crates/plotters/0.3.5/download", - "sha256": "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" + "url": "https://static.crates.io/crates/plotters/0.3.7/download", + "sha256": "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747" } }, "targets": [ @@ -49247,29 +49336,29 @@ "target": "num_traits" }, { - "id": "plotters-backend 0.3.5", + "id": "plotters-backend 0.3.7", "target": "plotters_backend" }, { - "id": "plotters-svg 0.3.5", + "id": "plotters-svg 0.3.7", "target": "plotters_svg" } ], "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" }, { - "id": "web-sys 0.3.64", + "id": "web-sys 0.3.77", "target": "web_sys" } ] } }, "edition": "2018", - "version": "0.3.5" + "version": "0.3.7" }, "license": "MIT", "license_ids": [ @@ -49277,14 +49366,14 @@ ], "license_file": "LICENSE" }, - "plotters-backend 0.3.5": { + "plotters-backend 0.3.7": { "name": "plotters-backend", - "version": "0.3.5", + "version": "0.3.7", "package_url": "https://github.com/plotters-rs/plotters", "repository": { "Http": { - "url": "https://static.crates.io/crates/plotters-backend/0.3.5/download", - "sha256": "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" + "url": "https://static.crates.io/crates/plotters-backend/0.3.7/download", + "sha256": "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a" } }, "targets": [ @@ -49307,7 +49396,7 @@ "**" ], "edition": "2018", - "version": "0.3.5" + "version": "0.3.7" }, "license": "MIT", "license_ids": [ @@ -49315,14 +49404,14 @@ ], "license_file": "LICENSE" }, - "plotters-svg 0.3.5": { + "plotters-svg 0.3.7": { "name": "plotters-svg", - "version": "0.3.5", + "version": "0.3.7", "package_url": "https://github.com/plotters-rs/plotters.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/plotters-svg/0.3.5/download", - "sha256": "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" + "url": "https://static.crates.io/crates/plotters-svg/0.3.7/download", + "sha256": "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670" } }, "targets": [ @@ -49347,14 +49436,14 @@ "deps": { "common": [ { - "id": "plotters-backend 0.3.5", + "id": "plotters-backend 0.3.7", "target": "plotters_backend" } ], "selects": {} }, "edition": "2018", - "version": "0.3.5" + "version": "0.3.7" }, "license": "MIT", "license_ids": [ @@ -49398,7 +49487,7 @@ "target": "base64" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -49414,11 +49503,11 @@ "target": "ic_transport_types" }, { - "id": "reqwest 0.12.9", + "id": "reqwest 0.12.12", "target": "reqwest" }, { - "id": "schemars 0.8.16", + "id": "schemars 0.8.21", "target": "schemars" }, { @@ -49434,7 +49523,7 @@ "target": "serde_cbor" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -49450,11 +49539,11 @@ "target": "strum" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -49497,14 +49586,14 @@ ], "license_file": "LICENSE" }, - "polling 3.7.3": { + "polling 3.7.4": { "name": "polling", - "version": "3.7.3", + "version": "3.7.4", "package_url": "https://github.com/smol-rs/polling", "repository": { "Http": { - "url": "https://static.crates.io/crates/polling/3.7.3/download", - "sha256": "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" + "url": "https://static.crates.io/crates/polling/3.7.4/download", + "sha256": "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f" } }, "targets": [ @@ -49540,7 +49629,7 @@ "selects": { "cfg(any(unix, target_os = \"fuchsia\", target_os = \"vxworks\"))": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -49556,7 +49645,7 @@ "target": "concurrent_queue" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -49567,7 +49656,7 @@ } }, "edition": "2021", - "version": "3.7.3" + "version": "3.7.4" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -49608,7 +49697,7 @@ "deps": { "common": [ { - "id": "opaque-debug 0.3.0", + "id": "opaque-debug 0.3.1", "target": "opaque_debug" }, { @@ -49619,7 +49708,7 @@ "selects": { "cfg(any(target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.9", + "id": "cpufeatures 0.2.16", "target": "cpufeatures" } ] @@ -49635,14 +49724,14 @@ ], "license_file": "LICENSE-APACHE" }, - "portable-atomic 1.4.3": { + "portable-atomic 1.10.0": { "name": "portable-atomic", - "version": "1.4.3", + "version": "1.10.0", "package_url": "https://github.com/taiki-e/portable-atomic", "repository": { "Http": { - "url": "https://static.crates.io/crates/portable-atomic/1.4.3/download", - "sha256": "31114a898e107c51bb1609ffaf55a0e011cf6a4d7f1170d0015a165082c0338b" + "url": "https://static.crates.io/crates/portable-atomic/1.10.0/download", + "sha256": "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6" } }, "targets": [ @@ -49679,21 +49768,22 @@ "crate_features": { "common": [ "default", - "fallback" + "fallback", + "require-cas" ], "selects": {} }, "deps": { "common": [ { - "id": "portable-atomic 1.4.3", + "id": "portable-atomic 1.10.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.4.3" + "version": "1.10.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -49710,14 +49800,14 @@ ], "license_file": "LICENSE-APACHE" }, - "postcard 1.0.8": { + "postcard 1.1.1": { "name": "postcard", - "version": "1.0.8", + "version": "1.1.1", "package_url": "https://github.com/jamesmunns/postcard", "repository": { "Http": { - "url": "https://static.crates.io/crates/postcard/1.0.8/download", - "sha256": "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8" + "url": "https://static.crates.io/crates/postcard/1.1.1/download", + "sha256": "170a2601f67cc9dba8edd8c4870b15f71a6a2dc196daec8c83f72b59dff628a8" } }, "targets": [ @@ -49742,7 +49832,6 @@ "crate_features": { "common": [ "alloc", - "embedded-io", "use-std" ], "selects": {} @@ -49753,10 +49842,6 @@ "id": "cobs 0.2.3", "target": "cobs" }, - { - "id": "embedded-io 0.4.0", - "target": "embedded_io" - }, { "id": "serde 1.0.217", "target": "serde" @@ -49764,15 +49849,15 @@ ], "selects": {} }, - "edition": "2018", - "version": "1.0.8" + "edition": "2021", + "version": "1.1.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": null }, "powerfmt 0.2.0": { "name": "powerfmt", @@ -49875,7 +49960,7 @@ "target": "aligned_vec" }, { - "id": "backtrace 0.3.69", + "id": "backtrace 0.3.74", "target": "backtrace" }, { @@ -49891,15 +49976,15 @@ "target": "findshlibs" }, { - "id": "inferno 0.11.19", + "id": "inferno 0.11.21", "target": "inferno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -49907,11 +49992,11 @@ "target": "nix" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { @@ -49919,7 +50004,7 @@ "target": "build_script_build" }, { - "id": "prost 0.12.2", + "id": "prost 0.12.6", "target": "prost" }, { @@ -49927,15 +50012,15 @@ "target": "smallvec" }, { - "id": "symbolic-demangle 12.4.1", + "id": "symbolic-demangle 12.13.2", "target": "symbolic_demangle" }, { - "id": "tempfile 3.12.0", + "id": "tempfile 3.15.0", "target": "tempfile" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -49945,7 +50030,7 @@ "proc_macro_deps": { "common": [ { - "id": "prost-derive 0.12.2", + "id": "prost-derive 0.12.6", "target": "prost_derive" } ], @@ -49969,7 +50054,7 @@ "deps": { "common": [ { - "id": "prost-build 0.12.2", + "id": "prost-build 0.12.6", "target": "prost_build" }, { @@ -49992,14 +50077,14 @@ ], "license_file": "LICENSE" }, - "ppv-lite86 0.2.17": { + "ppv-lite86 0.2.20": { "name": "ppv-lite86", - "version": "0.2.17", + "version": "0.2.20", "package_url": "https://github.com/cryptocorrosion/cryptocorrosion", "repository": { "Http": { - "url": "https://static.crates.io/crates/ppv-lite86/0.2.17/download", - "sha256": "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" + "url": "https://static.crates.io/crates/ppv-lite86/0.2.20/download", + "sha256": "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" } }, "targets": [ @@ -50028,8 +50113,17 @@ ], "selects": {} }, - "edition": "2018", - "version": "0.2.17" + "deps": { + "common": [ + { + "id": "zerocopy 0.7.35", + "target": "zerocopy" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.2.20" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -50076,14 +50170,14 @@ ], "license_file": "LICENSE" }, - "predicates 3.1.2": { + "predicates 3.1.3": { "name": "predicates", - "version": "3.1.2", + "version": "3.1.3", "package_url": "https://github.com/assert-rs/predicates-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates/3.1.2/download", - "sha256": "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97" + "url": "https://static.crates.io/crates/predicates/3.1.3/download", + "sha256": "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573" } }, "targets": [ @@ -50119,7 +50213,7 @@ "deps": { "common": [ { - "id": "anstyle 1.0.8", + "id": "anstyle 1.0.10", "target": "anstyle" }, { @@ -50127,7 +50221,7 @@ "target": "difflib" }, { - "id": "float-cmp 0.9.0", + "id": "float-cmp 0.10.0", "target": "float_cmp" }, { @@ -50135,18 +50229,18 @@ "target": "normalize_line_endings" }, { - "id": "predicates-core 1.0.6", + "id": "predicates-core 1.0.9", "target": "predicates_core" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "selects": {} }, "edition": "2021", - "version": "3.1.2" + "version": "3.1.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50155,14 +50249,14 @@ ], "license_file": "LICENSE-APACHE" }, - "predicates-core 1.0.6": { + "predicates-core 1.0.9": { "name": "predicates-core", - "version": "1.0.6", + "version": "1.0.9", "package_url": "https://github.com/assert-rs/predicates-rs/tree/master/crates/core", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates-core/1.0.6/download", - "sha256": "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" + "url": "https://static.crates.io/crates/predicates-core/1.0.9/download", + "sha256": "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" } }, "targets": [ @@ -50185,7 +50279,7 @@ "**" ], "edition": "2021", - "version": "1.0.6" + "version": "1.0.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50194,14 +50288,14 @@ ], "license_file": "LICENSE-APACHE" }, - "predicates-tree 1.0.9": { + "predicates-tree 1.0.12": { "name": "predicates-tree", - "version": "1.0.9", + "version": "1.0.12", "package_url": "https://github.com/assert-rs/predicates-rs/tree/master/crates/tree", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates-tree/1.0.9/download", - "sha256": "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" + "url": "https://static.crates.io/crates/predicates-tree/1.0.12/download", + "sha256": "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" } }, "targets": [ @@ -50226,18 +50320,18 @@ "deps": { "common": [ { - "id": "predicates-core 1.0.6", + "id": "predicates-core 1.0.9", "target": "predicates_core" }, { - "id": "termtree 0.4.1", + "id": "termtree 0.5.1", "target": "termtree" } ], "selects": {} }, "edition": "2021", - "version": "1.0.9" + "version": "1.0.12" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50282,7 +50376,7 @@ "target": "arrayvec" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -50290,7 +50384,7 @@ "target": "typed_arena" }, { - "id": "unicode-segmentation 1.10.1", + "id": "unicode-segmentation 1.12.0", "target": "unicode_segmentation" } ], @@ -50345,7 +50439,7 @@ "target": "typed_arena" }, { - "id": "unicode-width 0.1.11", + "id": "unicode-width 0.1.14", "target": "unicode_width" } ], @@ -50411,14 +50505,14 @@ ], "license_file": null }, - "pretty_assertions 1.4.0": { + "pretty_assertions 1.4.1": { "name": "pretty_assertions", - "version": "1.4.0", + "version": "1.4.1", "package_url": "https://github.com/rust-pretty-assertions/rust-pretty-assertions", "repository": { "Http": { - "url": "https://static.crates.io/crates/pretty_assertions/1.4.0/download", - "sha256": "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" + "url": "https://static.crates.io/crates/pretty_assertions/1.4.1/download", + "sha256": "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" } }, "targets": [ @@ -50454,14 +50548,14 @@ "target": "diff" }, { - "id": "yansi 0.5.1", + "id": "yansi 1.0.1", "target": "yansi" } ], "selects": {} }, "edition": "2018", - "version": "1.4.0" + "version": "1.4.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50470,14 +50564,14 @@ ], "license_file": "LICENSE-APACHE" }, - "prettyplease 0.2.15": { + "prettyplease 0.2.29": { "name": "prettyplease", - "version": "0.2.15", + "version": "0.2.29", "package_url": "https://github.com/dtolnay/prettyplease", "repository": { "Http": { - "url": "https://static.crates.io/crates/prettyplease/0.2.15/download", - "sha256": "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" + "url": "https://static.crates.io/crates/prettyplease/0.2.29/download", + "sha256": "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac" } }, "targets": [ @@ -50514,22 +50608,22 @@ "deps": { "common": [ { - "id": "prettyplease 0.2.15", + "id": "prettyplease 0.2.29", "target": "build_script_build" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.2.15" + "version": "0.2.29" }, "build_script_attrs": { "compile_data_glob": [ @@ -50547,14 +50641,14 @@ ], "license_file": "LICENSE-APACHE" }, - "primeorder 0.13.2": { + "primeorder 0.13.6": { "name": "primeorder", - "version": "0.13.2", + "version": "0.13.6", "package_url": "https://github.com/RustCrypto/elliptic-curves/tree/master/primeorder", "repository": { "Http": { - "url": "https://static.crates.io/crates/primeorder/0.13.2/download", - "sha256": "3c2fcef82c0ec6eefcc179b978446c399b3cdf73c392c35604e399eee6df1ee3" + "url": "https://static.crates.io/crates/primeorder/0.13.6/download", + "sha256": "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" } }, "targets": [ @@ -50586,7 +50680,7 @@ "selects": {} }, "edition": "2021", - "version": "0.13.2" + "version": "0.13.6" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -50659,7 +50753,7 @@ "target": "impl_serde" }, { - "id": "scale-info 2.9.0", + "id": "scale-info 2.11.6", "target": "scale_info", "alias": "scale_info_crate" }, @@ -50680,14 +50774,14 @@ ], "license_file": null }, - "priority-queue 1.3.2": { + "priority-queue 1.4.0": { "name": "priority-queue", - "version": "1.3.2", + "version": "1.4.0", "package_url": "https://github.com/garro95/priority-queue", "repository": { "Http": { - "url": "https://static.crates.io/crates/priority-queue/1.3.2/download", - "sha256": "fff39edfcaec0d64e8d0da38564fad195d2d51b680940295fcc307366e101e61" + "url": "https://static.crates.io/crates/priority-queue/1.4.0/download", + "sha256": "a0bda9164fe05bc9225752d54aae413343c36f684380005398a6a8fde95fe785" } }, "targets": [ @@ -50734,7 +50828,7 @@ "target": "indexmap" }, { - "id": "priority-queue 1.3.2", + "id": "priority-queue 1.4.0", "target": "build_script_build" }, { @@ -50745,7 +50839,7 @@ "selects": {} }, "edition": "2018", - "version": "1.3.2" + "version": "1.4.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -50757,7 +50851,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -50771,14 +50865,14 @@ ], "license_file": null }, - "proc-macro-crate 1.3.1": { + "proc-macro-crate 3.2.0": { "name": "proc-macro-crate", - "version": "1.3.1", + "version": "3.2.0", "package_url": "https://github.com/bkchr/proc-macro-crate", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro-crate/1.3.1/download", - "sha256": "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" + "url": "https://static.crates.io/crates/proc-macro-crate/3.2.0/download", + "sha256": "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" } }, "targets": [ @@ -50803,18 +50897,14 @@ "deps": { "common": [ { - "id": "once_cell 1.19.0", - "target": "once_cell" - }, - { - "id": "toml_edit 0.19.15", + "id": "toml_edit 0.22.22", "target": "toml_edit" } ], "selects": {} }, "edition": "2021", - "version": "1.3.1" + "version": "3.2.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50823,20 +50913,20 @@ ], "license_file": "LICENSE-APACHE" }, - "proc-macro-crate 3.2.0": { - "name": "proc-macro-crate", - "version": "3.2.0", - "package_url": "https://github.com/bkchr/proc-macro-crate", + "proc-macro-error 1.0.4": { + "name": "proc-macro-error", + "version": "1.0.4", + "package_url": "https://gitlab.com/CreepySkeleton/proc-macro-error", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro-crate/3.2.0/download", - "sha256": "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" + "url": "https://static.crates.io/crates/proc-macro-error/1.0.4/download", + "sha256": "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" } }, "targets": [ { "Library": { - "crate_name": "proc_macro_crate", + "crate_name": "proc_macro_error", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -50845,24 +50935,82 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], - "library_target_name": "proc_macro_crate", + "library_target_name": "proc_macro_error", "common_attrs": { "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "default", + "syn", + "syn-error" + ], + "selects": {} + }, "deps": { "common": [ { - "id": "toml_edit 0.22.20", - "target": "toml_edit" + "id": "proc-macro-error 1.0.4", + "target": "build_script_build" + }, + { + "id": "proc-macro2 1.0.93", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.38", + "target": "quote" + }, + { + "id": "syn 1.0.109", + "target": "syn" } ], "selects": {} }, - "edition": "2021", - "version": "3.2.0" + "edition": "2018", + "proc_macro_deps": { + "common": [ + { + "id": "proc-macro-error-attr 1.0.4", + "target": "proc_macro_error_attr" + } + ], + "selects": {} + }, + "version": "1.0.4" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "version_check 0.9.5", + "target": "version_check" + } + ], + "selects": {} + } }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50871,279 +51019,173 @@ ], "license_file": "LICENSE-APACHE" }, - "proc-macro-error 1.0.4": { - "name": "proc-macro-error", + "proc-macro-error-attr 1.0.4": { + "name": "proc-macro-error-attr", "version": "1.0.4", "package_url": "https://gitlab.com/CreepySkeleton/proc-macro-error", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro-error/1.0.4/download", - "sha256": "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" + "url": "https://static.crates.io/crates/proc-macro-error-attr/1.0.4/download", + "sha256": "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "proc_macro_error_attr", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "proc_macro_error_attr", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "proc-macro-error-attr 1.0.4", + "target": "build_script_build" + }, + { + "id": "proc-macro2 1.0.93", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.38", + "target": "quote" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "1.0.4" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "version_check 0.9.5", + "target": "version_check" + } + ], + "selects": {} + } + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "proc-macro-hack 0.5.20+deprecated": { + "name": "proc-macro-hack", + "version": "0.5.20+deprecated", + "package_url": "https://github.com/dtolnay/proc-macro-hack", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/proc-macro-hack/0.5.20+deprecated/download", + "sha256": "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "proc_macro_hack", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "proc_macro_hack", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "proc-macro-hack 0.5.20+deprecated", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.5.20+deprecated" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "proc-macro2 1.0.93": { + "name": "proc-macro2", + "version": "1.0.93", + "package_url": "https://github.com/dtolnay/proc-macro2", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/proc-macro2/1.0.93/download", + "sha256": "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" } }, "targets": [ { "Library": { - "crate_name": "proc_macro_error", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "proc_macro_error", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "syn", - "syn-error" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro-error 1.0.4", - "target": "build_script_build" - }, - { - "id": "proc-macro2 1.0.89", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.37", - "target": "quote" - }, - { - "id": "syn 1.0.109", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2018", - "proc_macro_deps": { - "common": [ - { - "id": "proc-macro-error-attr 1.0.4", - "target": "proc_macro_error_attr" - } - ], - "selects": {} - }, - "version": "1.0.4" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "version_check 0.9.4", - "target": "version_check" - } - ], - "selects": {} - } - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "proc-macro-error-attr 1.0.4": { - "name": "proc-macro-error-attr", - "version": "1.0.4", - "package_url": "https://gitlab.com/CreepySkeleton/proc-macro-error", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/proc-macro-error-attr/1.0.4/download", - "sha256": "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "proc_macro_error_attr", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "proc_macro_error_attr", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro-error-attr 1.0.4", - "target": "build_script_build" - }, - { - "id": "proc-macro2 1.0.89", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.37", - "target": "quote" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.4" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "version_check 0.9.4", - "target": "version_check" - } - ], - "selects": {} - } - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "proc-macro-hack 0.5.20+deprecated": { - "name": "proc-macro-hack", - "version": "0.5.20+deprecated", - "package_url": "https://github.com/dtolnay/proc-macro-hack", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/proc-macro-hack/0.5.20+deprecated/download", - "sha256": "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "proc_macro_hack", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "proc_macro_hack", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro-hack 0.5.20+deprecated", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.5.20+deprecated" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "proc-macro2 1.0.89": { - "name": "proc-macro2", - "version": "1.0.89", - "package_url": "https://github.com/dtolnay/proc-macro2", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/proc-macro2/1.0.89/download", - "sha256": "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" - } - }, - "targets": [ - { - "Library": { - "crate_name": "proc_macro2", + "crate_name": "proc_macro2", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -51181,18 +51223,18 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "build_script_build" }, { - "id": "unicode-ident 1.0.12", + "id": "unicode-ident 1.0.14", "target": "unicode_ident" } ], "selects": {} }, "edition": "2021", - "version": "1.0.89" + "version": "1.0.93" }, "build_script_attrs": { "compile_data_glob": [ @@ -51249,7 +51291,7 @@ "target": "byteorder" }, { - "id": "flate2 1.0.31", + "id": "flate2 1.0.35", "target": "flate2" }, { @@ -51257,11 +51299,11 @@ "target": "hex" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -51321,7 +51363,7 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -51329,7 +51371,7 @@ "target": "hex" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -51341,7 +51383,7 @@ "target": "procfs_core" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -51397,7 +51439,7 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -51479,19 +51521,19 @@ "target": "fnv" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { @@ -51503,7 +51545,7 @@ "target": "protobuf" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -51581,14 +51623,14 @@ ], "license_file": "LICENSE" }, - "prometheus-parse 0.2.4": { + "prometheus-parse 0.2.5": { "name": "prometheus-parse", - "version": "0.2.4", + "version": "0.2.5", "package_url": "https://github.com/ccakes/prometheus-parse-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/prometheus-parse/0.2.4/download", - "sha256": "0c2aa5feb83bf4b2c8919eaf563f51dbab41183de73ba2353c0e03cd7b6bd892" + "url": "https://static.crates.io/crates/prometheus-parse/0.2.5/download", + "sha256": "811031bea65e5a401fb2e1f37d802cca6601e204ac463809a3189352d13b78a5" } }, "targets": [ @@ -51613,26 +51655,26 @@ "deps": { "common": [ { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { - "id": "itertools 0.10.5", + "id": "itertools 0.12.1", "target": "itertools" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "selects": {} }, "edition": "2018", - "version": "0.2.4" + "version": "0.2.5" }, "license": "Apache-2.0", "license_ids": [ @@ -51640,14 +51682,14 @@ ], "license_file": "LICENSE" }, - "proptest 1.5.0": { + "proptest 1.6.0": { "name": "proptest", - "version": "1.5.0", + "version": "1.6.0", "package_url": "https://github.com/proptest-rs/proptest", "repository": { "Http": { - "url": "https://static.crates.io/crates/proptest/1.5.0/download", - "sha256": "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" + "url": "https://static.crates.io/crates/proptest/1.6.0/download", + "sha256": "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" } }, "targets": [ @@ -51686,19 +51728,19 @@ "deps": { "common": [ { - "id": "bit-set 0.5.3", + "id": "bit-set 0.8.0", "target": "bit_set" }, { - "id": "bit-vec 0.6.3", + "id": "bit-vec 0.8.0", "target": "bit_vec" }, { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -51726,7 +51768,7 @@ "target": "rusty_fork" }, { - "id": "tempfile 3.12.0", + "id": "tempfile 3.15.0", "target": "tempfile" }, { @@ -51737,7 +51779,7 @@ "selects": {} }, "edition": "2018", - "version": "1.5.0" + "version": "1.6.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -51746,14 +51788,14 @@ ], "license_file": "LICENSE-APACHE" }, - "proptest-derive 0.5.0": { + "proptest-derive 0.5.1": { "name": "proptest-derive", - "version": "0.5.0", + "version": "0.5.1", "package_url": "https://github.com/proptest-rs/proptest", "repository": { "Http": { - "url": "https://static.crates.io/crates/proptest-derive/0.5.0/download", - "sha256": "6ff7ff745a347b87471d859a377a9a404361e7efc2a971d73424a6d183c0fc77" + "url": "https://static.crates.io/crates/proptest-derive/0.5.1/download", + "sha256": "4ee1c9ac207483d5e7db4940700de86a9aae46ef90c48b57f99fe7edb8345e49" } }, "targets": [ @@ -51778,22 +51820,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.5.0" + "version": "0.5.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -51802,14 +51844,14 @@ ], "license_file": "LICENSE-APACHE" }, - "prost 0.12.2": { + "prost 0.12.6": { "name": "prost", - "version": "0.12.2", + "version": "0.12.6", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost/0.12.2/download", - "sha256": "5a5a410fc7882af66deb8d01d01737353cf3ad6204c408177ba494291a626312" + "url": "https://static.crates.io/crates/prost/0.12.6/download", + "sha256": "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29" } }, "targets": [ @@ -51834,10 +51876,53 @@ "crate_features": { "common": [ "default", - "prost-derive", + "derive", "std" ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + "prost-derive" + ], + "aarch64-pc-windows-msvc": [ + "prost-derive" + ], + "aarch64-unknown-linux-gnu": [ + "prost-derive" + ], + "aarch64-unknown-nixos-gnu": [ + "prost-derive" + ], + "arm-unknown-linux-gnueabi": [ + "prost-derive" + ], + "i686-pc-windows-msvc": [ + "prost-derive" + ], + "i686-unknown-linux-gnu": [ + "prost-derive" + ], + "powerpc-unknown-linux-gnu": [ + "prost-derive" + ], + "s390x-unknown-linux-gnu": [ + "prost-derive" + ], + "x86_64-apple-darwin": [ + "prost-derive" + ], + "x86_64-pc-windows-msvc": [ + "prost-derive" + ], + "x86_64-unknown-freebsd": [ + "prost-derive" + ], + "x86_64-unknown-linux-gnu": [ + "prost-derive" + ], + "x86_64-unknown-nixos-gnu": [ + "prost-derive" + ] + } }, "deps": { "common": [ @@ -51852,28 +51937,28 @@ "proc_macro_deps": { "common": [ { - "id": "prost-derive 0.12.2", + "id": "prost-derive 0.12.6", "target": "prost_derive" } ], "selects": {} }, - "version": "0.12.2" + "version": "0.12.6" }, "license": "Apache-2.0", "license_ids": [ "Apache-2.0" ], - "license_file": "LICENSE" + "license_file": null }, - "prost 0.13.3": { + "prost 0.13.4": { "name": "prost", - "version": "0.13.3", + "version": "0.13.4", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost/0.13.3/download", - "sha256": "7b0487d90e047de87f984913713b85c601c05609aad5b0df4b4573fbf69aa13f" + "url": "https://static.crates.io/crates/prost/0.13.4/download", + "sha256": "2c0fef6c4230e4ccf618a35c59d7ede15dea37de8427500f50aff708806e42ec" } }, "targets": [ @@ -51917,13 +52002,13 @@ "proc_macro_deps": { "common": [ { - "id": "prost-derive 0.13.3", + "id": "prost-derive 0.13.4", "target": "prost_derive" } ], "selects": {} }, - "version": "0.13.3" + "version": "0.13.4" }, "license": "Apache-2.0", "license_ids": [ @@ -51931,14 +52016,14 @@ ], "license_file": "LICENSE" }, - "prost-build 0.12.2": { + "prost-build 0.12.6": { "name": "prost-build", - "version": "0.12.2", + "version": "0.12.6", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-build/0.12.2/download", - "sha256": "1fa3d084c8704911bfefb2771be2f9b6c5c0da7343a71e0021ee3c665cada738" + "url": "https://static.crates.io/crates/prost-build/0.12.6/download", + "sha256": "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4" } }, "targets": [ @@ -51963,9 +52048,7 @@ "crate_features": { "common": [ "default", - "format", - "prettyplease", - "syn" + "format" ], "selects": {} }, @@ -51976,62 +52059,58 @@ "target": "bytes" }, { - "id": "heck 0.4.1", + "id": "heck 0.5.0", "target": "heck" }, { - "id": "itertools 0.11.0", + "id": "itertools 0.12.1", "target": "itertools" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "multimap 0.8.3", + "id": "multimap 0.10.0", "target": "multimap" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "petgraph 0.6.4", + "id": "petgraph 0.6.5", "target": "petgraph" }, { - "id": "prettyplease 0.2.15", + "id": "prettyplease 0.2.29", "target": "prettyplease" }, { - "id": "prost 0.12.2", + "id": "prost 0.12.6", "target": "prost" }, { - "id": "prost-types 0.12.2", + "id": "prost-types 0.12.6", "target": "prost_types" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" }, { - "id": "tempfile 3.12.0", + "id": "tempfile 3.15.0", "target": "tempfile" - }, - { - "id": "which 4.4.2", - "target": "which" } ], "selects": {} }, "edition": "2021", - "version": "0.12.2" + "version": "0.12.6" }, "license": "Apache-2.0", "license_ids": [ @@ -52039,14 +52118,14 @@ ], "license_file": "LICENSE" }, - "prost-build 0.13.3": { + "prost-build 0.13.4": { "name": "prost-build", - "version": "0.13.3", + "version": "0.13.4", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-build/0.13.3/download", - "sha256": "0c1318b19085f08681016926435853bbf7858f9c082d0999b80550ff5d9abe15" + "url": "https://static.crates.io/crates/prost-build/0.13.4/download", + "sha256": "d0f3e5beed80eb580c68e2c600937ac2c4eedabdfd5ef1e5b7ea4f3fba84497b" } }, "targets": [ @@ -52077,63 +52156,59 @@ }, "deps": { "common": [ - { - "id": "bytes 1.9.0", - "target": "bytes" - }, { "id": "heck 0.5.0", "target": "heck" }, { - "id": "itertools 0.12.0", + "id": "itertools 0.13.0", "target": "itertools" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "multimap 0.8.3", + "id": "multimap 0.10.0", "target": "multimap" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "petgraph 0.6.4", + "id": "petgraph 0.6.5", "target": "petgraph" }, { - "id": "prettyplease 0.2.15", + "id": "prettyplease 0.2.29", "target": "prettyplease" }, { - "id": "prost 0.13.3", + "id": "prost 0.13.4", "target": "prost" }, { - "id": "prost-types 0.13.3", + "id": "prost-types 0.13.4", "target": "prost_types" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" }, { - "id": "tempfile 3.12.0", + "id": "tempfile 3.15.0", "target": "tempfile" } ], "selects": {} }, "edition": "2021", - "version": "0.13.3" + "version": "0.13.4" }, "license": "Apache-2.0", "license_ids": [ @@ -52141,14 +52216,14 @@ ], "license_file": "LICENSE" }, - "prost-derive 0.12.2": { + "prost-derive 0.12.6": { "name": "prost-derive", - "version": "0.12.2", + "version": "0.12.6", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-derive/0.12.2/download", - "sha256": "065717a5dfaca4a83d2fe57db3487b311365200000551d7a364e715dbf4346bc" + "url": "https://static.crates.io/crates/prost-derive/0.12.6/download", + "sha256": "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" } }, "targets": [ @@ -52173,30 +52248,30 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "itertools 0.11.0", + "id": "itertools 0.12.1", "target": "itertools" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.12.2" + "version": "0.12.6" }, "license": "Apache-2.0", "license_ids": [ @@ -52204,14 +52279,14 @@ ], "license_file": "LICENSE" }, - "prost-derive 0.13.3": { + "prost-derive 0.13.4": { "name": "prost-derive", - "version": "0.13.3", + "version": "0.13.4", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-derive/0.13.3/download", - "sha256": "e9552f850d5f0964a4e4d0bf306459ac29323ddfbae05e35a7c0d35cb0803cc5" + "url": "https://static.crates.io/crates/prost-derive/0.13.4/download", + "sha256": "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3" } }, "targets": [ @@ -52236,30 +52311,30 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "itertools 0.12.0", + "id": "itertools 0.13.0", "target": "itertools" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.13.3" + "version": "0.13.4" }, "license": "Apache-2.0", "license_ids": [ @@ -52267,14 +52342,14 @@ ], "license_file": "LICENSE" }, - "prost-types 0.12.2": { + "prost-types 0.12.6": { "name": "prost-types", - "version": "0.12.2", + "version": "0.12.6", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-types/0.12.2/download", - "sha256": "8339f32236f590281e2f6368276441394fcd1b2133b549cc895d0ae80f2f9a52" + "url": "https://static.crates.io/crates/prost-types/0.12.6/download", + "sha256": "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0" } }, "targets": [ @@ -52299,14 +52374,14 @@ "deps": { "common": [ { - "id": "prost 0.12.2", + "id": "prost 0.12.6", "target": "prost" } ], "selects": {} }, "edition": "2021", - "version": "0.12.2" + "version": "0.12.6" }, "license": "Apache-2.0", "license_ids": [ @@ -52314,14 +52389,14 @@ ], "license_file": "LICENSE" }, - "prost-types 0.13.3": { + "prost-types 0.13.4": { "name": "prost-types", - "version": "0.13.3", + "version": "0.13.4", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-types/0.13.3/download", - "sha256": "4759aa0d3a6232fb8dbdb97b61de2c20047c68aca932c7ed76da9d788508d670" + "url": "https://static.crates.io/crates/prost-types/0.13.4/download", + "sha256": "cc2f1e56baa61e93533aebc21af4d2134b70f66275e0fcdf3cbe43d77ff7e8fc" } }, "targets": [ @@ -52353,14 +52428,14 @@ "deps": { "common": [ { - "id": "prost 0.13.3", + "id": "prost 0.13.4", "target": "prost" } ], "selects": {} }, "edition": "2021", - "version": "0.13.3" + "version": "0.13.4" }, "license": "Apache-2.0", "license_ids": [ @@ -52474,14 +52549,14 @@ ], "license_file": "LICENSE" }, - "psm 0.1.21": { + "psm 0.1.24": { "name": "psm", - "version": "0.1.21", + "version": "0.1.24", "package_url": "https://github.com/rust-lang/stacker/", "repository": { "Http": { - "url": "https://static.crates.io/crates/psm/0.1.21/download", - "sha256": "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" + "url": "https://static.crates.io/crates/psm/0.1.24/download", + "sha256": "200b9ff220857e53e184257720a14553b2f4aa02577d2ed9842d45d4b9654810" } }, "targets": [ @@ -52518,14 +52593,14 @@ "deps": { "common": [ { - "id": "psm 0.1.21", + "id": "psm 0.1.24", "target": "build_script_build" } ], "selects": {} }, "edition": "2015", - "version": "0.1.21" + "version": "0.1.24" }, "build_script_attrs": { "compile_data_glob": [ @@ -52537,7 +52612,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -52630,11 +52705,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -52653,14 +52728,14 @@ ], "license_file": "LICENSE" }, - "publicsuffix 2.2.3": { + "publicsuffix 2.3.0": { "name": "publicsuffix", - "version": "2.2.3", + "version": "2.3.0", "package_url": "https://github.com/rushmorem/publicsuffix", "repository": { "Http": { - "url": "https://static.crates.io/crates/publicsuffix/2.2.3/download", - "sha256": "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457" + "url": "https://static.crates.io/crates/publicsuffix/2.3.0/download", + "sha256": "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf" } }, "targets": [ @@ -52693,7 +52768,7 @@ "deps": { "common": [ { - "id": "idna 0.3.0", + "id": "idna 1.0.3", "target": "idna" }, { @@ -52704,7 +52779,7 @@ "selects": {} }, "edition": "2018", - "version": "2.2.3" + "version": "2.3.0" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -52713,14 +52788,14 @@ ], "license_file": "LICENSE" }, - "pulley-interpreter 28.0.0": { + "pulley-interpreter 28.0.1": { "name": "pulley-interpreter", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime/tree/main/pulley", "repository": { "Http": { - "url": "https://static.crates.io/crates/pulley-interpreter/28.0.0/download", - "sha256": "403a1a95f4c18a45c86c7bff13df00347afd0abcbf2e54af273c837339ffcf77" + "url": "https://static.crates.io/crates/pulley-interpreter/28.0.1/download", + "sha256": "8324e531de91a3c25021a30fb7862d39cc516b61fbb801176acb5ff279ea887b" } }, "targets": [ @@ -52745,11 +52820,11 @@ "deps": { "common": [ { - "id": "cranelift-bitset 0.115.0", + "id": "cranelift-bitset 0.115.1", "target": "cranelift_bitset" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -52760,7 +52835,7 @@ "selects": {} }, "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -52768,14 +52843,14 @@ ], "license_file": null }, - "quanta 0.11.1": { + "quanta 0.12.5": { "name": "quanta", - "version": "0.11.1", + "version": "0.12.5", "package_url": "https://github.com/metrics-rs/quanta", "repository": { "Http": { - "url": "https://static.crates.io/crates/quanta/0.11.1/download", - "sha256": "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab" + "url": "https://static.crates.io/crates/quanta/0.12.5/download", + "sha256": "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e" } }, "targets": [ @@ -52807,125 +52882,18 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "selects": { "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [ { - "id": "web-sys 0.3.64", - "target": "web_sys" - } - ], - "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\"))": [ - { - "id": "wasi 0.11.0+wasi-snapshot-preview1", - "target": "wasi" - } - ], - "cfg(not(any(target_os = \"macos\", target_os = \"ios\", target_os = \"windows\", target_arch = \"wasm32\")))": [ - { - "id": "libc 0.2.158", - "target": "libc" - } - ], - "cfg(target_arch = \"x86\")": [ - { - "id": "raw-cpuid 10.7.0", - "target": "raw_cpuid" - } - ], - "cfg(target_arch = \"x86_64\")": [ - { - "id": "raw-cpuid 10.7.0", - "target": "raw_cpuid" - } - ], - "cfg(target_os = \"ios\")": [ - { - "id": "mach2 0.4.2", - "target": "mach2" - } - ], - "cfg(target_os = \"macos\")": [ - { - "id": "mach2 0.4.2", - "target": "mach2" - } - ], - "cfg(target_os = \"windows\")": [ - { - "id": "winapi 0.3.9", - "target": "winapi" - } - ] - } - }, - "edition": "2021", - "version": "0.11.1" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "quanta 0.12.3": { - "name": "quanta", - "version": "0.12.3", - "package_url": "https://github.com/metrics-rs/quanta", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/quanta/0.12.3/download", - "sha256": "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5" - } - }, - "targets": [ - { - "Library": { - "crate_name": "quanta", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "quanta", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "flaky_tests" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "crossbeam-utils 0.8.19", - "target": "crossbeam_utils" - }, - { - "id": "once_cell 1.19.0", - "target": "once_cell" - } - ], - "selects": { - "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [ - { - "id": "web-sys 0.3.64", + "id": "web-sys 0.3.77", "target": "web_sys" } ], @@ -52937,19 +52905,19 @@ ], "cfg(not(any(target_os = \"windows\", target_arch = \"wasm32\")))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(target_arch = \"x86\")": [ { - "id": "raw-cpuid 11.1.0", + "id": "raw-cpuid 11.3.0", "target": "raw_cpuid" } ], "cfg(target_arch = \"x86_64\")": [ { - "id": "raw-cpuid 11.1.0", + "id": "raw-cpuid 11.3.0", "target": "raw_cpuid" } ], @@ -52962,7 +52930,7 @@ } }, "edition": "2021", - "version": "0.12.3" + "version": "0.12.5" }, "license": "MIT", "license_ids": [ @@ -53041,7 +53009,7 @@ "deps": { "common": [ { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" } ], @@ -53056,14 +53024,14 @@ ], "license_file": "LICENSE-MIT.md" }, - "quick-xml 0.37.1": { + "quick-xml 0.37.2": { "name": "quick-xml", - "version": "0.37.1", + "version": "0.37.2", "package_url": "https://github.com/tafia/quick-xml", "repository": { "Http": { - "url": "https://static.crates.io/crates/quick-xml/0.37.1/download", - "sha256": "f22f29bdff3987b4d8632ef95fd6424ec7e4e0a57e2f4fc63e489e75357f6a03" + "url": "https://static.crates.io/crates/quick-xml/0.37.2/download", + "sha256": "165859e9e55f79d67b96c5d96f4e88b6f2695a1972849c15a6a3f5c59fc2c003" } }, "targets": [ @@ -53088,14 +53056,14 @@ "deps": { "common": [ { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" } ], "selects": {} }, "edition": "2021", - "version": "0.37.1" + "version": "0.37.2" }, "license": "MIT", "license_ids": [ @@ -53149,7 +53117,7 @@ "target": "env_logger" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -53169,14 +53137,14 @@ ], "license_file": "LICENSE-MIT" }, - "quinn 0.11.5": { + "quinn 0.11.6": { "name": "quinn", - "version": "0.11.5", + "version": "0.11.6", "package_url": "https://github.com/quinn-rs/quinn", "repository": { "Http": { - "url": "https://static.crates.io/crates/quinn/0.11.5/download", - "sha256": "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684" + "url": "https://static.crates.io/crates/quinn/0.11.6/download", + "sha256": "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef" } }, "targets": [ @@ -53203,7 +53171,8 @@ "log", "ring", "runtime-tokio", - "rustls" + "rustls", + "rustls-ring" ], "selects": {} }, @@ -53214,37 +53183,37 @@ "target": "bytes" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "quinn-proto 0.11.7", + "id": "quinn-proto 0.11.9", "target": "quinn_proto", "alias": "proto" }, { - "id": "quinn-udp 0.5.5", + "id": "quinn-udp 0.5.9", "target": "quinn_udp", "alias": "udp" }, { - "id": "rustc-hash 2.0.0", + "id": "rustc-hash 2.1.0", "target": "rustc_hash" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 2.0.11", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -53255,7 +53224,7 @@ "selects": {} }, "edition": "2021", - "version": "0.11.5" + "version": "0.11.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53264,14 +53233,14 @@ ], "license_file": "LICENSE-APACHE" }, - "quinn-proto 0.11.7": { + "quinn-proto 0.11.9": { "name": "quinn-proto", - "version": "0.11.7", + "version": "0.11.9", "package_url": "https://github.com/quinn-rs/quinn", "repository": { "Http": { - "url": "https://static.crates.io/crates/quinn-proto/0.11.7/download", - "sha256": "ea0a9b3a42929fad8a7c3de7f86ce0814cfa893328157672680e9fb1145549c5" + "url": "https://static.crates.io/crates/quinn-proto/0.11.9/download", + "sha256": "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d" } }, "targets": [ @@ -53297,7 +53266,7 @@ "common": [ "log", "ring", - "rustls" + "rustls-ring" ], "selects": {} }, @@ -53312,15 +53281,15 @@ "target": "rand" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { - "id": "rustc-hash 2.0.0", + "id": "rustc-hash 2.1.0", "target": "rustc_hash" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { @@ -53328,11 +53297,11 @@ "target": "slab" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 2.0.11", "target": "thiserror" }, { - "id": "tinyvec 1.6.0", + "id": "tinyvec 1.8.1", "target": "tinyvec" }, { @@ -53340,10 +53309,25 @@ "target": "tracing" } ], - "selects": {} + "selects": { + "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + }, + { + "id": "rustls-pki-types 1.10.1", + "target": "rustls_pki_types" + }, + { + "id": "web-time 1.1.0", + "target": "web_time" + } + ] + } }, "edition": "2021", - "version": "0.11.7" + "version": "0.11.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53352,14 +53336,14 @@ ], "license_file": "LICENSE-APACHE" }, - "quinn-udp 0.5.5": { + "quinn-udp 0.5.9": { "name": "quinn-udp", - "version": "0.5.5", + "version": "0.5.9", "package_url": "https://github.com/quinn-rs/quinn", "repository": { "Http": { - "url": "https://static.crates.io/crates/quinn-udp/0.5.5/download", - "sha256": "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b" + "url": "https://static.crates.io/crates/quinn-udp/0.5.9/download", + "sha256": "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904" } }, "targets": [ @@ -53374,6 +53358,18 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], "library_target_name": "quinn_udp", @@ -53392,11 +53388,15 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "socket2 0.5.7", + "id": "quinn-udp 0.5.9", + "target": "build_script_build" + }, + { + "id": "socket2 0.5.8", "target": "socket2" }, { @@ -53407,7 +53407,7 @@ "selects": { "cfg(windows)": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -53418,7 +53418,24 @@ } }, "edition": "2021", - "version": "0.5.5" + "version": "0.5.9" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "cfg_aliases 0.2.1", + "target": "cfg_aliases" + } + ], + "selects": {} + } }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53427,14 +53444,14 @@ ], "license_file": "LICENSE-APACHE" }, - "quote 1.0.37": { + "quote 1.0.38": { "name": "quote", - "version": "1.0.37", + "version": "1.0.38", "package_url": "https://github.com/dtolnay/quote", "repository": { "Http": { - "url": "https://static.crates.io/crates/quote/1.0.37/download", - "sha256": "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" + "url": "https://static.crates.io/crates/quote/1.0.38/download", + "sha256": "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" } }, "targets": [ @@ -53466,14 +53483,14 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" } ], "selects": {} }, "edition": "2018", - "version": "1.0.37" + "version": "1.0.38" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53640,7 +53657,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -53735,145 +53752,145 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-apple-ios": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-apple-ios-sim": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-unknown-fuchsia": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "arm-unknown-linux-gnueabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "armv7-linux-androideabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-unknown-freebsd": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "powerpc-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "s390x-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-apple-ios": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-unknown-freebsd": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-unknown-fuchsia": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] @@ -54009,7 +54026,7 @@ "deps": { "common": [ { - "id": "ppv-lite86 0.2.17", + "id": "ppv-lite86 0.2.20", "target": "ppv_lite86" }, { @@ -54163,7 +54180,7 @@ "deps": { "common": [ { - "id": "getrandom 0.2.10", + "id": "getrandom 0.2.15", "target": "getrandom" } ], @@ -54380,7 +54397,7 @@ "selects": { "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -54459,7 +54476,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -54706,14 +54723,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rangemap 1.4.0": { + "rangemap 1.5.1": { "name": "rangemap", - "version": "1.4.0", + "version": "1.5.1", "package_url": "https://github.com/jeffparsons/rangemap", "repository": { "Http": { - "url": "https://static.crates.io/crates/rangemap/1.4.0/download", - "sha256": "977b1e897f9d764566891689e642653e5ed90c6895106acd005eb4c1d0203991" + "url": "https://static.crates.io/crates/rangemap/1.5.1/download", + "sha256": "f60fcc7d6849342eff22c4350c8b9a989ee8ceabc4b481253e8946b9fe83d684" } }, "targets": [ @@ -54736,7 +54753,7 @@ "**" ], "edition": "2018", - "version": "1.4.0" + "version": "1.5.1" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -54781,11 +54798,11 @@ "target": "clocksource" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -54801,61 +54818,14 @@ ], "license_file": "LICENSE-APACHE" }, - "raw-cpuid 10.7.0": { - "name": "raw-cpuid", - "version": "10.7.0", - "package_url": "https://github.com/gz/rust-cpuid", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/raw-cpuid/10.7.0/download", - "sha256": "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" - } - }, - "targets": [ - { - "Library": { - "crate_name": "raw_cpuid", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "raw_cpuid", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bitflags 1.3.2", - "target": "bitflags" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "10.7.0" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE.md" - }, - "raw-cpuid 11.1.0": { + "raw-cpuid 11.3.0": { "name": "raw-cpuid", - "version": "11.1.0", + "version": "11.3.0", "package_url": "https://github.com/gz/rust-cpuid", "repository": { "Http": { - "url": "https://static.crates.io/crates/raw-cpuid/11.1.0/download", - "sha256": "cb9ee317cfe3fbd54b36a511efc1edd42e216903c9cd575e686dd68a2ba90d8d" + "url": "https://static.crates.io/crates/raw-cpuid/11.3.0/download", + "sha256": "c6928fa44c097620b706542d428957635951bade7143269085389d42c8a4927e" } }, "targets": [ @@ -54880,14 +54850,14 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" } ], "selects": {} }, "edition": "2018", - "version": "11.1.0" + "version": "11.3.0" }, "license": "MIT", "license_ids": [ @@ -54927,7 +54897,7 @@ "deps": { "common": [ { - "id": "either 1.9.0", + "id": "either 1.13.0", "target": "either" }, { @@ -54991,11 +54961,11 @@ "deps": { "common": [ { - "id": "crossbeam-deque 0.8.5", + "id": "crossbeam-deque 0.8.6", "target": "crossbeam_deque" }, { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" }, { @@ -55024,14 +54994,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rcgen 0.13.1": { + "rcgen 0.13.2": { "name": "rcgen", - "version": "0.13.1", + "version": "0.13.2", "package_url": "https://github.com/rustls/rcgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/rcgen/0.13.1/download", - "sha256": "54077e1872c46788540de1ea3d7f4ccb1983d12f9aa909b234468676c1a36779" + "url": "https://static.crates.io/crates/rcgen/0.13.2/download", + "sha256": "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" } }, "targets": [ @@ -55070,16 +55040,16 @@ "target": "pem" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" }, { @@ -55094,7 +55064,7 @@ "selects": {} }, "edition": "2021", - "version": "0.13.1" + "version": "0.13.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -55197,14 +55167,14 @@ ], "license_file": "LICENSE" }, - "redox_syscall 0.3.5": { + "redox_syscall 0.5.8": { "name": "redox_syscall", - "version": "0.3.5", + "version": "0.5.8", "package_url": "https://gitlab.redox-os.org/redox-os/syscall", "repository": { "Http": { - "url": "https://static.crates.io/crates/redox_syscall/0.3.5/download", - "sha256": "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" + "url": "https://static.crates.io/crates/redox_syscall/0.5.8/download", + "sha256": "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" } }, "targets": [ @@ -55229,14 +55199,14 @@ "deps": { "common": [ { - "id": "bitflags 1.3.2", + "id": "bitflags 2.8.0", "target": "bitflags" } ], "selects": {} }, - "edition": "2018", - "version": "0.3.5" + "edition": "2021", + "version": "0.5.8" }, "license": "MIT", "license_ids": [ @@ -55244,14 +55214,14 @@ ], "license_file": "LICENSE" }, - "redox_users 0.4.3": { + "redox_users 0.4.6": { "name": "redox_users", - "version": "0.4.3", + "version": "0.4.6", "package_url": "https://gitlab.redox-os.org/redox-os/users", "repository": { "Http": { - "url": "https://static.crates.io/crates/redox_users/0.4.3/download", - "sha256": "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" + "url": "https://static.crates.io/crates/redox_users/0.4.6/download", + "sha256": "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" } }, "targets": [ @@ -55276,22 +55246,22 @@ "deps": { "common": [ { - "id": "getrandom 0.2.10", + "id": "getrandom 0.2.15", "target": "getrandom" }, { - "id": "redox_syscall 0.2.16", - "target": "syscall" + "id": "libredox 0.1.3", + "target": "libredox" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], "selects": {} }, - "edition": "2018", - "version": "0.4.3" + "edition": "2021", + "version": "0.4.6" }, "license": "MIT", "license_ids": [ @@ -55351,11 +55321,11 @@ "target": "hashbrown" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "rustc-hash 2.0.0", + "id": "rustc-hash 2.1.0", "target": "rustc_hash" }, { @@ -55374,14 +55344,14 @@ ], "license_file": "LICENSE" }, - "regex 1.11.0": { + "regex 1.11.1": { "name": "regex", - "version": "1.11.0", + "version": "1.11.1", "package_url": "https://github.com/rust-lang/regex", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex/1.11.0/download", - "sha256": "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" + "url": "https://static.crates.io/crates/regex/1.11.1/download", + "sha256": "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" } }, "targets": [ @@ -55428,15 +55398,15 @@ "deps": { "common": [ { - "id": "aho-corasick 1.1.2", + "id": "aho-corasick 1.1.3", "target": "aho_corasick" }, { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" }, { - "id": "regex-automata 0.4.8", + "id": "regex-automata 0.4.9", "target": "regex_automata" }, { @@ -55447,7 +55417,7 @@ "selects": {} }, "edition": "2021", - "version": "1.11.0" + "version": "1.11.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -55512,14 +55482,14 @@ ], "license_file": "LICENSE-MIT" }, - "regex-automata 0.4.8": { + "regex-automata 0.4.9": { "name": "regex-automata", - "version": "0.4.8", + "version": "0.4.9", "package_url": "https://github.com/rust-lang/regex/tree/master/regex-automata", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex-automata/0.4.8/download", - "sha256": "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" + "url": "https://static.crates.io/crates/regex-automata/0.4.9/download", + "sha256": "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" } }, "targets": [ @@ -55567,16 +55537,59 @@ "unicode-segment", "unicode-word-boundary" ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + "perf" + ], + "aarch64-pc-windows-msvc": [ + "perf" + ], + "aarch64-unknown-linux-gnu": [ + "perf" + ], + "aarch64-unknown-nixos-gnu": [ + "perf" + ], + "arm-unknown-linux-gnueabi": [ + "perf" + ], + "i686-pc-windows-msvc": [ + "perf" + ], + "i686-unknown-linux-gnu": [ + "perf" + ], + "powerpc-unknown-linux-gnu": [ + "perf" + ], + "s390x-unknown-linux-gnu": [ + "perf" + ], + "x86_64-apple-darwin": [ + "perf" + ], + "x86_64-pc-windows-msvc": [ + "perf" + ], + "x86_64-unknown-freebsd": [ + "perf" + ], + "x86_64-unknown-linux-gnu": [ + "perf" + ], + "x86_64-unknown-nixos-gnu": [ + "perf" + ] + } }, "deps": { "common": [ { - "id": "aho-corasick 1.1.2", + "id": "aho-corasick 1.1.3", "target": "aho_corasick" }, { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" }, { @@ -55587,7 +55600,7 @@ "selects": {} }, "edition": "2021", - "version": "0.4.8" + "version": "0.4.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -55849,14 +55862,14 @@ ], "license_file": null }, - "rend 0.4.1": { + "rend 0.4.2": { "name": "rend", - "version": "0.4.1", + "version": "0.4.2", "package_url": "https://github.com/djkoloski/rend", "repository": { "Http": { - "url": "https://static.crates.io/crates/rend/0.4.1/download", - "sha256": "a2571463863a6bd50c32f94402933f03457a3fbaf697a707c5be741e459f08fd" + "url": "https://static.crates.io/crates/rend/0.4.2/download", + "sha256": "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" } }, "targets": [ @@ -55893,14 +55906,14 @@ "deps": { "common": [ { - "id": "rend 0.4.1", + "id": "rend 0.4.2", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.4.1" + "version": "0.4.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -55969,7 +55982,7 @@ "deps": { "common": [ { - "id": "base64 0.21.4", + "id": "base64 0.21.7", "target": "base64" }, { @@ -55993,7 +56006,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -56009,14 +56022,14 @@ "target": "tower_service" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56028,7 +56041,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56040,13 +56053,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "aarch64-apple-ios": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56058,7 +56071,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56070,13 +56083,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "aarch64-apple-ios-sim": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56088,7 +56101,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56100,13 +56113,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "aarch64-linux-android": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56118,7 +56131,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56130,13 +56143,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "aarch64-pc-windows-msvc": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56148,7 +56161,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56160,13 +56173,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "aarch64-unknown-fuchsia": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56178,7 +56191,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56190,13 +56203,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "aarch64-unknown-linux-gnu": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56208,7 +56221,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56220,13 +56233,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56238,7 +56251,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56250,13 +56263,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56268,7 +56281,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56280,13 +56293,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "arm-unknown-linux-gnueabi": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56298,7 +56311,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56310,13 +56323,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "armv7-linux-androideabi": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56328,7 +56341,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56340,13 +56353,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56358,7 +56371,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56370,13 +56383,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "cfg(not(target_arch = \"wasm32\"))": [ { - "id": "encoding_rs 0.8.33", + "id": "encoding_rs 0.8.35", "target": "encoding_rs" }, { @@ -56388,7 +56401,7 @@ "target": "http_body" }, { - "id": "hyper 0.14.27", + "id": "hyper 0.14.32", "target": "hyper" }, { @@ -56396,7 +56409,7 @@ "target": "ipnet" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -56404,7 +56417,7 @@ "target": "mime" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -56412,29 +56425,29 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" }, { - "id": "wasm-bindgen-futures 0.4.37", + "id": "wasm-bindgen-futures 0.4.50", "target": "wasm_bindgen_futures" }, { - "id": "web-sys 0.3.64", + "id": "web-sys 0.3.77", "target": "web_sys" } ], @@ -56452,7 +56465,7 @@ ], "i686-apple-darwin": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56464,7 +56477,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56476,13 +56489,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "i686-linux-android": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56494,7 +56507,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56506,13 +56519,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "i686-pc-windows-msvc": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56524,7 +56537,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56536,13 +56549,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "i686-unknown-freebsd": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56554,7 +56567,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56566,13 +56579,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "i686-unknown-linux-gnu": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56584,7 +56597,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56596,13 +56609,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "powerpc-unknown-linux-gnu": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56614,7 +56627,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56626,13 +56639,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "riscv32imc-unknown-none-elf": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56644,7 +56657,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56656,13 +56669,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "riscv64gc-unknown-none-elf": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56674,7 +56687,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56686,13 +56699,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "s390x-unknown-linux-gnu": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56704,7 +56717,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56716,13 +56729,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "thumbv7em-none-eabi": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56734,7 +56747,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56746,13 +56759,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "thumbv8m.main-none-eabi": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56764,7 +56777,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56776,13 +56789,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-apple-darwin": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56794,7 +56807,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56806,13 +56819,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-apple-ios": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56824,7 +56837,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56836,13 +56849,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-linux-android": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56854,7 +56867,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56866,13 +56879,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-pc-windows-msvc": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56884,7 +56897,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56896,13 +56909,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-unknown-freebsd": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56914,7 +56927,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56926,13 +56939,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-unknown-fuchsia": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56944,7 +56957,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56956,13 +56969,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-unknown-linux-gnu": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56974,7 +56987,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56986,13 +56999,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -57004,7 +57017,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -57016,13 +57029,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-unknown-none": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -57034,7 +57047,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -57046,7 +57059,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ] @@ -57062,14 +57075,14 @@ ], "license_file": "LICENSE-APACHE" }, - "reqwest 0.12.9": { + "reqwest 0.12.12": { "name": "reqwest", - "version": "0.12.9", + "version": "0.12.12", "package_url": "https://github.com/seanmonstar/reqwest", "repository": { "Http": { - "url": "https://static.crates.io/crates/reqwest/0.12.9/download", - "sha256": "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" + "url": "https://static.crates.io/crates/reqwest/0.12.12/download", + "sha256": "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" } }, "targets": [ @@ -57135,7 +57148,7 @@ "target": "http" }, { - "id": "mime_guess 2.0.4", + "id": "mime_guess 2.0.5", "target": "mime_guess" }, { @@ -57143,7 +57156,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -57151,7 +57164,7 @@ "target": "serde_urlencoded" }, { - "id": "sync_wrapper 1.0.1", + "id": "sync_wrapper 1.0.2", "target": "sync_wrapper" }, { @@ -57159,7 +57172,7 @@ "target": "tower_service" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" } ], @@ -57170,23 +57183,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57194,11 +57207,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57210,7 +57223,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57220,23 +57233,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57244,11 +57257,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57260,7 +57273,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57270,23 +57283,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57294,11 +57307,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57310,7 +57323,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57320,23 +57333,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57344,11 +57357,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57360,7 +57373,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57370,23 +57383,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57394,11 +57407,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57410,7 +57423,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57420,23 +57433,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57444,11 +57457,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57460,7 +57473,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57470,23 +57483,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57494,11 +57507,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57510,7 +57523,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57520,23 +57533,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57544,11 +57557,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57560,7 +57573,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57570,23 +57583,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57594,11 +57607,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57610,7 +57623,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57620,23 +57633,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57644,11 +57657,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57660,7 +57673,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57670,23 +57683,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57694,11 +57707,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57710,7 +57723,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57720,23 +57733,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57744,11 +57757,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57760,7 +57773,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57774,7 +57787,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -57786,7 +57799,7 @@ "target": "ipnet" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -57794,7 +57807,7 @@ "target": "mime" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -57802,29 +57815,33 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" + }, + { + "id": "tower 0.5.2", + "target": "tower" } ], "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" }, { - "id": "wasm-bindgen-futures 0.4.37", + "id": "wasm-bindgen-futures 0.4.50", "target": "wasm_bindgen_futures" }, { - "id": "web-sys 0.3.64", + "id": "web-sys 0.3.77", "target": "web_sys" } ], @@ -57840,23 +57857,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57864,11 +57881,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57880,7 +57897,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57890,23 +57907,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57914,11 +57931,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57930,7 +57947,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57940,23 +57957,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57964,11 +57981,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57980,7 +57997,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57990,23 +58007,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58014,11 +58031,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58030,7 +58047,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58040,23 +58057,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58064,11 +58081,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58080,7 +58097,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58090,23 +58107,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58114,11 +58131,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58130,7 +58147,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58140,23 +58157,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58164,11 +58181,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58180,7 +58197,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58190,23 +58207,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58214,11 +58231,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58230,7 +58247,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58240,23 +58257,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58264,11 +58281,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58280,7 +58297,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58290,23 +58307,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58314,11 +58331,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58330,7 +58347,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58340,23 +58357,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58364,11 +58381,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58380,25 +58397,19 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "wasm32-unknown-unknown": [ { - "id": "wasm-streams 0.4.0", - "target": "wasm_streams" - } - ], - "wasm32-wasi": [ - { - "id": "wasm-streams 0.4.0", + "id": "wasm-streams 0.4.2", "target": "wasm_streams" } ], "wasm32-wasip1": [ { - "id": "wasm-streams 0.4.0", + "id": "wasm-streams 0.4.2", "target": "wasm_streams" } ], @@ -58408,23 +58419,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58432,11 +58443,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58448,7 +58459,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58458,23 +58469,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58482,11 +58493,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58498,7 +58509,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58508,23 +58519,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58532,11 +58543,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58548,7 +58559,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58558,23 +58569,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58582,11 +58593,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58598,7 +58609,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58608,23 +58619,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58632,11 +58643,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58648,7 +58659,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58658,23 +58669,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58682,11 +58693,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58698,7 +58709,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58708,23 +58719,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58732,11 +58743,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58748,7 +58759,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58758,23 +58769,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58782,11 +58793,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58798,7 +58809,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58808,23 +58819,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58832,11 +58843,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58848,14 +58859,14 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ] } }, "edition": "2021", - "version": "0.12.9" + "version": "0.12.12" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -58975,14 +58986,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rgb 0.8.37": { + "rgb 0.8.50": { "name": "rgb", - "version": "0.8.37", + "version": "0.8.50", "package_url": "https://github.com/kornelski/rust-rgb", "repository": { "Http": { - "url": "https://static.crates.io/crates/rgb/0.8.37/download", - "sha256": "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8" + "url": "https://static.crates.io/crates/rgb/0.8.50/download", + "sha256": "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a" } }, "targets": [ @@ -59006,23 +59017,25 @@ ], "crate_features": { "common": [ + "argb", "as-bytes", "bytemuck", - "default" + "default", + "grb" ], "selects": {} }, "deps": { "common": [ { - "id": "bytemuck 1.14.0", + "id": "bytemuck 1.21.0", "target": "bytemuck" } ], "selects": {} }, - "edition": "2018", - "version": "0.8.37" + "edition": "2021", + "version": "0.8.50" }, "license": "MIT", "license_ids": [ @@ -59095,43 +59108,43 @@ "selects": { "aarch64-linux-android": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "aarch64-unknown-linux-gnu": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "arm-unknown-linux-gnueabi": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "armv7-linux-androideabi": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\", target_env = \"\"))": [ { - "id": "web-sys 0.3.64", + "id": "web-sys 0.3.77", "target": "web_sys" } ], @@ -59143,13 +59156,13 @@ ], "cfg(any(target_os = \"android\", target_os = \"linux\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"illumos\", target_os = \"netbsd\", target_os = \"openbsd\", target_os = \"solaris\"))": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], @@ -59161,55 +59174,55 @@ ], "i686-linux-android": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "i686-unknown-freebsd": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "i686-unknown-linux-gnu": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "powerpc-unknown-linux-gnu": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "s390x-unknown-linux-gnu": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "x86_64-linux-android": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "x86_64-unknown-freebsd": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "x86_64-unknown-linux-gnu": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ] @@ -59228,7 +59241,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -59246,14 +59259,14 @@ "license_ids": [], "license_file": "LICENSE" }, - "ring 0.17.7": { + "ring 0.17.8": { "name": "ring", - "version": "0.17.7", + "version": "0.17.8", "package_url": "https://github.com/briansmith/ring", "repository": { "Http": { - "url": "https://static.crates.io/crates/ring/0.17.7/download", - "sha256": "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" + "url": "https://static.crates.io/crates/ring/0.17.8/download", + "sha256": "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" } }, "targets": [ @@ -59294,16 +59307,24 @@ "dev_urandom_fallback", "std" ], - "selects": {} + "selects": { + "wasm32-unknown-unknown": [ + "wasm32_unknown_unknown_js" + ] + } }, "deps": { "common": [ { - "id": "getrandom 0.2.10", + "id": "cfg-if 1.0.0", + "target": "cfg_if" + }, + { + "id": "getrandom 0.2.15", "target": "getrandom" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "build_script_build" }, { @@ -59314,13 +59335,13 @@ "selects": { "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(target_arch = \"aarch64\", target_arch = \"arm\")))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_os = \"windows\"))": [ { - "id": "windows-sys 0.48.0", + "id": "windows-sys 0.52.0", "target": "windows_sys" } ], @@ -59333,7 +59354,7 @@ } }, "edition": "2021", - "version": "0.17.7" + "version": "0.17.8" }, "build_script_attrs": { "compile_data_glob": [ @@ -59345,7 +59366,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -59357,7 +59378,7 @@ }, "selects": {} }, - "links": "ring_core_0_17_7" + "links": "ring_core_0_17_8" }, "license": null, "license_ids": [], @@ -59418,14 +59439,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rkyv 0.7.42": { + "rkyv 0.7.45": { "name": "rkyv", - "version": "0.7.42", + "version": "0.7.45", "package_url": "https://github.com/rkyv/rkyv", "repository": { "Http": { - "url": "https://static.crates.io/crates/rkyv/0.7.42/download", - "sha256": "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58" + "url": "https://static.crates.io/crates/rkyv/0.7.45/download", + "sha256": "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" } }, "targets": [ @@ -59466,7 +59487,7 @@ "target": "ptr_meta" }, { - "id": "rkyv 0.7.42", + "id": "rkyv 0.7.45", "target": "build_script_build" }, { @@ -59480,13 +59501,13 @@ "proc_macro_deps": { "common": [ { - "id": "rkyv_derive 0.7.42", + "id": "rkyv_derive 0.7.45", "target": "rkyv_derive" } ], "selects": {} }, - "version": "0.7.42" + "version": "0.7.45" }, "build_script_attrs": { "compile_data_glob": [ @@ -59502,14 +59523,14 @@ ], "license_file": "LICENSE" }, - "rkyv_derive 0.7.42": { + "rkyv_derive 0.7.45": { "name": "rkyv_derive", - "version": "0.7.42", + "version": "0.7.45", "package_url": "https://github.com/rkyv/rkyv", "repository": { "Http": { - "url": "https://static.crates.io/crates/rkyv_derive/0.7.42/download", - "sha256": "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d" + "url": "https://static.crates.io/crates/rkyv_derive/0.7.45/download", + "sha256": "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" } }, "targets": [ @@ -59534,11 +59555,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -59549,7 +59570,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.42" + "version": "0.7.45" }, "license": "MIT", "license_ids": [ @@ -59698,11 +59719,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -59754,7 +59775,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -59805,7 +59826,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" } ], @@ -59821,14 +59842,14 @@ ], "license_file": "LICENSE" }, - "rsa 0.9.6": { + "rsa 0.9.7": { "name": "rsa", - "version": "0.9.6", + "version": "0.9.7", "package_url": "https://github.com/RustCrypto/RSA", "repository": { "Http": { - "url": "https://static.crates.io/crates/rsa/0.9.6/download", - "sha256": "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" + "url": "https://static.crates.io/crates/rsa/0.9.7/download", + "sha256": "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519" } }, "targets": [ @@ -59863,7 +59884,7 @@ "deps": { "common": [ { - "id": "const-oid 0.9.5", + "id": "const-oid 0.9.6", "target": "const_oid" }, { @@ -59919,7 +59940,7 @@ "selects": {} }, "edition": "2021", - "version": "0.9.6" + "version": "0.9.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -59971,7 +59992,7 @@ "target": "futures" }, { - "id": "futures-timer 3.0.2", + "id": "futures-timer 3.0.3", "target": "futures_timer" } ], @@ -60050,19 +60071,19 @@ "target": "cfg_if" }, { - "id": "glob 0.3.1", + "id": "glob 0.3.2", "target": "glob" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -60074,11 +60095,11 @@ "target": "build_script_build" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" }, { - "id": "unicode-ident 1.0.12", + "id": "unicode-ident 1.0.14", "target": "unicode_ident" } ], @@ -60097,7 +60118,7 @@ "deps": { "common": [ { - "id": "rustc_version 0.4.0", + "id": "rustc_version 0.4.1", "target": "rustc_version" } ], @@ -60111,14 +60132,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rusb 0.9.3": { + "rusb 0.9.4": { "name": "rusb", - "version": "0.9.3", + "version": "0.9.4", "package_url": "https://github.com/a1ien/rusb.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/rusb/0.9.3/download", - "sha256": "45fff149b6033f25e825cbb7b2c625a11ee8e6dac09264d49beb125e39aa97bf" + "url": "https://static.crates.io/crates/rusb/0.9.4/download", + "sha256": "ab9f9ff05b63a786553a4c02943b74b34a988448671001e9a27e2f0565cc05a4" } }, "targets": [ @@ -60155,22 +60176,22 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "libusb1-sys 0.6.4", + "id": "libusb1-sys 0.7.0", "target": "libusb1_sys" }, { - "id": "rusb 0.9.3", + "id": "rusb 0.9.4", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.9.3" + "version": "0.9.4" }, "build_script_attrs": { "compile_data_glob": [ @@ -60182,7 +60203,7 @@ "link_deps": { "common": [ { - "id": "libusb1-sys 0.6.4", + "id": "libusb1-sys 0.7.0", "target": "libusb1_sys" } ], @@ -60321,7 +60342,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.4", + "id": "arrayvec 0.7.6", "target": "arrayvec" }, { @@ -60394,7 +60415,7 @@ "deps": { "common": [ { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -60413,14 +60434,14 @@ ], "license_file": "LICENSE" }, - "rustc-demangle 0.1.23": { + "rustc-demangle 0.1.24": { "name": "rustc-demangle", - "version": "0.1.23", - "package_url": "https://github.com/alexcrichton/rustc-demangle", + "version": "0.1.24", + "package_url": "https://github.com/rust-lang/rustc-demangle", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustc-demangle/0.1.23/download", - "sha256": "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" + "url": "https://static.crates.io/crates/rustc-demangle/0.1.24/download", + "sha256": "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" } }, "targets": [ @@ -60443,7 +60464,7 @@ "**" ], "edition": "2015", - "version": "0.1.23" + "version": "0.1.24" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -60498,14 +60519,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustc-hash 2.0.0": { + "rustc-hash 2.1.0": { "name": "rustc-hash", - "version": "2.0.0", + "version": "2.1.0", "package_url": "https://github.com/rust-lang/rustc-hash", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustc-hash/2.0.0/download", - "sha256": "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" + "url": "https://static.crates.io/crates/rustc-hash/2.1.0/download", + "sha256": "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497" } }, "targets": [ @@ -60535,9 +60556,9 @@ "selects": {} }, "edition": "2021", - "version": "2.0.0" + "version": "2.1.0" }, - "license": "Apache-2.0/MIT", + "license": "Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" @@ -60589,14 +60610,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustc_version 0.4.0": { + "rustc_version 0.4.1": { "name": "rustc_version", - "version": "0.4.0", - "package_url": "https://github.com/Kimundi/rustc-version-rs", + "version": "0.4.1", + "package_url": "https://github.com/djc/rustc-version-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustc_version/0.4.0/download", - "sha256": "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" + "url": "https://static.crates.io/crates/rustc_version/0.4.1/download", + "sha256": "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" } }, "targets": [ @@ -60621,16 +60642,16 @@ "deps": { "common": [ { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" } ], "selects": {} }, "edition": "2018", - "version": "0.4.0" + "version": "0.4.1" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -60685,14 +60706,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustix 0.38.32": { + "rustix 0.38.43": { "name": "rustix", - "version": "0.38.32", + "version": "0.38.43", "package_url": "https://github.com/bytecodealliance/rustix", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustix/0.38.32/download", - "sha256": "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89", + "url": "https://static.crates.io/crates/rustix/0.38.43/download", + "sha256": "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6", "patch_args": [ "-p1" ], @@ -60736,6 +60757,7 @@ "common": [ "alloc", "fs", + "libc-extra-traits", "net", "std" ], @@ -60746,7 +60768,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60756,7 +60777,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60766,7 +60786,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60776,7 +60795,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60786,7 +60804,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60798,7 +60815,6 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" @@ -60811,7 +60827,6 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" @@ -60822,7 +60837,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60834,7 +60848,6 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" @@ -60845,7 +60858,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60857,7 +60869,6 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" @@ -60868,7 +60879,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60878,7 +60888,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60888,7 +60897,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60900,7 +60908,6 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" @@ -60913,21 +60920,10 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" ], - "riscv32imc-unknown-none-elf": [ - "default", - "termios", - "use-libc-auxv" - ], - "riscv64gc-unknown-none-elf": [ - "default", - "termios", - "use-libc-auxv" - ], "s390x-unknown-linux-gnu": [ "default", "event", @@ -60936,29 +60932,12 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" ], - "thumbv7em-none-eabi": [ - "default", - "termios", - "use-libc-auxv" - ], - "thumbv8m.main-none-eabi": [ - "default", - "termios", - "use-libc-auxv" - ], - "wasm32-wasi": [ - "default", - "termios", - "use-libc-auxv" - ], "wasm32-wasip1": [ "default", - "termios", "use-libc-auxv" ], "x86_64-apple-darwin": [ @@ -60967,7 +60946,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60977,7 +60955,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60987,7 +60964,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60997,7 +60973,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -61007,7 +60982,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -61019,7 +60993,6 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" @@ -61032,364 +61005,347 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" - ], - "x86_64-unknown-none": [ - "default", - "termios", - "use-libc-auxv" ] } }, "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "build_script_build" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-apple-ios": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-apple-ios-sim": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-linux-android": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-pc-windows-msvc": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" } ], "aarch64-unknown-fuchsia": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "armv7-linux-androideabi": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], - "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ { - "id": "linux-raw-sys 0.4.13", + "id": "linux-raw-sys 0.4.15", "target": "linux_raw_sys" } ], - "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ + "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ { - "id": "linux-raw-sys 0.4.13", + "id": "linux-raw-sys 0.4.15", "target": "linux_raw_sys" } ], - "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(windows)": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "windows-sys 0.52.0", + "id": "windows-sys 0.59.0", "target": "windows_sys" } ], "i686-apple-darwin": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-linux-android": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-pc-windows-msvc": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" } ], "i686-unknown-freebsd": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "powerpc-unknown-linux-gnu": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "riscv32imc-unknown-none-elf": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "riscv64gc-unknown-none-elf": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "s390x-unknown-linux-gnu": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "thumbv7em-none-eabi": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "thumbv8m.main-none-eabi": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "wasm32-unknown-unknown": [ { - "id": "errno 0.3.8", - "target": "errno", - "alias": "libc_errno" - }, - { - "id": "libc 0.2.158", - "target": "libc" - } - ], - "wasm32-wasi": [ - { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "wasm32-wasip1": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-apple-darwin": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-apple-ios": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-linux-android": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-pc-windows-msvc": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" } ], "x86_64-unknown-freebsd": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-unknown-fuchsia": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-unknown-none": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] } }, "edition": "2021", - "version": "0.38.32" + "version": "0.38.43" }, "build_script_attrs": { "compile_data_glob": [ @@ -61460,11 +61416,11 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { @@ -61476,7 +61432,7 @@ "target": "webpki" }, { - "id": "sct 0.7.0", + "id": "sct 0.7.1", "target": "sct" } ], @@ -61495,7 +61451,7 @@ "link_deps": { "common": [ { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" } ], @@ -61563,11 +61519,11 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { @@ -61575,7 +61531,7 @@ "target": "build_script_build" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" }, @@ -61607,7 +61563,7 @@ "link_deps": { "common": [ { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" } ], @@ -61622,14 +61578,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustls 0.23.18": { + "rustls 0.23.21": { "name": "rustls", - "version": "0.23.18", + "version": "0.23.21", "package_url": "https://github.com/rustls/rustls", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls/0.23.18/download", - "sha256": "9c9cc1d47e243d655ace55ed38201c19ae02c148ae56412ab8750e8f0166ab7f" + "url": "https://static.crates.io/crates/rustls/0.23.21/download", + "sha256": "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8" } }, "targets": [ @@ -61685,23 +61641,23 @@ "target": "brotli_decompressor" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "build_script_build" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" }, @@ -61721,7 +61677,7 @@ "selects": {} }, "edition": "2021", - "version": "0.23.18" + "version": "0.23.21" }, "build_script_attrs": { "compile_data_glob": [ @@ -61733,7 +61689,7 @@ "link_deps": { "common": [ { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" } ], @@ -61787,7 +61743,7 @@ "deps": { "common": [ { - "id": "async-io 2.3.4", + "id": "async-io 2.4.0", "target": "async_io" }, { @@ -61803,7 +61759,7 @@ "target": "blocking" }, { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { @@ -61819,7 +61775,7 @@ "target": "http" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -61827,11 +61783,11 @@ "target": "pem" }, { - "id": "rcgen 0.13.1", + "id": "rcgen 0.13.2", "target": "rcgen" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { @@ -61839,15 +61795,15 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "thiserror 2.0.3", + "id": "thiserror 2.0.11", "target": "thiserror" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" }, { @@ -61861,7 +61817,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -61908,7 +61864,7 @@ "deps": { "common": [ { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" } ], @@ -61927,7 +61883,7 @@ ], "cfg(windows)": [ { - "id": "schannel 0.1.22", + "id": "schannel 0.1.27", "target": "schannel" } ] @@ -61944,14 +61900,14 @@ ], "license_file": "LICENSE" }, - "rustls-native-certs 0.7.0": { + "rustls-native-certs 0.7.3": { "name": "rustls-native-certs", - "version": "0.7.0", + "version": "0.7.3", "package_url": "https://github.com/rustls/rustls-native-certs", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-native-certs/0.7.0/download", - "sha256": "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" + "url": "https://static.crates.io/crates/rustls-native-certs/0.7.3/download", + "sha256": "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" } }, "targets": [ @@ -61980,7 +61936,7 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" } @@ -62000,14 +61956,14 @@ ], "cfg(windows)": [ { - "id": "schannel 0.1.22", + "id": "schannel 0.1.27", "target": "schannel" } ] } }, "edition": "2021", - "version": "0.7.0" + "version": "0.7.3" }, "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ @@ -62017,14 +61973,14 @@ ], "license_file": "LICENSE" }, - "rustls-native-certs 0.8.0": { + "rustls-native-certs 0.8.1": { "name": "rustls-native-certs", - "version": "0.8.0", + "version": "0.8.1", "package_url": "https://github.com/rustls/rustls-native-certs", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-native-certs/0.8.0/download", - "sha256": "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a" + "url": "https://static.crates.io/crates/rustls-native-certs/0.8.1/download", + "sha256": "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" } }, "targets": [ @@ -62049,11 +62005,7 @@ "deps": { "common": [ { - "id": "rustls-pemfile 2.2.0", - "target": "rustls_pemfile" - }, - { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" } @@ -62067,20 +62019,20 @@ ], "cfg(target_os = \"macos\")": [ { - "id": "security-framework 2.11.1", + "id": "security-framework 3.2.0", "target": "security_framework" } ], "cfg(windows)": [ { - "id": "schannel 0.1.22", + "id": "schannel 0.1.27", "target": "schannel" } ] } }, "edition": "2021", - "version": "0.8.0" + "version": "0.8.1" }, "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ @@ -62090,14 +62042,14 @@ ], "license_file": "LICENSE" }, - "rustls-pemfile 1.0.3": { + "rustls-pemfile 1.0.4": { "name": "rustls-pemfile", - "version": "1.0.3", + "version": "1.0.4", "package_url": "https://github.com/rustls/pemfile", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-pemfile/1.0.3/download", - "sha256": "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" + "url": "https://static.crates.io/crates/rustls-pemfile/1.0.4/download", + "sha256": "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" } }, "targets": [ @@ -62122,14 +62074,14 @@ "deps": { "common": [ { - "id": "base64 0.21.4", + "id": "base64 0.21.7", "target": "base64" } ], "selects": {} }, "edition": "2018", - "version": "1.0.3" + "version": "1.0.4" }, "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ @@ -62178,7 +62130,7 @@ "deps": { "common": [ { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" } @@ -62196,14 +62148,14 @@ ], "license_file": "LICENSE" }, - "rustls-pki-types 1.10.0": { + "rustls-pki-types 1.10.1": { "name": "rustls-pki-types", - "version": "1.10.0", + "version": "1.10.1", "package_url": "https://github.com/rustls/pki-types", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-pki-types/1.10.0/download", - "sha256": "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" + "url": "https://static.crates.io/crates/rustls-pki-types/1.10.1/download", + "sha256": "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37" } }, "targets": [ @@ -62231,10 +62183,26 @@ "default", "std" ], - "selects": {} + "selects": { + "wasm32-unknown-unknown": [ + "web", + "web-time" + ] + } + }, + "deps": { + "common": [], + "selects": { + "wasm32-unknown-unknown": [ + { + "id": "web-time 1.1.0", + "target": "web_time" + } + ] + } }, "edition": "2021", - "version": "1.10.0" + "version": "1.10.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -62275,22 +62243,22 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" } ], "selects": { "cfg(all(unix, not(target_os = \"android\"), not(target_vendor = \"apple\"), not(target_arch = \"wasm32\")))": [ { - "id": "rustls-native-certs 0.7.0", + "id": "rustls-native-certs 0.7.3", "target": "rustls_native_certs" }, { @@ -62312,7 +62280,7 @@ "target": "security_framework" }, { - "id": "security-framework-sys 2.12.0", + "id": "security-framework-sys 2.14.0", "target": "security_framework_sys" } ], @@ -62322,7 +62290,7 @@ "target": "webpki" }, { - "id": "webpki-root-certs 0.26.6", + "id": "webpki-root-certs 0.26.7", "target": "webpki_root_certs" } ], @@ -62437,7 +62405,7 @@ "deps": { "common": [ { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { @@ -62496,11 +62464,11 @@ "deps": { "common": [ { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" }, @@ -62520,14 +62488,14 @@ ], "license_file": "LICENSE" }, - "rustversion 1.0.14": { + "rustversion 1.0.19": { "name": "rustversion", - "version": "1.0.14", + "version": "1.0.19", "package_url": "https://github.com/dtolnay/rustversion", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustversion/1.0.14/download", - "sha256": "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" + "url": "https://static.crates.io/crates/rustversion/1.0.19/download", + "sha256": "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" } }, "targets": [ @@ -62564,14 +62532,14 @@ "deps": { "common": [ { - "id": "rustversion 1.0.14", + "id": "rustversion 1.0.19", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.0.14" + "version": "1.0.19" }, "build_script_attrs": { "compile_data_glob": [ @@ -62636,7 +62604,7 @@ "target": "quick_error" }, { - "id": "tempfile 3.12.0", + "id": "tempfile 3.15.0", "target": "tempfile" }, { @@ -62656,14 +62624,14 @@ ], "license_file": "LICENSE-APACHE" }, - "ryu 1.0.15": { + "ryu 1.0.18": { "name": "ryu", - "version": "1.0.15", + "version": "1.0.18", "package_url": "https://github.com/dtolnay/ryu", "repository": { "Http": { - "url": "https://static.crates.io/crates/ryu/1.0.15/download", - "sha256": "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" + "url": "https://static.crates.io/crates/ryu/1.0.18/download", + "sha256": "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" } }, "targets": [ @@ -62686,7 +62654,7 @@ "**" ], "edition": "2018", - "version": "1.0.15" + "version": "1.0.18" }, "license": "Apache-2.0 OR BSL-1.0", "license_ids": [ @@ -62729,7 +62697,7 @@ "selects": { "cfg(windows)": [ { - "id": "winapi-util 0.1.6", + "id": "winapi-util 0.1.9", "target": "winapi_util" } ] @@ -62745,14 +62713,14 @@ ], "license_file": "LICENSE-MIT" }, - "scale-info 2.9.0": { + "scale-info 2.11.6": { "name": "scale-info", - "version": "2.9.0", + "version": "2.11.6", "package_url": "https://github.com/paritytech/scale-info", "repository": { "Http": { - "url": "https://static.crates.io/crates/scale-info/2.9.0/download", - "sha256": "35c0a159d0c45c12b20c5a844feb1fe4bea86e28f17b92a5f0c42193634d3782" + "url": "https://static.crates.io/crates/scale-info/2.11.6/download", + "sha256": "346a3b32eba2640d17a9cb5927056b08f3de90f65b72fe09402c2ad07d684d0b" } }, "targets": [ @@ -62788,7 +62756,11 @@ "target": "cfg_if" }, { - "id": "parity-scale-codec 3.6.4", + "id": "derive_more 1.0.0", + "target": "derive_more" + }, + { + "id": "parity-scale-codec 3.6.12", "target": "parity_scale_codec", "alias": "scale" } @@ -62799,17 +62771,13 @@ "proc_macro_deps": { "common": [ { - "id": "derive_more 0.99.17", - "target": "derive_more" - }, - { - "id": "scale-info-derive 2.9.0", + "id": "scale-info-derive 2.11.6", "target": "scale_info_derive" } ], "selects": {} }, - "version": "2.9.0" + "version": "2.11.6" }, "license": "Apache-2.0", "license_ids": [ @@ -62817,14 +62785,14 @@ ], "license_file": "LICENSE" }, - "scale-info-derive 2.9.0": { + "scale-info-derive 2.11.6": { "name": "scale-info-derive", - "version": "2.9.0", + "version": "2.11.6", "package_url": "https://github.com/paritytech/scale-info", "repository": { "Http": { - "url": "https://static.crates.io/crates/scale-info-derive/2.9.0/download", - "sha256": "912e55f6d20e0e80d63733872b40e1227c0bce1e1ab81ba67d696339bfd7fd29" + "url": "https://static.crates.io/crates/scale-info-derive/2.11.6/download", + "sha256": "c6630024bf739e2179b91fb424b28898baf819414262c5d376677dbff1fe7ebf" } }, "targets": [ @@ -62849,26 +62817,26 @@ "deps": { "common": [ { - "id": "proc-macro-crate 1.3.1", + "id": "proc-macro-crate 3.2.0", "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 1.0.109", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.9.0" + "version": "2.11.6" }, "license": "Apache-2.0", "license_ids": [ @@ -62876,14 +62844,14 @@ ], "license_file": null }, - "schannel 0.1.22": { + "schannel 0.1.27": { "name": "schannel", - "version": "0.1.22", + "version": "0.1.27", "package_url": "https://github.com/steffengy/schannel-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/schannel/0.1.22/download", - "sha256": "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" + "url": "https://static.crates.io/crates/schannel/0.1.27/download", + "sha256": "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" } }, "targets": [ @@ -62908,14 +62876,14 @@ "deps": { "common": [ { - "id": "windows-sys 0.48.0", + "id": "windows-sys 0.59.0", "target": "windows_sys" } ], "selects": {} }, "edition": "2018", - "version": "0.1.22" + "version": "0.1.27" }, "license": "MIT", "license_ids": [ @@ -62923,14 +62891,14 @@ ], "license_file": "LICENSE.md" }, - "schemars 0.8.16": { + "schemars 0.8.21": { "name": "schemars", - "version": "0.8.16", + "version": "0.8.21", "package_url": "https://github.com/GREsau/schemars", "repository": { "Http": { - "url": "https://static.crates.io/crates/schemars/0.8.16/download", - "sha256": "45a28f4c49489add4ce10783f7911893516f15afe45d015608d41faca6bc4d29" + "url": "https://static.crates.io/crates/schemars/0.8.21/download", + "sha256": "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92" } }, "targets": [ @@ -62977,16 +62945,16 @@ "deps": { "common": [ { - "id": "dyn-clone 1.0.14", + "id": "dyn-clone 1.0.17", "target": "dyn_clone" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap", "alias": "indexmap2" }, { - "id": "schemars 0.8.16", + "id": "schemars 0.8.21", "target": "build_script_build" }, { @@ -62994,7 +62962,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -63004,13 +62972,13 @@ "proc_macro_deps": { "common": [ { - "id": "schemars_derive 0.8.16", + "id": "schemars_derive 0.8.21", "target": "schemars_derive" } ], "selects": {} }, - "version": "0.8.16" + "version": "0.8.21" }, "build_script_attrs": { "compile_data_glob": [ @@ -63026,14 +62994,14 @@ ], "license_file": "LICENSE" }, - "schemars_derive 0.8.16": { + "schemars_derive 0.8.21": { "name": "schemars_derive", - "version": "0.8.16", + "version": "0.8.21", "package_url": "https://github.com/GREsau/schemars", "repository": { "Http": { - "url": "https://static.crates.io/crates/schemars_derive/0.8.16/download", - "sha256": "c767fd6fa65d9ccf9cf026122c1b555f2ef9a4f0cea69da4d7dbc3e258d30967" + "url": "https://static.crates.io/crates/schemars_derive/0.8.21/download", + "sha256": "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e" } }, "targets": [ @@ -63058,26 +63026,26 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "serde_derive_internals 0.26.0", + "id": "serde_derive_internals 0.29.1", "target": "serde_derive_internals" }, { - "id": "syn 1.0.109", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.8.16" + "version": "0.8.21" }, "license": "MIT", "license_ids": [ @@ -63257,7 +63225,7 @@ "target": "cssparser" }, { - "id": "ego-tree 0.6.2", + "id": "ego-tree 0.6.3", "target": "ego_tree" }, { @@ -63269,7 +63237,7 @@ "target": "html5ever" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -63296,14 +63264,14 @@ ], "license_file": "LICENSE" }, - "sct 0.7.0": { + "sct 0.7.1": { "name": "sct", - "version": "0.7.0", - "package_url": "https://github.com/ctz/sct.rs", + "version": "0.7.1", + "package_url": "https://github.com/rustls/sct.rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/sct/0.7.0/download", - "sha256": "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" + "url": "https://static.crates.io/crates/sct/0.7.1/download", + "sha256": "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" } }, "targets": [ @@ -63328,20 +63296,20 @@ "deps": { "common": [ { - "id": "ring 0.16.20", + "id": "ring 0.17.8", "target": "ring" }, { - "id": "untrusted 0.7.1", + "id": "untrusted 0.9.0", "target": "untrusted" } ], "selects": {} }, - "edition": "2018", - "version": "0.7.0" + "edition": "2021", + "version": "0.7.1" }, - "license": "Apache-2.0/ISC/MIT", + "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ "Apache-2.0", "ISC", @@ -63437,7 +63405,7 @@ "target": "base16ct" }, { - "id": "der 0.7.8", + "id": "der 0.7.9", "target": "der" }, { @@ -63607,14 +63575,14 @@ ], "license_file": "LICENSE" }, - "secp256k1 0.29.0": { + "secp256k1 0.29.1": { "name": "secp256k1", - "version": "0.29.0", + "version": "0.29.1", "package_url": "https://github.com/rust-bitcoin/rust-secp256k1/", "repository": { "Http": { - "url": "https://static.crates.io/crates/secp256k1/0.29.0/download", - "sha256": "0e0cc0f1cf93f4969faf3ea1c7d8a9faed25918d96affa959720823dfe86d4f3" + "url": "https://static.crates.io/crates/secp256k1/0.29.1/download", + "sha256": "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113" } }, "targets": [ @@ -63651,14 +63619,14 @@ "alias": "hashes" }, { - "id": "secp256k1-sys 0.10.0", + "id": "secp256k1-sys 0.10.1", "target": "secp256k1_sys" } ], "selects": {} }, "edition": "2021", - "version": "0.29.0" + "version": "0.29.1" }, "license": "CC0-1.0", "license_ids": [ @@ -63736,7 +63704,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -63821,7 +63789,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -63835,14 +63803,14 @@ ], "license_file": "LICENSE" }, - "secp256k1-sys 0.10.0": { + "secp256k1-sys 0.10.1": { "name": "secp256k1-sys", - "version": "0.10.0", + "version": "0.10.1", "package_url": "https://github.com/rust-bitcoin/rust-secp256k1/", "repository": { "Http": { - "url": "https://static.crates.io/crates/secp256k1-sys/0.10.0/download", - "sha256": "1433bd67156263443f14d603720b082dd3121779323fce20cba2aa07b874bc1b" + "url": "https://static.crates.io/crates/secp256k1-sys/0.10.1/download", + "sha256": "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9" } }, "targets": [ @@ -63885,7 +63853,7 @@ "deps": { "common": [ { - "id": "secp256k1-sys 0.10.0", + "id": "secp256k1-sys 0.10.1", "target": "build_script_build" } ], @@ -63898,7 +63866,7 @@ ], "selects": {} }, - "version": "0.10.0" + "version": "0.10.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -63910,7 +63878,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -64031,7 +63999,7 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -64043,7 +64011,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -64051,7 +64019,7 @@ "target": "num_bigint" }, { - "id": "security-framework-sys 2.12.0", + "id": "security-framework-sys 2.14.0", "target": "security_framework_sys" } ], @@ -64067,14 +64035,85 @@ ], "license_file": "LICENSE-APACHE" }, - "security-framework-sys 2.12.0": { + "security-framework 3.2.0": { + "name": "security-framework", + "version": "3.2.0", + "package_url": "https://github.com/kornelski/rust-security-framework", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/security-framework/3.2.0/download", + "sha256": "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" + } + }, + "targets": [ + { + "Library": { + "crate_name": "security_framework", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "security_framework", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "OSX_10_12", + "default" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "bitflags 2.8.0", + "target": "bitflags" + }, + { + "id": "core-foundation 0.10.0", + "target": "core_foundation" + }, + { + "id": "core-foundation-sys 0.8.7", + "target": "core_foundation_sys" + }, + { + "id": "libc 0.2.169", + "target": "libc" + }, + { + "id": "security-framework-sys 2.14.0", + "target": "security_framework_sys" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "3.2.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "security-framework-sys 2.14.0": { "name": "security-framework-sys", - "version": "2.12.0", + "version": "2.14.0", "package_url": "https://github.com/kornelski/rust-security-framework", "repository": { "Http": { - "url": "https://static.crates.io/crates/security-framework-sys/2.12.0/download", - "sha256": "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" + "url": "https://static.crates.io/crates/security-framework-sys/2.14.0/download", + "sha256": "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" } }, "targets": [ @@ -64115,14 +64154,14 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "selects": {} }, "edition": "2021", - "version": "2.12.0" + "version": "2.14.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -64175,7 +64214,7 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -64187,11 +64226,11 @@ "target": "fxhash" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "new_debug_unreachable 1.0.4", + "id": "new_debug_unreachable 1.0.6", "target": "debug_unreachable" }, { @@ -64221,7 +64260,7 @@ "proc_macro_deps": { "common": [ { - "id": "derive_more 0.99.17", + "id": "derive_more 0.99.18", "target": "derive_more" } ], @@ -64252,14 +64291,14 @@ ], "license_file": null }, - "semver 1.0.22": { + "semver 1.0.24": { "name": "semver", - "version": "1.0.22", + "version": "1.0.24", "package_url": "https://github.com/dtolnay/semver", "repository": { "Http": { - "url": "https://static.crates.io/crates/semver/1.0.22/download", - "sha256": "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" + "url": "https://static.crates.io/crates/semver/1.0.24/download", + "sha256": "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba" } }, "targets": [ @@ -64304,7 +64343,7 @@ "deps": { "common": [ { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "build_script_build" }, { @@ -64315,7 +64354,7 @@ "selects": {} }, "edition": "2018", - "version": "1.0.22" + "version": "1.0.24" }, "build_script_attrs": { "compile_data_glob": [ @@ -64558,7 +64597,7 @@ "deps": { "common": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { @@ -64566,7 +64605,7 @@ "target": "serde" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], @@ -64675,7 +64714,7 @@ "deps": { "common": [ { - "id": "half 1.8.2", + "id": "half 1.8.3", "target": "half" }, { @@ -64733,15 +64772,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -64757,14 +64796,14 @@ ], "license_file": "LICENSE-APACHE" }, - "serde_derive_internals 0.26.0": { + "serde_derive_internals 0.29.1": { "name": "serde_derive_internals", - "version": "0.26.0", + "version": "0.29.1", "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_derive_internals/0.26.0/download", - "sha256": "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c" + "url": "https://static.crates.io/crates/serde_derive_internals/0.29.1/download", + "sha256": "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" } }, "targets": [ @@ -64789,22 +64828,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 1.0.109", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2015", - "version": "0.26.0" + "version": "0.29.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -64813,14 +64852,14 @@ ], "license_file": "LICENSE-APACHE" }, - "serde_json 1.0.132": { + "serde_json 1.0.135": { "name": "serde_json", - "version": "1.0.132", + "version": "1.0.135", "package_url": "https://github.com/serde-rs/json", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_json/1.0.132/download", - "sha256": "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" + "url": "https://static.crates.io/crates/serde_json/1.0.135/download", + "sha256": "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" } }, "targets": [ @@ -64857,7 +64896,6 @@ "crate_features": { "common": [ "alloc", - "arbitrary_precision", "default", "raw_value", "std", @@ -64868,15 +64906,15 @@ "deps": { "common": [ { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" }, { - "id": "ryu 1.0.15", + "id": "ryu 1.0.18", "target": "ryu" }, { @@ -64884,14 +64922,14 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "1.0.132" + "version": "1.0.135" }, "build_script_attrs": { "compile_data_glob": [ @@ -64908,14 +64946,14 @@ ], "license_file": "LICENSE-APACHE" }, - "serde_path_to_error 0.1.14": { + "serde_path_to_error 0.1.16": { "name": "serde_path_to_error", - "version": "0.1.14", + "version": "0.1.16", "package_url": "https://github.com/dtolnay/path-to-error", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_path_to_error/0.1.14/download", - "sha256": "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335" + "url": "https://static.crates.io/crates/serde_path_to_error/0.1.16/download", + "sha256": "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" } }, "targets": [ @@ -64940,7 +64978,7 @@ "deps": { "common": [ { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { @@ -64951,7 +64989,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.14" + "version": "0.1.16" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -65000,7 +65038,7 @@ "target": "serde" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -65048,7 +65086,7 @@ "deps": { "common": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -65100,15 +65138,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -65156,7 +65194,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { @@ -65179,14 +65217,14 @@ ], "license_file": "LICENSE" }, - "serde_tokenstream 0.2.1": { + "serde_tokenstream 0.2.2": { "name": "serde_tokenstream", - "version": "0.2.1", + "version": "0.2.2", "package_url": "https://github.com/oxidecomputer/serde_tokenstream", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_tokenstream/0.2.1/download", - "sha256": "8790a7c3fe883e443eaa2af6f705952bc5d6e8671a220b9335c8cae92c037e74" + "url": "https://static.crates.io/crates/serde_tokenstream/0.2.2/download", + "sha256": "64060d864397305347a78851c51588fd283767e7e7589829e8121d65512340f1" } }, "targets": [ @@ -65211,11 +65249,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -65223,14 +65261,14 @@ "target": "serde" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.2.1" + "version": "0.2.2" }, "license": "Apache-2.0", "license_ids": [ @@ -65274,11 +65312,11 @@ "target": "form_urlencoded" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "ryu 1.0.15", + "id": "ryu 1.0.18", "target": "ryu" }, { @@ -65470,11 +65508,11 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -65530,15 +65568,15 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -65590,7 +65628,7 @@ "target": "indexmap" }, { - "id": "ryu 1.0.15", + "id": "ryu 1.0.18", "target": "ryu" }, { @@ -65646,15 +65684,15 @@ "deps": { "common": [ { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "ryu 1.0.15", + "id": "ryu 1.0.18", "target": "ryu" }, { @@ -65776,7 +65814,7 @@ "selects": { "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))": [ { - "id": "cpufeatures 0.2.9", + "id": "cpufeatures 0.2.16", "target": "cpufeatures" } ] @@ -65843,14 +65881,14 @@ "target": "digest" }, { - "id": "opaque-debug 0.3.0", + "id": "opaque-debug 0.3.1", "target": "opaque_debug" } ], "selects": { "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.9", + "id": "cpufeatures 0.2.16", "target": "cpufeatures" } ] @@ -65924,7 +65962,7 @@ "selects": { "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.9", + "id": "cpufeatures 0.2.16", "target": "cpufeatures" } ] @@ -65999,7 +66037,7 @@ "target": "sha2" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -66009,7 +66047,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -66067,7 +66105,7 @@ "target": "digest" }, { - "id": "keccak 0.1.4", + "id": "keccak 0.1.5", "target": "keccak" } ], @@ -66115,7 +66153,7 @@ "deps": { "common": [ { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" } ], @@ -66228,7 +66266,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -66236,7 +66274,7 @@ "target": "build_script_build" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" } ], @@ -66260,14 +66298,14 @@ ], "license_file": "LICENSE-APACHE" }, - "signal-hook-mio 0.2.3": { + "signal-hook-mio 0.2.4": { "name": "signal-hook-mio", - "version": "0.2.3", + "version": "0.2.4", "package_url": "https://github.com/vorner/signal-hook", "repository": { "Http": { - "url": "https://static.crates.io/crates/signal-hook-mio/0.2.3/download", - "sha256": "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" + "url": "https://static.crates.io/crates/signal-hook-mio/0.2.4/download", + "sha256": "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd" } }, "targets": [ @@ -66299,11 +66337,11 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio", "alias": "mio_0_8" }, @@ -66315,7 +66353,7 @@ "selects": {} }, "edition": "2018", - "version": "0.2.3" + "version": "0.2.4" }, "license": "Apache-2.0/MIT", "license_ids": [ @@ -66324,14 +66362,14 @@ ], "license_file": "LICENSE-APACHE" }, - "signal-hook-registry 1.4.1": { + "signal-hook-registry 1.4.2": { "name": "signal-hook-registry", - "version": "1.4.1", + "version": "1.4.2", "package_url": "https://github.com/vorner/signal-hook", "repository": { "Http": { - "url": "https://static.crates.io/crates/signal-hook-registry/1.4.1/download", - "sha256": "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" + "url": "https://static.crates.io/crates/signal-hook-registry/1.4.2/download", + "sha256": "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" } }, "targets": [ @@ -66356,14 +66394,14 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "selects": {} }, "edition": "2015", - "version": "1.4.1" + "version": "1.4.2" }, "license": "Apache-2.0/MIT", "license_ids": [ @@ -66433,14 +66471,14 @@ ], "license_file": "LICENSE-APACHE" }, - "simdutf8 0.1.4": { + "simdutf8 0.1.5": { "name": "simdutf8", - "version": "0.1.4", + "version": "0.1.5", "package_url": "https://github.com/rusticstuff/simdutf8", "repository": { "Http": { - "url": "https://static.crates.io/crates/simdutf8/0.1.4/download", - "sha256": "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" + "url": "https://static.crates.io/crates/simdutf8/0.1.5/download", + "sha256": "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" } }, "targets": [ @@ -66463,7 +66501,7 @@ "**" ], "edition": "2018", - "version": "0.1.4" + "version": "0.1.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -66472,14 +66510,14 @@ ], "license_file": "LICENSE-Apache" }, - "similar 2.3.0": { + "similar 2.6.0": { "name": "similar", - "version": "2.3.0", + "version": "2.6.0", "package_url": "https://github.com/mitsuhiko/similar", "repository": { "Http": { - "url": "https://static.crates.io/crates/similar/2.3.0/download", - "sha256": "2aeaf503862c419d66959f5d7ca015337d864e9c49485d771b732e2a20453597" + "url": "https://static.crates.io/crates/similar/2.6.0/download", + "sha256": "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e" } }, "targets": [ @@ -66510,7 +66548,7 @@ "selects": {} }, "edition": "2018", - "version": "2.3.0" + "version": "2.6.0" }, "license": "Apache-2.0", "license_ids": [ @@ -66518,14 +66556,14 @@ ], "license_file": "LICENSE" }, - "simple_asn1 0.6.2": { + "simple_asn1 0.6.3": { "name": "simple_asn1", - "version": "0.6.2", + "version": "0.6.3", "package_url": "https://github.com/acw/simple_asn1", "repository": { "Http": { - "url": "https://static.crates.io/crates/simple_asn1/0.6.2/download", - "sha256": "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" + "url": "https://static.crates.io/crates/simple_asn1/0.6.3/download", + "sha256": "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" } }, "targets": [ @@ -66558,18 +66596,18 @@ "target": "num_traits" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 2.0.11", "target": "thiserror" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], "selects": {} }, "edition": "2018", - "version": "0.6.2" + "version": "0.6.3" }, "license": "ISC", "license_ids": [ @@ -66619,15 +66657,15 @@ "deps": { "common": [ { - "id": "colored 2.0.4", + "id": "colored 2.2.0", "target": "colored" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -66736,7 +66774,7 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -66744,7 +66782,7 @@ "target": "termcolor" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -66806,6 +66844,52 @@ ], "license_file": null }, + "siphasher 1.0.1": { + "name": "siphasher", + "version": "1.0.1", + "package_url": "https://github.com/jedisct1/rust-siphash", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/siphasher/1.0.1/download", + "sha256": "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" + } + }, + "targets": [ + { + "Library": { + "crate_name": "siphasher", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "siphasher", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "std" + ], + "selects": {} + }, + "edition": "2018", + "version": "1.0.1" + }, + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": null + }, "slab 0.4.9": { "name": "slab", "version": "0.4.9", @@ -66876,7 +66960,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -67024,7 +67108,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { @@ -67040,7 +67124,7 @@ "target": "take_mut" }, { - "id": "thread_local 1.1.7", + "id": "thread_local 1.1.8", "target": "thread_local" } ], @@ -67104,11 +67188,11 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -67192,7 +67276,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -67200,7 +67284,7 @@ "target": "slog" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -67253,7 +67337,7 @@ "target": "arc_swap" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -67312,7 +67396,7 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -67369,7 +67453,7 @@ "deps": { "common": [ { - "id": "is-terminal 0.4.9", + "id": "is-terminal 0.4.13", "target": "is_terminal" }, { @@ -67381,11 +67465,11 @@ "target": "term" }, { - "id": "thread_local 1.1.7", + "id": "thread_local 1.1.8", "target": "thread_local" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -67402,14 +67486,14 @@ ], "license_file": "LICENSE-APACHE" }, - "slotmap 1.0.6": { + "slotmap 1.0.7": { "name": "slotmap", - "version": "1.0.6", + "version": "1.0.7", "package_url": "https://github.com/orlp/slotmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/slotmap/1.0.6/download", - "sha256": "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342" + "url": "https://static.crates.io/crates/slotmap/1.0.7/download", + "sha256": "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" } }, "targets": [ @@ -67453,14 +67537,14 @@ "deps": { "common": [ { - "id": "slotmap 1.0.6", + "id": "slotmap 1.0.7", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.0.6" + "version": "1.0.7" }, "build_script_attrs": { "compile_data_glob": [ @@ -67472,7 +67556,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.4", + "id": "version_check 0.9.5", "target": "version_check" } ], @@ -67642,15 +67726,15 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -67666,14 +67750,14 @@ ], "license_file": "LICENSE-APACHE" }, - "socket2 0.4.9": { + "socket2 0.4.10": { "name": "socket2", - "version": "0.4.9", + "version": "0.4.10", "package_url": "https://github.com/rust-lang/socket2", "repository": { "Http": { - "url": "https://static.crates.io/crates/socket2/0.4.9/download", - "sha256": "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" + "url": "https://static.crates.io/crates/socket2/0.4.10/download", + "sha256": "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" } }, "targets": [ @@ -67706,7 +67790,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -67719,7 +67803,7 @@ } }, "edition": "2018", - "version": "0.4.9" + "version": "0.4.10" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -67728,14 +67812,14 @@ ], "license_file": "LICENSE-APACHE" }, - "socket2 0.5.7": { + "socket2 0.5.8": { "name": "socket2", - "version": "0.5.7", + "version": "0.5.8", "package_url": "https://github.com/rust-lang/socket2", "repository": { "Http": { - "url": "https://static.crates.io/crates/socket2/0.5.7/download", - "sha256": "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" + "url": "https://static.crates.io/crates/socket2/0.5.8/download", + "sha256": "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8" } }, "targets": [ @@ -67768,7 +67852,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -67781,7 +67865,7 @@ } }, "edition": "2021", - "version": "0.5.7" + "version": "0.5.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -67860,94 +67944,10 @@ "crate_features": { "common": [ "mutex", + "once", "spin_mutex" ], - "selects": { - "aarch64-apple-darwin": [ - "once" - ], - "aarch64-apple-ios": [ - "once" - ], - "aarch64-apple-ios-sim": [ - "once" - ], - "aarch64-linux-android": [ - "once" - ], - "aarch64-pc-windows-msvc": [ - "once" - ], - "aarch64-unknown-fuchsia": [ - "once" - ], - "aarch64-unknown-linux-gnu": [ - "once" - ], - "aarch64-unknown-nixos-gnu": [ - "once" - ], - "aarch64-unknown-nto-qnx710": [ - "once" - ], - "arm-unknown-linux-gnueabi": [ - "once" - ], - "armv7-linux-androideabi": [ - "once" - ], - "armv7-unknown-linux-gnueabi": [ - "once" - ], - "i686-apple-darwin": [ - "once" - ], - "i686-linux-android": [ - "once" - ], - "i686-pc-windows-msvc": [ - "once" - ], - "i686-unknown-freebsd": [ - "once" - ], - "i686-unknown-linux-gnu": [ - "once" - ], - "thumbv7em-none-eabi": [ - "once" - ], - "thumbv8m.main-none-eabi": [ - "once" - ], - "x86_64-apple-darwin": [ - "once" - ], - "x86_64-apple-ios": [ - "once" - ], - "x86_64-linux-android": [ - "once" - ], - "x86_64-pc-windows-msvc": [ - "once" - ], - "x86_64-unknown-freebsd": [ - "once" - ], - "x86_64-unknown-fuchsia": [ - "once" - ], - "x86_64-unknown-linux-gnu": [ - "once" - ], - "x86_64-unknown-nixos-gnu": [ - "once" - ], - "x86_64-unknown-none": [ - "once" - ] - } + "selects": {} }, "edition": "2015", "version": "0.9.8" @@ -67958,6 +67958,54 @@ ], "license_file": "LICENSE" }, + "spinning_top 0.3.0": { + "name": "spinning_top", + "version": "0.3.0", + "package_url": "https://github.com/rust-osdev/spinning_top", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/spinning_top/0.3.0/download", + "sha256": "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" + } + }, + "targets": [ + { + "Library": { + "crate_name": "spinning_top", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "spinning_top", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "lock_api 0.4.12", + "target": "lock_api" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.3.0" + }, + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "spki 0.7.3": { "name": "spki", "version": "0.7.3", @@ -67998,7 +68046,7 @@ "deps": { "common": [ { - "id": "der 0.7.8", + "id": "der 0.7.9", "target": "der" } ], @@ -68095,7 +68143,7 @@ "target": "bitflags" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -68166,14 +68214,14 @@ ], "license_file": "LICENSE-APACHE" }, - "stacker 0.1.15": { + "stacker 0.1.17": { "name": "stacker", - "version": "0.1.15", + "version": "0.1.17", "package_url": "https://github.com/rust-lang/stacker", "repository": { "Http": { - "url": "https://static.crates.io/crates/stacker/0.1.15/download", - "sha256": "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce" + "url": "https://static.crates.io/crates/stacker/0.1.17/download", + "sha256": "799c883d55abdb5e98af1a7b3f23b9b6de8ecada0ecac058672d7635eb48ca7b" } }, "targets": [ @@ -68214,29 +68262,29 @@ "target": "cfg_if" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "psm 0.1.21", + "id": "psm 0.1.24", "target": "psm" }, { - "id": "stacker 0.1.15", + "id": "stacker 0.1.17", "target": "build_script_build" } ], "selects": { "cfg(windows)": [ { - "id": "winapi 0.3.9", - "target": "winapi" + "id": "windows-sys 0.59.0", + "target": "windows_sys" } ] } }, "edition": "2015", - "version": "0.1.15" + "version": "0.1.17" }, "build_script_attrs": { "compile_data_glob": [ @@ -68248,7 +68296,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -68345,7 +68393,7 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], @@ -68440,15 +68488,15 @@ "deps": { "common": [ { - "id": "new_debug_unreachable 1.0.4", + "id": "new_debug_unreachable 1.0.6", "target": "debug_unreachable" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { @@ -68516,11 +68564,11 @@ "target": "phf_shared" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" } ], @@ -68644,15 +68692,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -68709,15 +68757,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -68733,62 +68781,6 @@ ], "license_file": null }, - "strum 0.25.0": { - "name": "strum", - "version": "0.25.0", - "package_url": "https://github.com/Peternator7/strum", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/strum/0.25.0/download", - "sha256": "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" - } - }, - "targets": [ - { - "Library": { - "crate_name": "strum", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "strum", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "derive", - "std", - "strum_macros" - ], - "selects": {} - }, - "edition": "2018", - "proc_macro_deps": { - "common": [ - { - "id": "strum_macros 0.25.3", - "target": "strum_macros" - } - ], - "selects": {} - }, - "version": "0.25.0" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, "strum 0.26.3": { "name": "strum", "version": "0.26.3", @@ -68845,74 +68837,6 @@ ], "license_file": "LICENSE" }, - "strum_macros 0.25.3": { - "name": "strum_macros", - "version": "0.25.3", - "package_url": "https://github.com/Peternator7/strum", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/strum_macros/0.25.3/download", - "sha256": "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "strum_macros", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "strum_macros", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "heck 0.4.1", - "target": "heck" - }, - { - "id": "proc-macro2 1.0.89", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.37", - "target": "quote" - }, - { - "id": "syn 2.0.87", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2018", - "proc_macro_deps": { - "common": [ - { - "id": "rustversion 1.0.14", - "target": "rustversion" - } - ], - "selects": {} - }, - "version": "0.25.3" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, "strum_macros 0.26.4": { "name": "strum_macros", "version": "0.26.4", @@ -68949,15 +68873,15 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -68967,7 +68891,7 @@ "proc_macro_deps": { "common": [ { - "id": "rustversion 1.0.14", + "id": "rustversion 1.0.19", "target": "rustversion" } ], @@ -68981,14 +68905,14 @@ ], "license_file": "LICENSE" }, - "stubborn-io 0.3.2": { + "stubborn-io 0.3.5": { "name": "stubborn-io", - "version": "0.3.2", + "version": "0.3.5", "package_url": "https://github.com/craftytrickster/stubborn-io", "repository": { "Http": { - "url": "https://static.crates.io/crates/stubborn-io/0.3.2/download", - "sha256": "b261fbca19f25e0ac726f6efb3c3f53949e18ba4b126c16f8ca625730daa1a9c" + "url": "https://static.crates.io/crates/stubborn-io/0.3.5/download", + "sha256": "373a722240991e091384a571e1fd8abde15eca4494a1a2bff95dbf603d15a866" } }, "targets": [ @@ -69010,10 +68934,17 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "default", + "log" + ], + "selects": {} + }, "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -69021,14 +68952,14 @@ "target": "rand" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "0.3.2" + "version": "0.3.5" }, "license": "MIT", "license_ids": [ @@ -69120,14 +69051,14 @@ ], "license_file": "LICENSE" }, - "symbolic-common 12.4.1": { + "symbolic-common 12.13.2": { "name": "symbolic-common", - "version": "12.4.1", + "version": "12.13.2", "package_url": "https://github.com/getsentry/symbolic", "repository": { "Http": { - "url": "https://static.crates.io/crates/symbolic-common/12.4.1/download", - "sha256": "fac08504d60cf5bdffeb8a6a028f1a4868a5da1098bb19eb46239440039163fb" + "url": "https://static.crates.io/crates/symbolic-common/12.13.2/download", + "sha256": "8150eae9699e3c73a3e6431dc1f80d87748797c0457336af23e94c1de619ed24" } }, "targets": [ @@ -69156,7 +69087,7 @@ "target": "debugid" }, { - "id": "memmap2 0.5.10", + "id": "memmap2 0.9.5", "target": "memmap2" }, { @@ -69164,14 +69095,14 @@ "target": "stable_deref_trait" }, { - "id": "uuid 1.11.0", + "id": "uuid 1.12.0", "target": "uuid" } ], "selects": {} }, "edition": "2021", - "version": "12.4.1" + "version": "12.13.2" }, "license": "MIT", "license_ids": [ @@ -69179,14 +69110,14 @@ ], "license_file": null }, - "symbolic-demangle 12.4.1": { + "symbolic-demangle 12.13.2": { "name": "symbolic-demangle", - "version": "12.4.1", + "version": "12.13.2", "package_url": "https://github.com/getsentry/symbolic", "repository": { "Http": { - "url": "https://static.crates.io/crates/symbolic-demangle/12.4.1/download", - "sha256": "8b212728d4f6c527c1d50d6169e715f6e02d849811843c13e366d8ca6d0cf5c4" + "url": "https://static.crates.io/crates/symbolic-demangle/12.13.2/download", + "sha256": "95f4a9846f7a8933b6d198c022faa2c9bd89e1a970bed9d9a98d25708bf8de17" } }, "targets": [ @@ -69230,22 +69161,22 @@ "deps": { "common": [ { - "id": "rustc-demangle 0.1.23", + "id": "rustc-demangle 0.1.24", "target": "rustc_demangle" }, { - "id": "symbolic-common 12.4.1", + "id": "symbolic-common 12.13.2", "target": "symbolic_common" }, { - "id": "symbolic-demangle 12.4.1", + "id": "symbolic-demangle 12.13.2", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "12.4.1" + "version": "12.13.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -69317,84 +69248,70 @@ "selects": { "aarch64-apple-darwin": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "aarch64-pc-windows-msvc": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "aarch64-unknown-linux-gnu": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "aarch64-unknown-nixos-gnu": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "arm-unknown-linux-gnueabi": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "i686-pc-windows-msvc": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "i686-unknown-linux-gnu": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "powerpc-unknown-linux-gnu": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "s390x-unknown-linux-gnu": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "x86_64-apple-darwin": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "x86_64-pc-windows-msvc": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "x86_64-unknown-freebsd": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "x86_64-unknown-linux-gnu": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "x86_64-unknown-nixos-gnu": [ "extra-traits", - "visit", - "visit-mut" + "visit" ] } }, "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -69402,7 +69319,7 @@ "target": "build_script_build" }, { - "id": "unicode-ident 1.0.12", + "id": "unicode-ident 1.0.14", "target": "unicode_ident" } ], @@ -69426,14 +69343,14 @@ ], "license_file": "LICENSE-APACHE" }, - "syn 2.0.87": { + "syn 2.0.96": { "name": "syn", - "version": "2.0.87", + "version": "2.0.96", "package_url": "https://github.com/dtolnay/syn", "repository": { "Http": { - "url": "https://static.crates.io/crates/syn/2.0.87/download", - "sha256": "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" + "url": "https://static.crates.io/crates/syn/2.0.96/download", + "sha256": "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" } }, "targets": [ @@ -69529,22 +69446,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "unicode-ident 1.0.12", + "id": "unicode-ident 1.0.14", "target": "unicode_ident" } ], "selects": {} }, "edition": "2021", - "version": "2.0.87" + "version": "2.0.96" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -69591,14 +69508,14 @@ ], "license_file": "LICENSE" }, - "sync_wrapper 1.0.1": { + "sync_wrapper 1.0.2": { "name": "sync_wrapper", - "version": "1.0.1", + "version": "1.0.2", "package_url": "https://github.com/Actyx/sync_wrapper", "repository": { "Http": { - "url": "https://static.crates.io/crates/sync_wrapper/1.0.1/download", - "sha256": "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" + "url": "https://static.crates.io/crates/sync_wrapper/1.0.2/download", + "sha256": "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" } }, "targets": [ @@ -69636,8 +69553,8 @@ ], "selects": {} }, - "edition": "2018", - "version": "1.0.1" + "edition": "2021", + "version": "1.0.2" }, "license": "Apache-2.0", "license_ids": [ @@ -69684,15 +69601,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -69811,7 +69728,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -69839,14 +69756,14 @@ ], "license_file": null }, - "systemstat 0.2.3": { + "systemstat 0.2.4": { "name": "systemstat", - "version": "0.2.3", + "version": "0.2.4", "package_url": "https://github.com/valpackett/systemstat", "repository": { "Http": { - "url": "https://static.crates.io/crates/systemstat/0.2.3/download", - "sha256": "a24aec24a9312c83999a28e3ef9db7e2afd5c64bf47725b758cdc1cafd5b0bd2" + "url": "https://static.crates.io/crates/systemstat/0.2.4/download", + "sha256": "668a4db78b439df482c238f559e4ea869017f9e62ef0a059c8bfcd841a4df544" } }, "targets": [ @@ -69875,15 +69792,15 @@ "target": "bytesize" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -69903,7 +69820,7 @@ } }, "edition": "2018", - "version": "0.2.3" + "version": "0.2.4" }, "license": "Unlicense", "license_ids": [ @@ -70026,14 +69943,14 @@ ], "license_file": "LICENSE.txt" }, - "tar 0.4.39": { + "tar 0.4.43": { "name": "tar", - "version": "0.4.39", + "version": "0.4.43", "package_url": "https://github.com/alexcrichton/tar-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/tar/0.4.39/download", - "sha256": "ec96d2ffad078296368d46ff1cb309be1c23c513b4ab0e22a45de0185275ac96" + "url": "https://static.crates.io/crates/tar/0.4.43/download", + "sha256": "c65998313f8e17d0d553d28f91a0df93e4dbbbf770279c7bc21ca0f09ea1a1f6" } }, "targets": [ @@ -70065,167 +69982,167 @@ "deps": { "common": [ { - "id": "filetime 0.2.22", + "id": "filetime 0.2.25", "target": "filetime" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "aarch64-apple-ios": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "aarch64-apple-ios-sim": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "aarch64-linux-android": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "aarch64-unknown-fuchsia": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "aarch64-unknown-linux-gnu": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "arm-unknown-linux-gnueabi": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "armv7-linux-androideabi": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-apple-darwin": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "i686-linux-android": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "i686-unknown-freebsd": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "i686-unknown-linux-gnu": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "powerpc-unknown-linux-gnu": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "s390x-unknown-linux-gnu": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "x86_64-apple-darwin": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "x86_64-apple-ios": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "x86_64-linux-android": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "x86_64-unknown-freebsd": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "x86_64-unknown-fuchsia": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "x86_64-unknown-linux-gnu": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ] } }, - "edition": "2018", - "version": "0.4.39" + "edition": "2021", + "version": "0.4.43" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -70353,7 +70270,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -70373,7 +70290,7 @@ "target": "opentelemetry" }, { - "id": "pin-project 1.1.3", + "id": "pin-project 1.1.8", "target": "pin_project" }, { @@ -70389,11 +70306,11 @@ "target": "static_assertions" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -70471,11 +70388,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -70494,14 +70411,14 @@ ], "license_file": "LICENSE" }, - "tempfile 3.12.0": { + "tempfile 3.15.0": { "name": "tempfile", - "version": "3.12.0", + "version": "3.15.0", "package_url": "https://github.com/Stebalien/tempfile", "repository": { "Http": { - "url": "https://static.crates.io/crates/tempfile/3.12.0/download", - "sha256": "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" + "url": "https://static.crates.io/crates/tempfile/3.15.0/download", + "sha256": "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" } }, "targets": [ @@ -70523,6 +70440,13 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "default", + "getrandom" + ], + "selects": {} + }, "deps": { "common": [ { @@ -70530,18 +70454,90 @@ "target": "cfg_if" }, { - "id": "fastrand 2.2.0", + "id": "fastrand 2.3.0", "target": "fastrand" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "selects": { + "aarch64-apple-darwin": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "aarch64-apple-ios": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "aarch64-apple-ios-sim": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "aarch64-linux-android": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "aarch64-pc-windows-msvc": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "aarch64-unknown-fuchsia": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "aarch64-unknown-linux-gnu": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "aarch64-unknown-nixos-gnu": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "aarch64-unknown-nto-qnx710": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "arm-unknown-linux-gnueabi": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "armv7-linux-androideabi": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "armv7-unknown-linux-gnueabi": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], "cfg(any(unix, target_os = \"wasi\"))": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -70550,11 +70546,107 @@ "id": "windows-sys 0.59.0", "target": "windows_sys" } + ], + "i686-apple-darwin": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "i686-linux-android": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "i686-pc-windows-msvc": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "i686-unknown-freebsd": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "i686-unknown-linux-gnu": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "powerpc-unknown-linux-gnu": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "s390x-unknown-linux-gnu": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "wasm32-wasip1": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "x86_64-apple-darwin": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "x86_64-apple-ios": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "x86_64-linux-android": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "x86_64-pc-windows-msvc": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "x86_64-unknown-freebsd": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "x86_64-unknown-fuchsia": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "x86_64-unknown-linux-gnu": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "x86_64-unknown-nixos-gnu": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } ] } }, "edition": "2021", - "version": "3.12.0" + "version": "3.15.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -70737,7 +70829,7 @@ "selects": { "cfg(windows)": [ { - "id": "rustversion 1.0.14", + "id": "rustversion 1.0.19", "target": "rustversion" } ] @@ -70786,7 +70878,7 @@ "selects": { "cfg(windows)": [ { - "id": "winapi-util 0.1.6", + "id": "winapi-util 0.1.9", "target": "winapi_util" } ] @@ -70836,7 +70928,7 @@ "selects": { "cfg(not(windows))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -70890,7 +70982,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -70905,14 +70997,14 @@ ], "license_file": "LICENSE" }, - "termtree 0.4.1": { + "termtree 0.5.1": { "name": "termtree", - "version": "0.4.1", + "version": "0.5.1", "package_url": "https://github.com/rust-cli/termtree", "repository": { "Http": { - "url": "https://static.crates.io/crates/termtree/0.4.1/download", - "sha256": "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" + "url": "https://static.crates.io/crates/termtree/0.5.1/download", + "sha256": "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683" } }, "targets": [ @@ -70934,14 +71026,14 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "0.4.1" + "edition": "2021", + "version": "0.5.1" }, "license": "MIT", "license_ids": [ "MIT" ], - "license_file": "LICENSE" + "license_file": "LICENSE-MIT" }, "test-strategy 0.3.1": { "name": "test-strategy", @@ -70975,11 +71067,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -70987,7 +71079,7 @@ "target": "structmeta" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -71039,7 +71131,7 @@ "target": "getopts" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -71059,14 +71151,14 @@ ], "license_file": null }, - "textplots 0.8.4": { + "textplots 0.8.6": { "name": "textplots", - "version": "0.8.4", + "version": "0.8.6", "package_url": "https://github.com/loony-bean/textplots-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/textplots/0.8.4/download", - "sha256": "2171116bd71c738068fe42091b1509d70135a768443c9afd6c179b83dc6cdc79" + "url": "https://static.crates.io/crates/textplots/0.8.6/download", + "sha256": "f59b64803118dbff62f92842b3154a2c802dfd8e18660132bbcbfb141c637ae3" } }, "targets": [ @@ -71095,14 +71187,14 @@ "target": "drawille" }, { - "id": "rgb 0.8.37", + "id": "rgb 0.8.50", "target": "rgb" } ], "selects": {} }, "edition": "2021", - "version": "0.8.4" + "version": "0.8.6" }, "license": "MIT", "license_ids": [ @@ -71110,14 +71202,14 @@ ], "license_file": null }, - "textwrap 0.16.0": { + "textwrap 0.16.1": { "name": "textwrap", - "version": "0.16.0", + "version": "0.16.1", "package_url": "https://github.com/mgeisler/textwrap", "repository": { "Http": { - "url": "https://static.crates.io/crates/textwrap/0.16.0/download", - "sha256": "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" + "url": "https://static.crates.io/crates/textwrap/0.16.1/download", + "sha256": "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" } }, "targets": [ @@ -71140,7 +71232,7 @@ "**" ], "edition": "2021", - "version": "0.16.0" + "version": "0.16.1" }, "license": "MIT", "license_ids": [ @@ -71148,14 +71240,14 @@ ], "license_file": "LICENSE" }, - "thiserror 1.0.68": { + "thiserror 1.0.69": { "name": "thiserror", - "version": "1.0.68", + "version": "1.0.69", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror/1.0.68/download", - "sha256": "02dd99dc800bbb97186339685293e1cc5d9df1f8fae2d0aecd9ff1c77efea892" + "url": "https://static.crates.io/crates/thiserror/1.0.69/download", + "sha256": "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" } }, "targets": [ @@ -71192,7 +71284,7 @@ "deps": { "common": [ { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "build_script_build" } ], @@ -71202,13 +71294,13 @@ "proc_macro_deps": { "common": [ { - "id": "thiserror-impl 1.0.68", + "id": "thiserror-impl 1.0.69", "target": "thiserror_impl" } ], "selects": {} }, - "version": "1.0.68" + "version": "1.0.69" }, "build_script_attrs": { "compile_data_glob": [ @@ -71225,14 +71317,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thiserror 2.0.3": { + "thiserror 2.0.11": { "name": "thiserror", - "version": "2.0.3", + "version": "2.0.11", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror/2.0.3/download", - "sha256": "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa" + "url": "https://static.crates.io/crates/thiserror/2.0.11/download", + "sha256": "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" } }, "targets": [ @@ -71276,7 +71368,7 @@ "deps": { "common": [ { - "id": "thiserror 2.0.3", + "id": "thiserror 2.0.11", "target": "build_script_build" } ], @@ -71286,13 +71378,13 @@ "proc_macro_deps": { "common": [ { - "id": "thiserror-impl 2.0.3", + "id": "thiserror-impl 2.0.11", "target": "thiserror_impl" } ], "selects": {} }, - "version": "2.0.3" + "version": "2.0.11" }, "build_script_attrs": { "compile_data_glob": [ @@ -71309,14 +71401,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thiserror-impl 1.0.68": { + "thiserror-impl 1.0.69": { "name": "thiserror-impl", - "version": "1.0.68", + "version": "1.0.69", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror-impl/1.0.68/download", - "sha256": "a7c61ec9a6f64d2793d8a45faba21efbe3ced62a886d44c36a009b2b519b4c7e" + "url": "https://static.crates.io/crates/thiserror-impl/1.0.69/download", + "sha256": "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" } }, "targets": [ @@ -71341,22 +71433,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.0.68" + "version": "1.0.69" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -71365,14 +71457,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thiserror-impl 2.0.3": { + "thiserror-impl 2.0.11": { "name": "thiserror-impl", - "version": "2.0.3", + "version": "2.0.11", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror-impl/2.0.3/download", - "sha256": "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568" + "url": "https://static.crates.io/crates/thiserror-impl/2.0.11/download", + "sha256": "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" } }, "targets": [ @@ -71397,22 +71489,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.0.3" + "version": "2.0.11" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -71460,14 +71552,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thread_local 1.1.7": { + "thread_local 1.1.8": { "name": "thread_local", - "version": "1.1.7", + "version": "1.1.8", "package_url": "https://github.com/Amanieu/thread_local-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/thread_local/1.1.7/download", - "sha256": "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" + "url": "https://static.crates.io/crates/thread_local/1.1.8/download", + "sha256": "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" } }, "targets": [ @@ -71496,14 +71588,14 @@ "target": "cfg_if" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "selects": {} }, "edition": "2021", - "version": "1.1.7" + "version": "1.1.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -71598,7 +71690,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -71678,7 +71770,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -71709,7 +71801,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -71771,7 +71863,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -71791,14 +71883,14 @@ ], "license_file": "LICENSE-APACHE" }, - "time 0.3.36": { + "time 0.3.37": { "name": "time", - "version": "0.3.36", + "version": "0.3.37", "package_url": "https://github.com/time-rs/time", "repository": { "Http": { - "url": "https://static.crates.io/crates/time/0.3.36/download", - "sha256": "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" + "url": "https://static.crates.io/crates/time/0.3.37/download", + "sha256": "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" } }, "targets": [ @@ -71835,11 +71927,11 @@ "deps": { "common": [ { - "id": "deranged 0.3.9", + "id": "deranged 0.3.11", "target": "deranged" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { @@ -71858,241 +71950,241 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "aarch64-apple-ios": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "aarch64-apple-ios-sim": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "aarch64-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "aarch64-unknown-fuchsia": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "aarch64-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "arm-unknown-linux-gnueabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "armv7-linux-androideabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "i686-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "i686-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "i686-unknown-freebsd": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "i686-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "powerpc-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "s390x-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "x86_64-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "x86_64-apple-ios": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "x86_64-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "x86_64-unknown-freebsd": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "x86_64-unknown-fuchsia": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "x86_64-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ] @@ -72102,13 +72194,13 @@ "proc_macro_deps": { "common": [ { - "id": "time-macros 0.2.18", + "id": "time-macros 0.2.19", "target": "time_macros" } ], "selects": {} }, - "version": "0.3.36" + "version": "0.3.37" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -72156,14 +72248,14 @@ ], "license_file": "LICENSE-Apache" }, - "time-macros 0.2.18": { + "time-macros 0.2.19": { "name": "time-macros", - "version": "0.2.18", + "version": "0.2.19", "package_url": "https://github.com/time-rs/time", "repository": { "Http": { - "url": "https://static.crates.io/crates/time-macros/0.2.18/download", - "sha256": "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" + "url": "https://static.crates.io/crates/time-macros/0.2.19/download", + "sha256": "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" } }, "targets": [ @@ -72206,7 +72298,7 @@ "selects": {} }, "edition": "2021", - "version": "0.2.18" + "version": "0.2.19" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -72385,7 +72477,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], @@ -72435,7 +72527,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -72451,14 +72543,14 @@ ], "license_file": "LICENSE-APACHE" }, - "tinyvec 1.6.0": { + "tinyvec 1.8.1": { "name": "tinyvec", - "version": "1.6.0", + "version": "1.8.1", "package_url": "https://github.com/Lokathor/tinyvec", "repository": { "Http": { - "url": "https://static.crates.io/crates/tinyvec/1.6.0/download", - "sha256": "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" + "url": "https://static.crates.io/crates/tinyvec/1.8.1/download", + "sha256": "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" } }, "targets": [ @@ -72498,7 +72590,7 @@ "selects": {} }, "edition": "2018", - "version": "1.6.0" + "version": "1.8.1" }, "license": "Zlib OR Apache-2.0 OR MIT", "license_ids": [ @@ -72628,15 +72720,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -72652,14 +72744,14 @@ ], "license_file": null }, - "tokio 1.42.0": { + "tokio 1.43.0": { "name": "tokio", - "version": "1.42.0", + "version": "1.43.0", "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio/1.42.0/download", - "sha256": "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" + "url": "https://static.crates.io/crates/tokio/1.43.0/download", + "sha256": "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" } }, "targets": [ @@ -72724,78 +72816,78 @@ "target": "bytes" }, { - "id": "mio 1.0.2", + "id": "mio 1.0.3", "target": "mio" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "aarch64-apple-ios": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "aarch64-apple-ios-sim": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "aarch64-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "aarch64-pc-windows-msvc": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { @@ -72805,139 +72897,139 @@ ], "aarch64-unknown-fuchsia": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "aarch64-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "arm-unknown-linux-gnueabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "armv7-linux-androideabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "cfg(tokio_taskdump)": [ { - "id": "backtrace 0.3.69", + "id": "backtrace 0.3.74", "target": "backtrace" } ], "i686-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "i686-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "i686-pc-windows-msvc": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { @@ -72947,129 +73039,129 @@ ], "i686-unknown-freebsd": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "i686-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "powerpc-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "riscv32imc-unknown-none-elf": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "riscv64gc-unknown-none-elf": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "s390x-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "thumbv7em-none-eabi": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "thumbv8m.main-none-eabi": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "x86_64-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "x86_64-apple-ios": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "x86_64-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "x86_64-pc-windows-msvc": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { @@ -73079,63 +73171,63 @@ ], "x86_64-unknown-freebsd": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "x86_64-unknown-fuchsia": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "x86_64-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "x86_64-unknown-none": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ] @@ -73145,13 +73237,13 @@ "proc_macro_deps": { "common": [ { - "id": "tokio-macros 2.4.0", + "id": "tokio-macros 2.5.0", "target": "tokio_macros" } ], "selects": {} }, - "version": "1.42.0" + "version": "1.43.0" }, "license": "MIT", "license_ids": [ @@ -73191,11 +73283,11 @@ "deps": { "common": [ { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -73211,14 +73303,14 @@ ], "license_file": "LICENSE-APACHE" }, - "tokio-macros 2.4.0": { + "tokio-macros 2.5.0": { "name": "tokio-macros", - "version": "2.4.0", + "version": "2.5.0", "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio-macros/2.4.0/download", - "sha256": "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" + "url": "https://static.crates.io/crates/tokio-macros/2.5.0/download", + "sha256": "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" } }, "targets": [ @@ -73243,22 +73335,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.4.0" + "version": "2.5.0" }, "license": "MIT", "license_ids": [ @@ -73310,11 +73402,11 @@ "target": "futures_util" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -73378,7 +73470,7 @@ "target": "rustls" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -73439,12 +73531,12 @@ "target": "rustls" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -73460,14 +73552,14 @@ ], "license_file": "LICENSE-APACHE" }, - "tokio-rustls 0.26.0": { + "tokio-rustls 0.26.1": { "name": "tokio-rustls", - "version": "0.26.0", + "version": "0.26.1", "package_url": "https://github.com/rustls/tokio-rustls", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio-rustls/0.26.0/download", - "sha256": "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" + "url": "https://static.crates.io/crates/tokio-rustls/0.26.1/download", + "sha256": "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37" } }, "targets": [ @@ -73500,25 +73592,20 @@ "deps": { "common": [ { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-pki-types 1.10.0", - "target": "rustls_pki_types", - "alias": "pki_types" - }, - { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "0.26.0" + "version": "0.26.1" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -73585,7 +73672,7 @@ "target": "futures_sink" }, { - "id": "pin-project 1.1.3", + "id": "pin-project 1.1.8", "target": "pin_project" }, { @@ -73593,7 +73680,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -73657,7 +73744,7 @@ "deps": { "common": [ { - "id": "either 1.9.0", + "id": "either 1.13.0", "target": "either" }, { @@ -73665,11 +73752,11 @@ "target": "futures_util" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -73728,11 +73815,11 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -73791,7 +73878,7 @@ "target": "futures_core" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -73855,11 +73942,11 @@ "target": "futures_util" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -73948,7 +74035,7 @@ "target": "futures_util" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -73956,7 +74043,7 @@ "target": "slab" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -74064,76 +74151,14 @@ ], "license_file": "LICENSE-APACHE" }, - "toml_edit 0.19.15": { - "name": "toml_edit", - "version": "0.19.15", - "package_url": "https://github.com/toml-rs/toml", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/toml_edit/0.19.15/download", - "sha256": "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" - } - }, - "targets": [ - { - "Library": { - "crate_name": "toml_edit", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "toml_edit", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "indexmap 2.2.6", - "target": "indexmap" - }, - { - "id": "toml_datetime 0.6.8", - "target": "toml_datetime" - }, - { - "id": "winnow 0.5.17", - "target": "winnow" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.19.15" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "toml_edit 0.22.20": { + "toml_edit 0.22.22": { "name": "toml_edit", - "version": "0.22.20", + "version": "0.22.22", "package_url": "https://github.com/toml-rs/toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml_edit/0.22.20/download", - "sha256": "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d" + "url": "https://static.crates.io/crates/toml_edit/0.22.22/download", + "sha256": "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" } }, "targets": [ @@ -74166,7 +74191,7 @@ "deps": { "common": [ { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { @@ -74174,14 +74199,14 @@ "target": "toml_datetime" }, { - "id": "winnow 0.6.20", + "id": "winnow 0.6.24", "target": "winnow" } ], "selects": {} }, "edition": "2021", - "version": "0.22.20" + "version": "0.22.22" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -74250,7 +74275,7 @@ "target": "bytes" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { @@ -74266,11 +74291,11 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { - "id": "hyper-timeout 0.5.1", + "id": "hyper-timeout 0.5.2", "target": "hyper_timeout" }, { @@ -74282,19 +74307,19 @@ "target": "percent_encoding" }, { - "id": "pin-project 1.1.3", + "id": "pin-project 1.1.8", "target": "pin_project" }, { - "id": "prost 0.13.3", + "id": "prost 0.13.4", "target": "prost" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -74324,7 +74349,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -74379,27 +74404,27 @@ "deps": { "common": [ { - "id": "prettyplease 0.2.15", + "id": "prettyplease 0.2.29", "target": "prettyplease" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "prost-build 0.13.3", + "id": "prost-build 0.13.4", "target": "prost_build" }, { - "id": "prost-types 0.13.3", + "id": "prost-types 0.13.4", "target": "prost_types" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -74486,11 +74511,11 @@ "target": "indexmap" }, { - "id": "pin-project 1.1.3", + "id": "pin-project 1.1.8", "target": "pin_project" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -74502,7 +74527,7 @@ "target": "slab" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -74533,14 +74558,14 @@ ], "license_file": "LICENSE" }, - "tower 0.5.1": { + "tower 0.5.2": { "name": "tower", - "version": "0.5.1", + "version": "0.5.2", "package_url": "https://github.com/tower-rs/tower", "repository": { "Http": { - "url": "https://static.crates.io/crates/tower/0.5.1/download", - "sha256": "2873938d487c3cfb9aed7546dc9f2711d867c9f90c46b889989a2cb84eba6b4f" + "url": "https://static.crates.io/crates/tower/0.5.2/download", + "sha256": "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" } }, "targets": [ @@ -74607,15 +74632,15 @@ "target": "futures_util" }, { - "id": "hdrhistogram 7.5.2", + "id": "hdrhistogram 7.5.4", "target": "hdrhistogram" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -74623,11 +74648,11 @@ "target": "slab" }, { - "id": "sync_wrapper 0.1.2", + "id": "sync_wrapper 1.0.2", "target": "sync_wrapper" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -74650,7 +74675,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.1" + "version": "0.5.2" }, "license": "MIT", "license_ids": [ @@ -74705,11 +74730,11 @@ "deps": { "common": [ { - "id": "base64 0.21.4", + "id": "base64 0.21.7", "target": "base64" }, { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -74733,11 +74758,11 @@ "target": "mime" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -74819,11 +74844,11 @@ "deps": { "common": [ { - "id": "async-compression 0.4.4", + "id": "async-compression 0.4.18", "target": "async_compression" }, { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -74847,11 +74872,11 @@ "target": "http_body_util" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -74859,7 +74884,7 @@ "target": "tokio_util" }, { - "id": "tower 0.5.1", + "id": "tower 0.5.2", "target": "tower" }, { @@ -74875,7 +74900,7 @@ "target": "tracing" }, { - "id": "uuid 1.11.0", + "id": "uuid 1.12.0", "target": "uuid" } ], @@ -74972,7 +74997,7 @@ "target": "tower_service" }, { - "id": "ulid 1.1.0", + "id": "ulid 1.1.4", "target": "ulid" } ], @@ -75061,11 +75086,11 @@ "target": "futures_util" }, { - "id": "pin-project 1.1.3", + "id": "pin-project 1.1.8", "target": "pin_project" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -75092,14 +75117,14 @@ ], "license_file": "LICENSE" }, - "tower_governor 0.4.2": { + "tower_governor 0.4.3": { "name": "tower_governor", - "version": "0.4.2", + "version": "0.4.3", "package_url": "https://github.com/benwis/tower-governor", "repository": { "Http": { - "url": "https://static.crates.io/crates/tower_governor/0.4.2/download", - "sha256": "313fa625fea5790ed56360a30ea980e41229cf482b4835801a67ef1922bf63b9" + "url": "https://static.crates.io/crates/tower_governor/0.4.3/download", + "sha256": "aea939ea6cfa7c4880f3e7422616624f97a567c16df67b53b11f0d03917a8e46" } }, "targets": [ @@ -75139,7 +75164,7 @@ "target": "forwarded_header_value" }, { - "id": "governor 0.6.0", + "id": "governor 0.6.3", "target": "governor" }, { @@ -75147,15 +75172,15 @@ "target": "http" }, { - "id": "pin-project 1.1.3", + "id": "pin-project 1.1.8", "target": "pin_project" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tower 0.4.13", + "id": "tower 0.5.2", "target": "tower" }, { @@ -75166,14 +75191,14 @@ "selects": {} }, "edition": "2021", - "version": "0.4.2" + "version": "0.4.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null + "license_file": "LICENSE" }, "tracing 0.1.41": { "name": "tracing", @@ -75217,11 +75242,11 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -75281,15 +75306,15 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" }, { @@ -75340,15 +75365,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -75403,7 +75428,7 @@ "deps": { "common": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], @@ -75457,7 +75482,7 @@ "deps": { "common": [ { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -75519,11 +75544,11 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -75574,7 +75599,7 @@ "deps": { "common": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -75646,11 +75671,11 @@ "deps": { "common": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "opentelemetry 0.27.0", + "id": "opentelemetry 0.27.1", "target": "opentelemetry" }, { @@ -75681,7 +75706,7 @@ "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { @@ -75841,7 +75866,7 @@ "deps": { "common": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -75930,11 +75955,11 @@ "target": "nu_ansi_term" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -75942,7 +75967,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -75954,11 +75979,11 @@ "target": "smallvec" }, { - "id": "thread_local 1.1.7", + "id": "thread_local 1.1.8", "target": "thread_local" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" }, { @@ -76028,7 +76053,7 @@ "deps": { "common": [ { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -76044,45 +76069,6 @@ ], "license_file": null }, - "triomphe 0.1.9": { - "name": "triomphe", - "version": "0.1.9", - "package_url": "https://github.com/Manishearth/triomphe", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/triomphe/0.1.9/download", - "sha256": "0eee8098afad3fb0c54a9007aab6804558410503ad676d4633f9c2559a00ac0f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "triomphe", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "triomphe", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.1.9" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "trust-dns-proto 0.22.0": { "name": "trust-dns-proto", "version": "0.22.0", @@ -76126,7 +76112,7 @@ "target": "cfg_if" }, { - "id": "data-encoding 2.4.0", + "id": "data-encoding 2.7.0", "target": "data_encoding" }, { @@ -76150,7 +76136,7 @@ "target": "ipnet" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -76162,15 +76148,15 @@ "target": "smallvec" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tinyvec 1.6.0", + "id": "tinyvec 1.8.1", "target": "tinyvec" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -76178,7 +76164,7 @@ "target": "tracing" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" } ], @@ -76188,7 +76174,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" }, { @@ -76258,7 +76244,7 @@ "target": "futures_util" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -76266,7 +76252,7 @@ "target": "lru_cache" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { @@ -76278,11 +76264,11 @@ "target": "smallvec" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -76325,14 +76311,14 @@ ], "license_file": "LICENSE-APACHE" }, - "try-lock 0.2.4": { + "try-lock 0.2.5": { "name": "try-lock", - "version": "0.2.4", + "version": "0.2.5", "package_url": "https://github.com/seanmonstar/try-lock", "repository": { "Http": { - "url": "https://static.crates.io/crates/try-lock/0.2.4/download", - "sha256": "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" + "url": "https://static.crates.io/crates/try-lock/0.2.5/download", + "sha256": "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" } }, "targets": [ @@ -76355,7 +76341,7 @@ "**" ], "edition": "2015", - "version": "0.2.4" + "version": "0.2.5" }, "license": "MIT", "license_ids": [ @@ -76414,7 +76400,7 @@ "target": "bytes" }, { - "id": "data-encoding 2.4.0", + "id": "data-encoding 2.7.0", "target": "data_encoding" }, { @@ -76422,11 +76408,11 @@ "target": "http" }, { - "id": "httparse 1.8.0", + "id": "httparse 1.9.5", "target": "httparse" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -76438,11 +76424,11 @@ "target": "sha1" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" }, { @@ -76524,7 +76510,7 @@ "target": "scoped_tls" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -76672,14 +76658,14 @@ ], "license_file": "LICENSE" }, - "ucd-trie 0.1.6": { + "ucd-trie 0.1.7": { "name": "ucd-trie", - "version": "0.1.6", + "version": "0.1.7", "package_url": "https://github.com/BurntSushi/ucd-generate", "repository": { "Http": { - "url": "https://static.crates.io/crates/ucd-trie/0.1.6/download", - "sha256": "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" + "url": "https://static.crates.io/crates/ucd-trie/0.1.7/download", + "sha256": "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971" } }, "targets": [ @@ -76708,7 +76694,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.6" + "version": "0.1.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -76783,14 +76769,14 @@ ], "license_file": null }, - "ulid 1.1.0": { + "ulid 1.1.4": { "name": "ulid", - "version": "1.1.0", + "version": "1.1.4", "package_url": "https://github.com/dylanhart/ulid-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ulid/1.1.0/download", - "sha256": "7e37c4b6cbcc59a8dcd09a6429fbc7890286bcbb79215cea7b38a3c4c0921d93" + "url": "https://static.crates.io/crates/ulid/1.1.4/download", + "sha256": "f294bff79170ed1c5633812aff1e565c35d993a36e757f9bc0accf5eec4e6045" } }, "targets": [ @@ -76827,10 +76813,17 @@ "target": "rand" } ], - "selects": {} + "selects": { + "wasm32-unknown-unknown": [ + { + "id": "web-time 1.1.0", + "target": "web_time" + } + ] + } }, "edition": "2018", - "version": "1.1.0" + "version": "1.1.4" }, "license": "MIT", "license_ids": [ @@ -76877,14 +76870,14 @@ ], "license_file": "LICENSE-APACHE" }, - "unicase 2.7.0": { + "unicase 2.8.1": { "name": "unicase", - "version": "2.7.0", + "version": "2.8.1", "package_url": "https://github.com/seanmonstar/unicase", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicase/2.7.0/download", - "sha256": "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" + "url": "https://static.crates.io/crates/unicase/2.8.1/download", + "sha256": "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" } }, "targets": [ @@ -76899,18 +76892,6 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], "library_target_name": "unicase", @@ -76918,50 +76899,24 @@ "compile_data_glob": [ "**" ], - "deps": { - "common": [ - { - "id": "unicase 2.7.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "2.7.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "version_check 0.9.4", - "target": "version_check" - } - ], - "selects": {} - } + "edition": "2018", + "version": "2.8.1" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "unicode-bidi 0.3.13": { + "unicode-bidi 0.3.18": { "name": "unicode-bidi", - "version": "0.3.13", + "version": "0.3.18", "package_url": "https://github.com/servo/unicode-bidi", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-bidi/0.3.13/download", - "sha256": "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" + "url": "https://static.crates.io/crates/unicode-bidi/0.3.18/download", + "sha256": "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" } }, "targets": [ @@ -76992,7 +76947,7 @@ "selects": {} }, "edition": "2018", - "version": "0.3.13" + "version": "0.3.18" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -77001,14 +76956,14 @@ ], "license_file": "LICENSE-APACHE" }, - "unicode-ident 1.0.12": { + "unicode-ident 1.0.14": { "name": "unicode-ident", - "version": "1.0.12", + "version": "1.0.14", "package_url": "https://github.com/dtolnay/unicode-ident", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-ident/1.0.12/download", - "sha256": "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" + "url": "https://static.crates.io/crates/unicode-ident/1.0.14/download", + "sha256": "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" } }, "targets": [ @@ -77031,24 +76986,24 @@ "**" ], "edition": "2018", - "version": "1.0.12" + "version": "1.0.14" }, - "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", + "license": "(MIT OR Apache-2.0) AND Unicode-3.0", "license_ids": [ "Apache-2.0", "MIT", - "Unicode-DFS-2016" + "Unicode-3.0" ], "license_file": "LICENSE-APACHE" }, - "unicode-normalization 0.1.22": { + "unicode-normalization 0.1.24": { "name": "unicode-normalization", - "version": "0.1.22", + "version": "0.1.24", "package_url": "https://github.com/unicode-rs/unicode-normalization", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-normalization/0.1.22/download", - "sha256": "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" + "url": "https://static.crates.io/crates/unicode-normalization/0.1.24/download", + "sha256": "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" } }, "targets": [ @@ -77080,14 +77035,14 @@ "deps": { "common": [ { - "id": "tinyvec 1.6.0", + "id": "tinyvec 1.8.1", "target": "tinyvec" } ], "selects": {} }, "edition": "2018", - "version": "0.1.22" + "version": "0.1.24" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -77096,14 +77051,14 @@ ], "license_file": "LICENSE-APACHE" }, - "unicode-segmentation 1.10.1": { + "unicode-segmentation 1.12.0": { "name": "unicode-segmentation", - "version": "1.10.1", + "version": "1.12.0", "package_url": "https://github.com/unicode-rs/unicode-segmentation", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-segmentation/1.10.1/download", - "sha256": "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" + "url": "https://static.crates.io/crates/unicode-segmentation/1.12.0/download", + "sha256": "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" } }, "targets": [ @@ -77126,23 +77081,23 @@ "**" ], "edition": "2018", - "version": "1.10.1" + "version": "1.12.0" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "unicode-width 0.1.11": { + "unicode-width 0.1.14": { "name": "unicode-width", - "version": "0.1.11", + "version": "0.1.14", "package_url": "https://github.com/unicode-rs/unicode-width", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-width/0.1.11/download", - "sha256": "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" + "url": "https://static.crates.io/crates/unicode-width/0.1.14/download", + "sha256": "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" } }, "targets": [ @@ -77166,28 +77121,75 @@ ], "crate_features": { "common": [ + "cjk", "default" ], "selects": {} }, - "edition": "2015", - "version": "0.1.11" + "edition": "2021", + "version": "0.1.14" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "unicode-width 0.2.0": { + "name": "unicode-width", + "version": "0.2.0", + "package_url": "https://github.com/unicode-rs/unicode-width", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/unicode-width/0.2.0/download", + "sha256": "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" + } + }, + "targets": [ + { + "Library": { + "crate_name": "unicode_width", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "unicode_width", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "cjk", + "default" + ], + "selects": {} + }, + "edition": "2021", + "version": "0.2.0" + }, + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "unicode-xid 0.2.4": { + "unicode-xid 0.2.6": { "name": "unicode-xid", - "version": "0.2.4", + "version": "0.2.6", "package_url": "https://github.com/unicode-rs/unicode-xid", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-xid/0.2.4/download", - "sha256": "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" + "url": "https://static.crates.io/crates/unicode-xid/0.2.6/download", + "sha256": "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" } }, "targets": [ @@ -77216,7 +77218,7 @@ "selects": {} }, "edition": "2015", - "version": "0.2.4" + "version": "0.2.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -77433,7 +77435,7 @@ "target": "fnv" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" } ], @@ -77448,14 +77450,14 @@ ], "license_file": "LICENSE" }, - "url 2.5.3": { + "url 2.5.4": { "name": "url", - "version": "2.5.3", + "version": "2.5.4", "package_url": "https://github.com/servo/rust-url", "repository": { "Http": { - "url": "https://static.crates.io/crates/url/2.5.3/download", - "sha256": "8d157f1b96d14500ffdc1f10ba712e780825526c03d9a49b4d0324b0d9113ada" + "url": "https://static.crates.io/crates/url/2.5.4/download", + "sha256": "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" } }, "targets": [ @@ -77507,7 +77509,7 @@ "selects": {} }, "edition": "2018", - "version": "2.5.3" + "version": "2.5.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -77632,14 +77634,14 @@ ], "license_file": "LICENSE-APACHE" }, - "utf8-width 0.1.6": { + "utf8-width 0.1.7": { "name": "utf8-width", - "version": "0.1.6", + "version": "0.1.7", "package_url": "https://github.com/magiclen/utf8-width", "repository": { "Http": { - "url": "https://static.crates.io/crates/utf8-width/0.1.6/download", - "sha256": "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1" + "url": "https://static.crates.io/crates/utf8-width/0.1.7/download", + "sha256": "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" } }, "targets": [ @@ -77662,7 +77664,7 @@ "**" ], "edition": "2021", - "version": "0.1.6" + "version": "0.1.7" }, "license": "MIT", "license_ids": [ @@ -77709,14 +77711,14 @@ ], "license_file": "LICENSE-APACHE" }, - "utf8parse 0.2.1": { + "utf8parse 0.2.2": { "name": "utf8parse", - "version": "0.2.1", + "version": "0.2.2", "package_url": "https://github.com/alacritty/vte", "repository": { "Http": { - "url": "https://static.crates.io/crates/utf8parse/0.2.1/download", - "sha256": "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" + "url": "https://static.crates.io/crates/utf8parse/0.2.2/download", + "sha256": "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" } }, "targets": [ @@ -77745,7 +77747,7 @@ "selects": {} }, "edition": "2018", - "version": "0.2.1" + "version": "0.2.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -77754,14 +77756,14 @@ ], "license_file": "LICENSE-APACHE" }, - "uuid 1.11.0": { + "uuid 1.12.0": { "name": "uuid", - "version": "1.11.0", + "version": "1.12.0", "package_url": "https://github.com/uuid-rs/uuid", "repository": { "Http": { - "url": "https://static.crates.io/crates/uuid/1.11.0/download", - "sha256": "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" + "url": "https://static.crates.io/crates/uuid/1.12.0/download", + "sha256": "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4" } }, "targets": [ @@ -77797,7 +77799,7 @@ "deps": { "common": [ { - "id": "getrandom 0.2.10", + "id": "getrandom 0.2.15", "target": "getrandom" }, { @@ -77808,7 +77810,7 @@ "selects": {} }, "edition": "2018", - "version": "1.11.0" + "version": "1.12.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -77923,14 +77925,14 @@ ], "license_file": "LICENSE-APACHE" }, - "version_check 0.9.4": { + "version_check 0.9.5": { "name": "version_check", - "version": "0.9.4", + "version": "0.9.5", "package_url": "https://github.com/SergioBenitez/version_check", "repository": { "Http": { - "url": "https://static.crates.io/crates/version_check/0.9.4/download", - "sha256": "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" + "url": "https://static.crates.io/crates/version_check/0.9.5/download", + "sha256": "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" } }, "targets": [ @@ -77953,7 +77955,7 @@ "**" ], "edition": "2015", - "version": "0.9.4" + "version": "0.9.5" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -78021,19 +78023,19 @@ "target": "cfg_if" }, { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "ordered-float 4.2.0", + "id": "ordered-float 4.6.0", "target": "ordered_float" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -78041,7 +78043,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -78072,7 +78074,7 @@ "deps": { "common": [ { - "id": "lalrpop 0.20.0", + "id": "lalrpop 0.20.2", "target": "lalrpop" } ], @@ -78117,7 +78119,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -78170,7 +78172,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] @@ -78186,53 +78188,14 @@ ], "license_file": "LICENSE-APACHE" }, - "waker-fn 1.1.1": { - "name": "waker-fn", - "version": "1.1.1", - "package_url": "https://github.com/smol-rs/waker-fn", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/waker-fn/1.1.1/download", - "sha256": "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" - } - }, - "targets": [ - { - "Library": { - "crate_name": "waker_fn", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "waker_fn", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.1.1" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "walkdir 2.3.3": { + "walkdir 2.5.0": { "name": "walkdir", - "version": "2.3.3", + "version": "2.5.0", "package_url": "https://github.com/BurntSushi/walkdir", "repository": { "Http": { - "url": "https://static.crates.io/crates/walkdir/2.3.3/download", - "sha256": "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" + "url": "https://static.crates.io/crates/walkdir/2.5.0/download", + "sha256": "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" } }, "targets": [ @@ -78264,14 +78227,14 @@ "selects": { "cfg(windows)": [ { - "id": "winapi-util 0.1.6", + "id": "winapi-util 0.1.9", "target": "winapi_util" } ] } }, "edition": "2018", - "version": "2.3.3" + "version": "2.5.0" }, "license": "Unlicense/MIT", "license_ids": [ @@ -78280,14 +78243,14 @@ ], "license_file": "LICENSE-MIT" }, - "walrus 0.21.1": { + "walrus 0.21.3": { "name": "walrus", - "version": "0.21.1", + "version": "0.21.3", "package_url": "https://github.com/rustwasm/walrus", "repository": { "Http": { - "url": "https://static.crates.io/crates/walrus/0.21.1/download", - "sha256": "467611cafbc8a84834b77d2b4bb191fd2f5769752def8340407e924390c6883b" + "url": "https://static.crates.io/crates/walrus/0.21.3/download", + "sha256": "501ace8ec3492754a9b3c4b59eac7159ceff8414f9e43a05029fe8ef43b9218f" } }, "targets": [ @@ -78312,7 +78275,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -78328,7 +78291,7 @@ "target": "leb128" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -78352,7 +78315,7 @@ ], "selects": {} }, - "version": "0.21.1" + "version": "0.21.3" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -78397,11 +78360,11 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -78453,7 +78416,7 @@ "deps": { "common": [ { - "id": "try-lock 0.2.4", + "id": "try-lock 0.2.5", "target": "try_lock" } ], @@ -78533,11 +78496,11 @@ "target": "http" }, { - "id": "hyper 0.14.27", + "id": "hyper 0.14.32", "target": "hyper" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -78545,7 +78508,7 @@ "target": "mime" }, { - "id": "mime_guess 2.0.4", + "id": "mime_guess 2.0.5", "target": "mime_guess" }, { @@ -78557,7 +78520,7 @@ "target": "percent_encoding" }, { - "id": "pin-project 1.1.3", + "id": "pin-project 1.1.8", "target": "pin_project" }, { @@ -78573,7 +78536,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -78581,7 +78544,7 @@ "target": "serde_urlencoded" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -78662,14 +78625,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen 0.2.95": { + "wasm-bindgen 0.2.100": { "name": "wasm-bindgen", - "version": "0.2.95", + "version": "0.2.100", "package_url": "https://github.com/rustwasm/wasm-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen/0.2.95/download", - "sha256": "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e" + "url": "https://static.crates.io/crates/wasm-bindgen/0.2.100/download", + "sha256": "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" } }, "targets": [ @@ -78706,7 +78669,8 @@ "crate_features": { "common": [ "default", - "spans", + "msrv", + "rustversion", "std" ], "selects": {} @@ -78718,11 +78682,11 @@ "target": "cfg_if" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "build_script_build" } ], @@ -78732,13 +78696,17 @@ "proc_macro_deps": { "common": [ { - "id": "wasm-bindgen-macro 0.2.95", + "id": "rustversion 1.0.19", + "target": "rustversion" + }, + { + "id": "wasm-bindgen-macro 0.2.100", "target": "wasm_bindgen_macro" } ], "selects": {} }, - "version": "0.2.95" + "version": "0.2.100" }, "build_script_attrs": { "compile_data_glob": [ @@ -78755,14 +78723,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-backend 0.2.95": { + "wasm-bindgen-backend 0.2.100": { "name": "wasm-bindgen-backend", - "version": "0.2.95", + "version": "0.2.100", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-backend/0.2.95/download", - "sha256": "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358" + "url": "https://static.crates.io/crates/wasm-bindgen-backend/0.2.100/download", + "sha256": "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" } }, "targets": [ @@ -78784,12 +78752,6 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "spans" - ], - "selects": {} - }, "deps": { "common": [ { @@ -78797,34 +78759,30 @@ "target": "bumpalo" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "once_cell 1.19.0", - "target": "once_cell" - }, - { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" }, { - "id": "wasm-bindgen-shared 0.2.95", + "id": "wasm-bindgen-shared 0.2.100", "target": "wasm_bindgen_shared" } ], "selects": {} }, "edition": "2021", - "version": "0.2.95" + "version": "0.2.100" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -78833,14 +78791,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-futures 0.4.37": { + "wasm-bindgen-futures 0.4.50": { "name": "wasm-bindgen-futures", - "version": "0.4.37", + "version": "0.4.50", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-futures/0.4.37/download", - "sha256": "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" + "url": "https://static.crates.io/crates/wasm-bindgen-futures/0.4.50/download", + "sha256": "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" } }, "targets": [ @@ -78862,6 +78820,13 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "default", + "std" + ], + "selects": {} + }, "deps": { "common": [ { @@ -78869,41 +78834,45 @@ "target": "cfg_if" }, { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.95", + "id": "once_cell 1.20.2", + "target": "once_cell" + }, + { + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], "selects": { "cfg(target_feature = \"atomics\")": [ { - "id": "web-sys 0.3.64", + "id": "web-sys 0.3.77", "target": "web_sys" } ] } }, - "edition": "2018", - "version": "0.4.37" + "edition": "2021", + "version": "0.4.50" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-macro 0.2.95": { + "wasm-bindgen-macro 0.2.100": { "name": "wasm-bindgen-macro", - "version": "0.2.95", + "version": "0.2.100", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-macro/0.2.95/download", - "sha256": "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56" + "url": "https://static.crates.io/crates/wasm-bindgen-macro/0.2.100/download", + "sha256": "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" } }, "targets": [ @@ -78925,27 +78894,21 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "spans" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "wasm-bindgen-macro-support 0.2.95", + "id": "wasm-bindgen-macro-support 0.2.100", "target": "wasm_bindgen_macro_support" } ], "selects": {} }, "edition": "2021", - "version": "0.2.95" + "version": "0.2.100" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -78954,14 +78917,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-macro-support 0.2.95": { + "wasm-bindgen-macro-support 0.2.100": { "name": "wasm-bindgen-macro-support", - "version": "0.2.95", + "version": "0.2.100", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.95/download", - "sha256": "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68" + "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.100/download", + "sha256": "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" } }, "targets": [ @@ -78983,39 +78946,33 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "spans" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" }, { - "id": "wasm-bindgen-backend 0.2.95", + "id": "wasm-bindgen-backend 0.2.100", "target": "wasm_bindgen_backend" }, { - "id": "wasm-bindgen-shared 0.2.95", + "id": "wasm-bindgen-shared 0.2.100", "target": "wasm_bindgen_shared" } ], "selects": {} }, "edition": "2021", - "version": "0.2.95" + "version": "0.2.100" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -79024,14 +78981,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-shared 0.2.95": { + "wasm-bindgen-shared 0.2.100": { "name": "wasm-bindgen-shared", - "version": "0.2.95", + "version": "0.2.100", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-shared/0.2.95/download", - "sha256": "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" + "url": "https://static.crates.io/crates/wasm-bindgen-shared/0.2.100/download", + "sha256": "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" } }, "targets": [ @@ -79068,14 +79025,18 @@ "deps": { "common": [ { - "id": "wasm-bindgen-shared 0.2.95", + "id": "unicode-ident 1.0.14", + "target": "unicode_ident" + }, + { + "id": "wasm-bindgen-shared 0.2.100", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.2.95" + "version": "0.2.100" }, "build_script_attrs": { "compile_data_glob": [ @@ -79263,6 +79224,85 @@ ], "license_file": null }, + "wasm-encoder 0.223.0": { + "name": "wasm-encoder", + "version": "0.223.0", + "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-encoder", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/wasm-encoder/0.223.0/download", + "sha256": "7e636076193fa68103e937ac951b5f2f587624097017d764b8984d9c0f149464" + } + }, + "targets": [ + { + "Library": { + "crate_name": "wasm_encoder", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "wasm_encoder", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "component-model", + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "leb128 0.2.5", + "target": "leb128" + }, + { + "id": "wasm-encoder 0.223.0", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.223.0" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": null + }, "wasm-smith 0.212.0": { "name": "wasm-smith", "version": "0.212.0", @@ -79301,19 +79341,19 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "arbitrary 1.3.2", + "id": "arbitrary 1.4.1", "target": "arbitrary" }, { - "id": "flagset 0.4.4", + "id": "flagset 0.4.6", "target": "flagset" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { @@ -79340,14 +79380,14 @@ ], "license_file": "LICENSE" }, - "wasm-streams 0.4.0": { + "wasm-streams 0.4.2": { "name": "wasm-streams", - "version": "0.4.0", + "version": "0.4.2", "package_url": "https://github.com/MattiasBuelens/wasm-streams/", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-streams/0.4.0/download", - "sha256": "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" + "url": "https://static.crates.io/crates/wasm-streams/0.4.2/download", + "sha256": "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" } }, "targets": [ @@ -79376,26 +79416,26 @@ "target": "futures_util" }, { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" }, { - "id": "wasm-bindgen-futures 0.4.37", + "id": "wasm-bindgen-futures 0.4.50", "target": "wasm_bindgen_futures" }, { - "id": "web-sys 0.3.64", + "id": "web-sys 0.3.77", "target": "web_sys" } ], "selects": {} }, "edition": "2021", - "version": "0.4.0" + "version": "0.4.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -79436,15 +79476,15 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" } ], @@ -79504,7 +79544,7 @@ "target": "ahash" }, { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -79512,11 +79552,11 @@ "target": "hashbrown" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -79581,7 +79621,7 @@ "target": "ahash" }, { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -79589,11 +79629,11 @@ "target": "hashbrown" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -79668,11 +79708,11 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -79704,6 +79744,78 @@ ], "license_file": null }, + "wasmparser 0.223.0": { + "name": "wasmparser", + "version": "0.223.0", + "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/wasmparser/0.223.0/download", + "sha256": "d5a99faceb1a5a84dd6084ec4bfa4b2ab153b5793b43fd8f58b89232634afc35" + } + }, + "targets": [ + { + "Library": { + "crate_name": "wasmparser", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "wasmparser", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "bitflags 2.8.0", + "target": "bitflags" + }, + { + "id": "wasmparser 0.223.0", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.223.0" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": null + }, "wasmprinter 0.217.0": { "name": "wasmprinter", "version": "0.217.0", @@ -79736,7 +79848,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -79799,7 +79911,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -79823,14 +79935,14 @@ ], "license_file": null }, - "wasmtime 28.0.0": { + "wasmtime 28.0.1": { "name": "wasmtime", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime/28.0.0/download", - "sha256": "f639ecae347b9a2227e453a7b7671e84370a0b61f47a15e0390fe9b7725e47b3" + "url": "https://static.crates.io/crates/wasmtime/28.0.1/download", + "sha256": "edd30973c65eceb0f37dfcc430d83abd5eb24015fdfcab6912f52949287e04f0" } }, "targets": [ @@ -79880,11 +79992,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -79900,19 +80012,19 @@ "target": "hashbrown" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "libm 0.2.8", + "id": "libm 0.2.11", "target": "libm" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -79920,11 +80032,11 @@ "target": "object" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "postcard 1.0.8", + "id": "postcard 1.1.1", "target": "postcard" }, { @@ -79952,27 +80064,27 @@ "target": "wasmparser" }, { - "id": "wasmtime 28.0.0", + "id": "wasmtime 28.0.1", "target": "build_script_build" }, { - "id": "wasmtime-asm-macros 28.0.0", + "id": "wasmtime-asm-macros 28.0.1", "target": "wasmtime_asm_macros" }, { - "id": "wasmtime-cranelift 28.0.0", + "id": "wasmtime-cranelift 28.0.1", "target": "wasmtime_cranelift" }, { - "id": "wasmtime-environ 28.0.0", + "id": "wasmtime-environ 28.0.1", "target": "wasmtime_environ" }, { - "id": "wasmtime-jit-icache-coherence 28.0.0", + "id": "wasmtime-jit-icache-coherence 28.0.1", "target": "wasmtime_jit_icache_coherence" }, { - "id": "wasmtime-slab 28.0.0", + "id": "wasmtime-slab 28.0.1", "target": "wasmtime_slab" } ], @@ -79983,25 +80095,25 @@ "target": "mach2" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "aarch64-apple-ios": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "aarch64-apple-ios-sim": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "aarch64-linux-android": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80013,7 +80125,7 @@ ], "aarch64-unknown-fuchsia": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80023,7 +80135,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80033,13 +80145,13 @@ "target": "memfd" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80049,13 +80161,13 @@ "target": "memfd" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "armv7-linux-androideabi": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80065,7 +80177,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80075,13 +80187,13 @@ "target": "mach2" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "i686-linux-android": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80093,7 +80205,7 @@ ], "i686-unknown-freebsd": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80103,7 +80215,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80113,7 +80225,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80123,11 +80235,11 @@ "target": "memfd" }, { - "id": "psm 0.1.21", + "id": "psm 0.1.24", "target": "psm" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80137,19 +80249,19 @@ "target": "mach2" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "x86_64-apple-ios": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "x86_64-linux-android": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80161,13 +80273,13 @@ ], "x86_64-unknown-freebsd": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "x86_64-unknown-fuchsia": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80177,7 +80289,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80187,7 +80299,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ] @@ -80205,7 +80317,7 @@ "target": "serde_derive" }, { - "id": "wasmtime-versioned-export-macros 28.0.0", + "id": "wasmtime-versioned-export-macros 28.0.1", "target": "wasmtime_versioned_export_macros" } ], @@ -80232,7 +80344,7 @@ ], "selects": {} }, - "version": "28.0.0" + "version": "28.0.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -80244,7 +80356,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -80253,7 +80365,7 @@ "proc_macro_deps": { "common": [ { - "id": "wasmtime-versioned-export-macros 28.0.0", + "id": "wasmtime-versioned-export-macros 28.0.1", "target": "wasmtime_versioned_export_macros" } ], @@ -80266,14 +80378,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-asm-macros 28.0.0": { + "wasmtime-asm-macros 28.0.1": { "name": "wasmtime-asm-macros", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-asm-macros/28.0.0/download", - "sha256": "882a18800471cfc063c8b3ccf75723784acc3fd534009ac09421f2fac2fcdcec" + "url": "https://static.crates.io/crates/wasmtime-asm-macros/28.0.1/download", + "sha256": "c6c21dd30d1f3f93ee390ac1a7ec304ecdbfdab6390e1add41a1f52727b0992b" } }, "targets": [ @@ -80305,7 +80417,7 @@ "selects": {} }, "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80313,14 +80425,14 @@ ], "license_file": null }, - "wasmtime-component-macro 28.0.0": { + "wasmtime-component-macro 28.0.1": { "name": "wasmtime-component-macro", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-component-macro/28.0.0/download", - "sha256": "eb5c0a77c9e1927c3d471f53cc13767c3d3438e5d5ffd394e3eb31c86445fd60" + "url": "https://static.crates.io/crates/wasmtime-component-macro/28.0.1/download", + "sha256": "9f948a6ef3119d52c9f12936970de28ddf3f9bea04bc65571f4a92d2e5ab38f4" } }, "targets": [ @@ -80357,31 +80469,31 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" }, { - "id": "wasmtime-component-macro 28.0.0", + "id": "wasmtime-component-macro 28.0.1", "target": "build_script_build" }, { - "id": "wasmtime-component-util 28.0.0", + "id": "wasmtime-component-util 28.0.1", "target": "wasmtime_component_util" }, { - "id": "wasmtime-wit-bindgen 28.0.0", + "id": "wasmtime-wit-bindgen 28.0.1", "target": "wasmtime_wit_bindgen" }, { @@ -80392,7 +80504,7 @@ "selects": {} }, "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -80408,14 +80520,14 @@ ], "license_file": null }, - "wasmtime-component-util 28.0.0": { + "wasmtime-component-util 28.0.1": { "name": "wasmtime-component-util", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-component-util/28.0.0/download", - "sha256": "43702ca98bf5162eca0573db691ed9ecd36d716f8c6688410fe26ec16b6f9bcb" + "url": "https://static.crates.io/crates/wasmtime-component-util/28.0.1/download", + "sha256": "b9275aa01ceaaa2fa6c0ecaa5267518d80b9d6e9ae7c7ea42f4c6e073e6a69ef" } }, "targets": [ @@ -80438,7 +80550,7 @@ "**" ], "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80446,14 +80558,14 @@ ], "license_file": null }, - "wasmtime-cranelift 28.0.0": { + "wasmtime-cranelift 28.0.1": { "name": "wasmtime-cranelift", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-cranelift/28.0.0/download", - "sha256": "20070aa5b75080a8932ec328419faf841df2bc6ceb16b55b0df2b952098392a2" + "url": "https://static.crates.io/crates/wasmtime-cranelift/28.0.1/download", + "sha256": "0701a44a323267aae4499672dae422b266cee3135a23b640972ec8c0e10a44a2" } }, "targets": [ @@ -80485,7 +80597,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -80493,23 +80605,23 @@ "target": "cfg_if" }, { - "id": "cranelift-codegen 0.115.0", + "id": "cranelift-codegen 0.115.1", "target": "cranelift_codegen" }, { - "id": "cranelift-control 0.115.0", + "id": "cranelift-control 0.115.1", "target": "cranelift_control" }, { - "id": "cranelift-entity 0.115.0", + "id": "cranelift-entity 0.115.1", "target": "cranelift_entity" }, { - "id": "cranelift-frontend 0.115.0", + "id": "cranelift-frontend 0.115.1", "target": "cranelift_frontend" }, { - "id": "cranelift-native 0.115.0", + "id": "cranelift-native 0.115.1", "target": "cranelift_native" }, { @@ -80517,11 +80629,11 @@ "target": "gimli" }, { - "id": "itertools 0.12.0", + "id": "itertools 0.12.1", "target": "itertools" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -80537,7 +80649,7 @@ "target": "target_lexicon" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -80545,7 +80657,7 @@ "target": "wasmparser" }, { - "id": "wasmtime-environ 28.0.0", + "id": "wasmtime-environ 28.0.1", "target": "wasmtime_environ" } ], @@ -80555,13 +80667,13 @@ "proc_macro_deps": { "common": [ { - "id": "wasmtime-versioned-export-macros 28.0.0", + "id": "wasmtime-versioned-export-macros 28.0.1", "target": "wasmtime_versioned_export_macros" } ], "selects": {} }, - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80569,14 +80681,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-environ 28.0.0": { + "wasmtime-environ 28.0.1": { "name": "wasmtime-environ", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-environ/28.0.0/download", - "sha256": "2604ddb24879d4dc1dedcb7081d7a8e017259bce916fdae097a97db52cbaab80" + "url": "https://static.crates.io/crates/wasmtime-environ/28.0.1/download", + "sha256": "264c968c1b81d340355ece2be0bc31a10f567ccb6ce08512c3b7d10e26f3cbe5" } }, "targets": [ @@ -80610,15 +80722,15 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "cranelift-bitset 0.115.0", + "id": "cranelift-bitset 0.115.1", "target": "cranelift_bitset" }, { - "id": "cranelift-entity 0.115.0", + "id": "cranelift-entity 0.115.1", "target": "cranelift_entity" }, { @@ -80626,11 +80738,11 @@ "target": "gimli" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -80638,7 +80750,7 @@ "target": "object" }, { - "id": "postcard 1.0.8", + "id": "postcard 1.1.1", "target": "postcard" }, { @@ -80678,7 +80790,7 @@ ], "selects": {} }, - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80686,14 +80798,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-fiber 28.0.0": { + "wasmtime-fiber 28.0.1": { "name": "wasmtime-fiber", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-fiber/28.0.0/download", - "sha256": "98593412d2b167ebe2b59d4a17a184978a72f976b53b3a0ec05629451079ac1d" + "url": "https://static.crates.io/crates/wasmtime-fiber/28.0.1/download", + "sha256": "78505221fd5bd7b07b4e1fa2804edea49dc231e626ad6861adc8f531812973e6" } }, "targets": [ @@ -80730,7 +80842,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -80738,18 +80850,18 @@ "target": "cfg_if" }, { - "id": "wasmtime-asm-macros 28.0.0", + "id": "wasmtime-asm-macros 28.0.1", "target": "wasmtime_asm_macros" }, { - "id": "wasmtime-fiber 28.0.0", + "id": "wasmtime-fiber 28.0.1", "target": "build_script_build" } ], "selects": { "cfg(unix)": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80765,13 +80877,13 @@ "proc_macro_deps": { "common": [ { - "id": "wasmtime-versioned-export-macros 28.0.0", + "id": "wasmtime-versioned-export-macros 28.0.1", "target": "wasmtime_versioned_export_macros" } ], "selects": {} }, - "version": "28.0.0" + "version": "28.0.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -80783,7 +80895,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -80792,7 +80904,7 @@ "proc_macro_deps": { "common": [ { - "id": "wasmtime-versioned-export-macros 28.0.0", + "id": "wasmtime-versioned-export-macros 28.0.1", "target": "wasmtime_versioned_export_macros" } ], @@ -80805,14 +80917,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-jit-icache-coherence 28.0.0": { + "wasmtime-jit-icache-coherence 28.0.1": { "name": "wasmtime-jit-icache-coherence", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-jit-icache-coherence/28.0.0/download", - "sha256": "d40d7722b9e1fbeae135715710a8a2570b1e6cf72b74dd653962d89831c6c70d" + "url": "https://static.crates.io/crates/wasmtime-jit-icache-coherence/28.0.1/download", + "sha256": "9bedb677ca1b549d98f95e9e1f9251b460090d99a2c196a0614228c064bf2e59" } }, "targets": [ @@ -80837,7 +80949,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -80848,7 +80960,7 @@ "selects": { "cfg(any(target_os = \"linux\", target_os = \"macos\", target_os = \"freebsd\", target_os = \"android\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -80861,7 +80973,7 @@ } }, "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80869,14 +80981,14 @@ ], "license_file": null }, - "wasmtime-slab 28.0.0": { + "wasmtime-slab 28.0.1": { "name": "wasmtime-slab", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-slab/28.0.0/download", - "sha256": "8579c335220b4ece9aa490a0e8b46de78cd342b195ab21ff981d095e14b52383" + "url": "https://static.crates.io/crates/wasmtime-slab/28.0.1/download", + "sha256": "564905638c132c275d365c1fa074f0b499790568f43148d29de84ccecfb5cb31" } }, "targets": [ @@ -80899,7 +81011,7 @@ "**" ], "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80907,14 +81019,14 @@ ], "license_file": null }, - "wasmtime-versioned-export-macros 28.0.0": { + "wasmtime-versioned-export-macros 28.0.1": { "name": "wasmtime-versioned-export-macros", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-versioned-export-macros/28.0.0/download", - "sha256": "d7de0a56fb0a69b185968f2d7a9ba54750920a806470dff7ad8de91ac06d277e" + "url": "https://static.crates.io/crates/wasmtime-versioned-export-macros/28.0.1/download", + "sha256": "1e91092e6cf77390eeccee273846a9327f3e8f91c3c6280f60f37809f0e62d29" } }, "targets": [ @@ -80939,22 +81051,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80962,14 +81074,14 @@ ], "license_file": null }, - "wasmtime-winch 28.0.0": { + "wasmtime-winch 28.0.1": { "name": "wasmtime-winch", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-winch/28.0.0/download", - "sha256": "abd309943c443f5590d12f9aba9ba63c481091c955a0a14de0c2a9e0e3aaeca9" + "url": "https://static.crates.io/crates/wasmtime-winch/28.0.1/download", + "sha256": "b111d909dc604c741bd8ac2f4af373eaa5c68c34b5717271bcb687688212cef8" } }, "targets": [ @@ -80994,11 +81106,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "cranelift-codegen 0.115.0", + "id": "cranelift-codegen 0.115.1", "target": "cranelift_codegen" }, { @@ -81018,22 +81130,22 @@ "target": "wasmparser" }, { - "id": "wasmtime-cranelift 28.0.0", + "id": "wasmtime-cranelift 28.0.1", "target": "wasmtime_cranelift" }, { - "id": "wasmtime-environ 28.0.0", + "id": "wasmtime-environ 28.0.1", "target": "wasmtime_environ" }, { - "id": "winch-codegen 28.0.0", + "id": "winch-codegen 28.0.1", "target": "winch_codegen" } ], "selects": {} }, "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -81041,14 +81153,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-wit-bindgen 28.0.0": { + "wasmtime-wit-bindgen 28.0.1": { "name": "wasmtime-wit-bindgen", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-wit-bindgen/28.0.0/download", - "sha256": "969f83022dac3435d6469edb582ceed04cfe32aa44dc3ef16e5cb55574633df8" + "url": "https://static.crates.io/crates/wasmtime-wit-bindgen/28.0.1/download", + "sha256": "5f38f7a5eb2f06f53fe943e7fb8bf4197f7cf279f1bc52c0ce56e9d3ffd750a4" } }, "targets": [ @@ -81073,7 +81185,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -81081,7 +81193,7 @@ "target": "heck" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { @@ -81092,7 +81204,7 @@ "selects": {} }, "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -81147,11 +81259,11 @@ "target": "leb128" }, { - "id": "memchr 2.6.4", + "id": "memchr 2.7.4", "target": "memchr" }, { - "id": "unicode-width 0.1.11", + "id": "unicode-width 0.1.14", "target": "unicode_width" }, { @@ -81170,14 +81282,85 @@ ], "license_file": "LICENSE" }, - "wat 1.212.0": { + "wast 223.0.0": { + "name": "wast", + "version": "223.0.0", + "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wast", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/wast/223.0.0/download", + "sha256": "d59b2ba8a2ff9f06194b7be9524f92e45e70149f4dacc0d0c7ad92b59ac875e4" + } + }, + "targets": [ + { + "Library": { + "crate_name": "wast", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "wast", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "component-model", + "wasm-module" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "bumpalo 3.16.0", + "target": "bumpalo" + }, + { + "id": "leb128 0.2.5", + "target": "leb128" + }, + { + "id": "memchr 2.7.4", + "target": "memchr" + }, + { + "id": "unicode-width 0.2.0", + "target": "unicode_width" + }, + { + "id": "wasm-encoder 0.223.0", + "target": "wasm_encoder" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "223.0.0" + }, + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": null + }, + "wat 1.223.0": { "name": "wat", - "version": "1.212.0", + "version": "1.223.0", "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wat", "repository": { "Http": { - "url": "https://static.crates.io/crates/wat/1.212.0/download", - "sha256": "c74ca7f93f11a5d6eed8499f2a8daaad6e225cab0151bc25a091fff3b987532f" + "url": "https://static.crates.io/crates/wat/1.223.0/download", + "sha256": "662786915c427e4918ff01eabb3c4756d4d947cd8f635761526b4cc9da2eaaad" } }, "targets": [ @@ -81199,32 +81382,40 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "component-model", + "default" + ], + "selects": {} + }, "deps": { "common": [ { - "id": "wast 212.0.0", + "id": "wast 223.0.0", "target": "wast" } ], "selects": {} }, "edition": "2021", - "version": "1.212.0" + "version": "1.223.0" }, - "license": "Apache-2.0 WITH LLVM-exception", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ - "Apache-2.0" + "Apache-2.0", + "MIT" ], - "license_file": "LICENSE" + "license_file": null }, - "web-sys 0.3.64": { + "web-sys 0.3.77": { "name": "web-sys", - "version": "0.3.64", + "version": "0.3.77", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/web-sys/0.3.64/download", - "sha256": "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" + "url": "https://static.crates.io/crates/web-sys/0.3.77/download", + "sha256": "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" } }, "targets": [ @@ -81284,7 +81475,9 @@ "WorkerGlobalScope", "WritableStream", "WritableStreamDefaultController", - "WritableStreamDefaultWriter" + "WritableStreamDefaultWriter", + "default", + "std" ], "selects": { "wasm32-unknown-unknown": [ @@ -81304,20 +81497,20 @@ "deps": { "common": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], "selects": {} }, - "edition": "2018", - "version": "0.3.64" + "edition": "2021", + "version": "0.3.77" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -81358,11 +81551,11 @@ "selects": { "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ] @@ -81378,14 +81571,14 @@ ], "license_file": "LICENSE-APACHE" }, - "webpki-root-certs 0.26.6": { + "webpki-root-certs 0.26.7": { "name": "webpki-root-certs", - "version": "0.26.6", + "version": "0.26.7", "package_url": "https://github.com/rustls/webpki-roots", "repository": { "Http": { - "url": "https://static.crates.io/crates/webpki-root-certs/0.26.6/download", - "sha256": "e8c6dfa3ac045bc517de14c7b1384298de1dbd229d38e08e169d9ae8c170937c" + "url": "https://static.crates.io/crates/webpki-root-certs/0.26.7/download", + "sha256": "9cd5da49bdf1f30054cfe0b8ce2958b8fbeb67c4d82c8967a598af481bef255c" } }, "targets": [ @@ -81410,7 +81603,7 @@ "deps": { "common": [ { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" } @@ -81418,7 +81611,7 @@ "selects": {} }, "edition": "2018", - "version": "0.26.6" + "version": "0.26.7" }, "license": "MPL-2.0", "license_ids": [ @@ -81426,14 +81619,14 @@ ], "license_file": "LICENSE" }, - "webpki-roots 0.25.2": { + "webpki-roots 0.25.4": { "name": "webpki-roots", - "version": "0.25.2", + "version": "0.25.4", "package_url": "https://github.com/rustls/webpki-roots", "repository": { "Http": { - "url": "https://static.crates.io/crates/webpki-roots/0.25.2/download", - "sha256": "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" + "url": "https://static.crates.io/crates/webpki-roots/0.25.4/download", + "sha256": "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" } }, "targets": [ @@ -81456,7 +81649,7 @@ "**" ], "edition": "2018", - "version": "0.25.2" + "version": "0.25.4" }, "license": "MPL-2.0", "license_ids": [ @@ -81464,14 +81657,14 @@ ], "license_file": "LICENSE" }, - "webpki-roots 0.26.1": { + "webpki-roots 0.26.7": { "name": "webpki-roots", - "version": "0.26.1", + "version": "0.26.7", "package_url": "https://github.com/rustls/webpki-roots", "repository": { "Http": { - "url": "https://static.crates.io/crates/webpki-roots/0.26.1/download", - "sha256": "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" + "url": "https://static.crates.io/crates/webpki-roots/0.26.7/download", + "sha256": "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e" } }, "targets": [ @@ -81496,7 +81689,7 @@ "deps": { "common": [ { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" } @@ -81504,7 +81697,7 @@ "selects": {} }, "edition": "2018", - "version": "0.26.1" + "version": "0.26.7" }, "license": "MPL-2.0", "license_ids": [ @@ -81578,7 +81771,7 @@ "selects": { "cfg(all(unix, not(target_arch = \"wasm32\")))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -81639,24 +81832,24 @@ "deps": { "common": [ { - "id": "either 1.9.0", + "id": "either 1.13.0", "target": "either" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "selects": { "cfg(any(windows, unix, target_os = \"redox\"))": [ { - "id": "home 0.5.5", + "id": "home 0.5.11", "target": "home" } ], "cfg(windows)": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ] @@ -81671,14 +81864,14 @@ ], "license_file": "LICENSE.txt" }, - "widestring 1.0.2": { + "widestring 1.1.0": { "name": "widestring", - "version": "1.0.2", + "version": "1.1.0", "package_url": "https://github.com/starkat99/widestring-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/widestring/1.0.2/download", - "sha256": "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" + "url": "https://static.crates.io/crates/widestring/1.1.0/download", + "sha256": "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" } }, "targets": [ @@ -81709,7 +81902,7 @@ "selects": {} }, "edition": "2021", - "version": "1.0.2" + "version": "1.1.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -81801,7 +81994,6 @@ "common": [ "consoleapi", "errhandlingapi", - "fibersapi", "fileapi", "handleapi", "impl-default", @@ -81820,7 +82012,6 @@ "profileapi", "psapi", "shlobj", - "std", "synchapi", "sysinfoapi", "winbase", @@ -81943,14 +82134,14 @@ ], "license_file": null }, - "winapi-util 0.1.6": { + "winapi-util 0.1.9": { "name": "winapi-util", - "version": "0.1.6", + "version": "0.1.9", "package_url": "https://github.com/BurntSushi/winapi-util", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi-util/0.1.6/download", - "sha256": "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" + "url": "https://static.crates.io/crates/winapi-util/0.1.9/download", + "sha256": "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" } }, "targets": [ @@ -81977,16 +82168,16 @@ "selects": { "cfg(windows)": [ { - "id": "winapi 0.3.9", - "target": "winapi" + "id": "windows-sys 0.59.0", + "target": "windows_sys" } ] } }, "edition": "2021", - "version": "0.1.6" + "version": "0.1.9" }, - "license": "Unlicense/MIT", + "license": "Unlicense OR MIT", "license_ids": [ "MIT", "Unlicense" @@ -82061,14 +82252,14 @@ ], "license_file": null }, - "winch-codegen 28.0.0": { + "winch-codegen 28.0.1": { "name": "winch-codegen", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/winch-codegen/28.0.0/download", - "sha256": "9110decc2983ed94de904804dcd979ba59cbabc78a94fec6b1d8468ec513d0f6" + "url": "https://static.crates.io/crates/winch-codegen/28.0.1/download", + "sha256": "6232f40a795be2ce10fc761ed3b403825126a60d12491ac556ea104a932fd18a" } }, "targets": [ @@ -82105,11 +82296,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "cranelift-codegen 0.115.0", + "id": "cranelift-codegen 0.115.1", "target": "cranelift_codegen" }, { @@ -82133,22 +82324,22 @@ "target": "wasmparser" }, { - "id": "wasmtime-cranelift 28.0.0", + "id": "wasmtime-cranelift 28.0.1", "target": "wasmtime_cranelift" }, { - "id": "wasmtime-environ 28.0.0", + "id": "wasmtime-environ 28.0.1", "target": "wasmtime_environ" }, { - "id": "winch-codegen 28.0.0", + "id": "winch-codegen 28.0.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -82164,6 +82355,58 @@ ], "license_file": "LICENSE" }, + "windows 0.58.0": { + "name": "windows", + "version": "0.58.0", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows/0.58.0/download", + "sha256": "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows-core 0.58.0", + "target": "windows_core" + }, + { + "id": "windows-targets 0.52.6", + "target": "windows_targets" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.58.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, "windows-core 0.52.0": { "name": "windows-core", "version": "0.52.0", @@ -82212,20 +82455,20 @@ ], "license_file": "license-apache-2.0" }, - "windows-registry 0.2.0": { - "name": "windows-registry", - "version": "0.2.0", + "windows-core 0.58.0": { + "name": "windows-core", + "version": "0.58.0", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-registry/0.2.0/download", - "sha256": "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" + "url": "https://static.crates.io/crates/windows-core/0.58.0/download", + "sha256": "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" } }, "targets": [ { "Library": { - "crate_name": "windows_registry", + "crate_name": "windows_core", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -82236,7 +82479,7 @@ } } ], - "library_target_name": "windows_registry", + "library_target_name": "windows_core", "common_attrs": { "compile_data_glob": [ "**" @@ -82259,7 +82502,20 @@ "selects": {} }, "edition": "2021", - "version": "0.2.0" + "proc_macro_deps": { + "common": [ + { + "id": "windows-implement 0.58.0", + "target": "windows_implement" + }, + { + "id": "windows-interface 0.58.0", + "target": "windows_interface" + } + ], + "selects": {} + }, + "version": "0.58.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -82268,20 +82524,20 @@ ], "license_file": "license-apache-2.0" }, - "windows-result 0.2.0": { - "name": "windows-result", - "version": "0.2.0", + "windows-implement 0.58.0": { + "name": "windows-implement", + "version": "0.58.0", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-result/0.2.0/download", - "sha256": "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" + "url": "https://static.crates.io/crates/windows-implement/0.58.0/download", + "sha256": "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" } }, "targets": [ { - "Library": { - "crate_name": "windows_result", + "ProcMacro": { + "crate_name": "windows_implement", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -82292,20 +82548,133 @@ } } ], - "library_target_name": "windows_result", + "library_target_name": "windows_implement", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { + "deps": { "common": [ - "default", - "std" + { + "id": "proc-macro2 1.0.93", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.38", + "target": "quote" + }, + { + "id": "syn 2.0.96", + "target": "syn" + } ], "selects": {} }, + "edition": "2021", + "version": "0.58.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows-interface 0.58.0": { + "name": "windows-interface", + "version": "0.58.0", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows-interface/0.58.0/download", + "sha256": "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "windows_interface", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_interface", + "common_attrs": { + "compile_data_glob": [ + "**" + ], "deps": { "common": [ + { + "id": "proc-macro2 1.0.93", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.38", + "target": "quote" + }, + { + "id": "syn 2.0.96", + "target": "syn" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.58.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows-registry 0.2.0": { + "name": "windows-registry", + "version": "0.2.0", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows-registry/0.2.0/download", + "sha256": "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_registry", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_registry", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows-result 0.2.0", + "target": "windows_result" + }, + { + "id": "windows-strings 0.1.0", + "target": "windows_strings" + }, { "id": "windows-targets 0.52.6", "target": "windows_targets" @@ -82323,20 +82692,20 @@ ], "license_file": "license-apache-2.0" }, - "windows-strings 0.1.0": { - "name": "windows-strings", - "version": "0.1.0", + "windows-result 0.2.0": { + "name": "windows-result", + "version": "0.2.0", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-strings/0.1.0/download", - "sha256": "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" + "url": "https://static.crates.io/crates/windows-result/0.2.0/download", + "sha256": "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" } }, "targets": [ { "Library": { - "crate_name": "windows_strings", + "crate_name": "windows_result", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -82347,7 +82716,7 @@ } } ], - "library_target_name": "windows_strings", + "library_target_name": "windows_result", "common_attrs": { "compile_data_glob": [ "**" @@ -82361,10 +82730,6 @@ }, "deps": { "common": [ - { - "id": "windows-result 0.2.0", - "target": "windows_result" - }, { "id": "windows-targets 0.52.6", "target": "windows_targets" @@ -82373,7 +82738,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.0" + "version": "0.2.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -82382,20 +82747,20 @@ ], "license_file": "license-apache-2.0" }, - "windows-sys 0.45.0": { - "name": "windows-sys", - "version": "0.45.0", + "windows-strings 0.1.0": { + "name": "windows-strings", + "version": "0.1.0", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-sys/0.45.0/download", - "sha256": "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" + "url": "https://static.crates.io/crates/windows-strings/0.1.0/download", + "sha256": "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" } }, "targets": [ { "Library": { - "crate_name": "windows_sys", + "crate_name": "windows_strings", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -82406,39 +82771,33 @@ } } ], - "library_target_name": "windows_sys", + "library_target_name": "windows_strings", "common_attrs": { "compile_data_glob": [ "**" ], "crate_features": { "common": [ - "Win32", - "Win32_Foundation", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_Console", - "Win32_UI", - "Win32_UI_Input", - "Win32_UI_Input_KeyboardAndMouse", - "default" + "default", + "std" ], "selects": {} }, "deps": { - "common": [], - "selects": { - "cfg(not(windows_raw_dylib))": [ - { - "id": "windows-targets 0.42.2", - "target": "windows_targets" - } - ] - } + "common": [ + { + "id": "windows-result 0.2.0", + "target": "windows_result" + }, + { + "id": "windows-targets 0.52.6", + "target": "windows_targets" + } + ], + "selects": {} }, - "edition": "2018", - "version": "0.45.0" + "edition": "2021", + "version": "0.1.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -82486,30 +82845,18 @@ "Win32_Networking", "Win32_Networking_WinSock", "Win32_Security", - "Win32_Security_Authentication", - "Win32_Security_Authentication_Identity", - "Win32_Security_Credentials", - "Win32_Security_Cryptography", "Win32_Storage", "Win32_Storage_FileSystem", "Win32_System", "Win32_System_Console", "Win32_System_Diagnostics", "Win32_System_Diagnostics_Debug", - "Win32_System_IO", "Win32_System_Memory", "Win32_System_Registry", "Win32_System_Time", - "Win32_System_WindowsProgramming", - "Win32_UI", - "Win32_UI_Shell", "default" ], - "selects": { - "aarch64-pc-windows-msvc": [ - "Win32_System_Threading" - ] - } + "selects": {} }, "deps": { "common": [ @@ -82569,8 +82916,6 @@ "Wdk_System_IO", "Win32", "Win32_Foundation", - "Win32_NetworkManagement", - "Win32_NetworkManagement_IpHelper", "Win32_Networking", "Win32_Networking_WinSock", "Win32_Security", @@ -82579,8 +82924,6 @@ "Win32_Storage_FileSystem", "Win32_System", "Win32_System_Console", - "Win32_System_Diagnostics", - "Win32_System_Diagnostics_Debug", "Win32_System_IO", "Win32_System_Pipes", "Win32_System_SystemServices", @@ -82646,12 +82989,19 @@ "Wdk_Storage_FileSystem", "Win32", "Win32_Foundation", + "Win32_NetworkManagement", + "Win32_NetworkManagement_IpHelper", "Win32_Networking", "Win32_Networking_WinSock", "Win32_Security", + "Win32_Security_Authentication", + "Win32_Security_Authentication_Identity", + "Win32_Security_Credentials", + "Win32_Security_Cryptography", "Win32_Storage", "Win32_Storage_FileSystem", "Win32_System", + "Win32_System_Com", "Win32_System_Console", "Win32_System_Diagnostics", "Win32_System_Diagnostics_Debug", @@ -82662,6 +83012,10 @@ "Win32_System_SystemInformation", "Win32_System_Threading", "Win32_System_WindowsProgramming", + "Win32_UI", + "Win32_UI_Input", + "Win32_UI_Input_KeyboardAndMouse", + "Win32_UI_Shell", "default" ], "selects": {} @@ -82685,14 +83039,14 @@ ], "license_file": "license-apache-2.0" }, - "windows-targets 0.42.2": { + "windows-targets 0.48.5": { "name": "windows-targets", - "version": "0.42.2", + "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-targets/0.42.2/download", - "sha256": "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" + "url": "https://static.crates.io/crates/windows-targets/0.48.5/download", + "sha256": "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" } }, "targets": [ @@ -82719,80 +83073,50 @@ "selects": { "aarch64-pc-windows-gnullvm": [ { - "id": "windows_aarch64_gnullvm 0.42.2", + "id": "windows_aarch64_gnullvm 0.48.5", "target": "windows_aarch64_gnullvm" } ], - "aarch64-pc-windows-msvc": [ - { - "id": "windows_aarch64_msvc 0.42.2", - "target": "windows_aarch64_msvc" - } - ], - "aarch64-uwp-windows-msvc": [ + "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ { - "id": "windows_aarch64_msvc 0.42.2", + "id": "windows_aarch64_msvc 0.48.5", "target": "windows_aarch64_msvc" } ], - "i686-pc-windows-gnu": [ - { - "id": "windows_i686_gnu 0.42.2", - "target": "windows_i686_gnu" - } - ], - "i686-pc-windows-msvc": [ - { - "id": "windows_i686_msvc 0.42.2", - "target": "windows_i686_msvc" - } - ], - "i686-uwp-windows-gnu": [ + "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))": [ { - "id": "windows_i686_gnu 0.42.2", + "id": "windows_i686_gnu 0.48.5", "target": "windows_i686_gnu" } ], - "i686-uwp-windows-msvc": [ + "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [ { - "id": "windows_i686_msvc 0.42.2", + "id": "windows_i686_msvc 0.48.5", "target": "windows_i686_msvc" } ], - "x86_64-pc-windows-gnu": [ + "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ { - "id": "windows_x86_64_gnu 0.42.2", + "id": "windows_x86_64_gnu 0.48.5", "target": "windows_x86_64_gnu" } ], - "x86_64-pc-windows-gnullvm": [ - { - "id": "windows_x86_64_gnullvm 0.42.2", - "target": "windows_x86_64_gnullvm" - } - ], - "x86_64-pc-windows-msvc": [ + "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ { - "id": "windows_x86_64_msvc 0.42.2", + "id": "windows_x86_64_msvc 0.48.5", "target": "windows_x86_64_msvc" } ], - "x86_64-uwp-windows-gnu": [ - { - "id": "windows_x86_64_gnu 0.42.2", - "target": "windows_x86_64_gnu" - } - ], - "x86_64-uwp-windows-msvc": [ + "x86_64-pc-windows-gnullvm": [ { - "id": "windows_x86_64_msvc 0.42.2", - "target": "windows_x86_64_msvc" + "id": "windows_x86_64_gnullvm 0.48.5", + "target": "windows_x86_64_gnullvm" } ] } }, "edition": "2018", - "version": "0.42.2" + "version": "0.48.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -82801,100 +83125,14 @@ ], "license_file": "license-apache-2.0" }, - "windows-targets 0.48.5": { + "windows-targets 0.52.6": { "name": "windows-targets", - "version": "0.48.5", + "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-targets/0.48.5/download", - "sha256": "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_targets", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_targets", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [], - "selects": { - "aarch64-pc-windows-gnullvm": [ - { - "id": "windows_aarch64_gnullvm 0.48.5", - "target": "windows_aarch64_gnullvm" - } - ], - "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ - { - "id": "windows_aarch64_msvc 0.48.5", - "target": "windows_aarch64_msvc" - } - ], - "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))": [ - { - "id": "windows_i686_gnu 0.48.5", - "target": "windows_i686_gnu" - } - ], - "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [ - { - "id": "windows_i686_msvc 0.48.5", - "target": "windows_i686_msvc" - } - ], - "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ - { - "id": "windows_x86_64_gnu 0.48.5", - "target": "windows_x86_64_gnu" - } - ], - "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ - { - "id": "windows_x86_64_msvc 0.48.5", - "target": "windows_x86_64_msvc" - } - ], - "x86_64-pc-windows-gnullvm": [ - { - "id": "windows_x86_64_gnullvm 0.48.5", - "target": "windows_x86_64_gnullvm" - } - ] - } - }, - "edition": "2018", - "version": "0.48.5" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-targets 0.52.6": { - "name": "windows-targets", - "version": "0.52.6", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-targets/0.52.6/download", - "sha256": "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" + "url": "https://static.crates.io/crates/windows-targets/0.52.6/download", + "sha256": "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" } }, "targets": [ @@ -82979,74 +83217,6 @@ ], "license_file": "license-apache-2.0" }, - "windows_aarch64_gnullvm 0.42.2": { - "name": "windows_aarch64_gnullvm", - "version": "0.42.2", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.42.2/download", - "sha256": "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_aarch64_gnullvm", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_aarch64_gnullvm", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_aarch64_gnullvm 0.42.2", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.42.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, "windows_aarch64_gnullvm 0.48.5": { "name": "windows_aarch64_gnullvm", "version": "0.48.5", @@ -83183,74 +83353,6 @@ ], "license_file": "license-apache-2.0" }, - "windows_aarch64_msvc 0.42.2": { - "name": "windows_aarch64_msvc", - "version": "0.42.2", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.42.2/download", - "sha256": "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_aarch64_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_aarch64_msvc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_aarch64_msvc 0.42.2", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.42.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, "windows_aarch64_msvc 0.48.5": { "name": "windows_aarch64_msvc", "version": "0.48.5", @@ -83287,279 +83389,7 @@ } } ], - "library_target_name": "windows_aarch64_msvc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_aarch64_msvc 0.48.5", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.48.5" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_aarch64_msvc 0.52.6": { - "name": "windows_aarch64_msvc", - "version": "0.52.6", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download", - "sha256": "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_aarch64_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_aarch64_msvc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_aarch64_msvc 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_i686_gnu 0.42.2": { - "name": "windows_i686_gnu", - "version": "0.42.2", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.42.2/download", - "sha256": "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_i686_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_i686_gnu", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_i686_gnu 0.42.2", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.42.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_i686_gnu 0.48.5": { - "name": "windows_i686_gnu", - "version": "0.48.5", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.48.5/download", - "sha256": "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_i686_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_i686_gnu", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_i686_gnu 0.48.5", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.48.5" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_i686_gnu 0.52.6": { - "name": "windows_i686_gnu", - "version": "0.52.6", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.52.6/download", - "sha256": "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_i686_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_i686_gnu", + "library_target_name": "windows_aarch64_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -83567,14 +83397,14 @@ "deps": { "common": [ { - "id": "windows_i686_gnu 0.52.6", + "id": "windows_aarch64_msvc 0.48.5", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.52.6" + "edition": "2018", + "version": "0.48.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -83591,20 +83421,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_gnullvm 0.52.6": { - "name": "windows_i686_gnullvm", + "windows_aarch64_msvc 0.52.6": { + "name": "windows_aarch64_msvc", "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download", - "sha256": "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download", + "sha256": "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_gnullvm", + "crate_name": "windows_aarch64_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -83627,7 +83457,7 @@ } } ], - "library_target_name": "windows_i686_gnullvm", + "library_target_name": "windows_aarch64_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -83635,7 +83465,7 @@ "deps": { "common": [ { - "id": "windows_i686_gnullvm 0.52.6", + "id": "windows_aarch64_msvc 0.52.6", "target": "build_script_build" } ], @@ -83659,20 +83489,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_msvc 0.42.2": { - "name": "windows_i686_msvc", - "version": "0.42.2", + "windows_i686_gnu 0.48.5": { + "name": "windows_i686_gnu", + "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.42.2/download", - "sha256": "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" + "url": "https://static.crates.io/crates/windows_i686_gnu/0.48.5/download", + "sha256": "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_msvc", + "crate_name": "windows_i686_gnu", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -83695,7 +83525,7 @@ } } ], - "library_target_name": "windows_i686_msvc", + "library_target_name": "windows_i686_gnu", "common_attrs": { "compile_data_glob": [ "**" @@ -83703,14 +83533,14 @@ "deps": { "common": [ { - "id": "windows_i686_msvc 0.42.2", + "id": "windows_i686_gnu 0.48.5", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.42.2" + "version": "0.48.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -83727,20 +83557,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_msvc 0.48.5": { - "name": "windows_i686_msvc", - "version": "0.48.5", + "windows_i686_gnu 0.52.6": { + "name": "windows_i686_gnu", + "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.48.5/download", - "sha256": "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + "url": "https://static.crates.io/crates/windows_i686_gnu/0.52.6/download", + "sha256": "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_msvc", + "crate_name": "windows_i686_gnu", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -83763,7 +83593,7 @@ } } ], - "library_target_name": "windows_i686_msvc", + "library_target_name": "windows_i686_gnu", "common_attrs": { "compile_data_glob": [ "**" @@ -83771,14 +83601,14 @@ "deps": { "common": [ { - "id": "windows_i686_msvc 0.48.5", + "id": "windows_i686_gnu 0.52.6", "target": "build_script_build" } ], "selects": {} }, - "edition": "2018", - "version": "0.48.5" + "edition": "2021", + "version": "0.52.6" }, "build_script_attrs": { "compile_data_glob": [ @@ -83795,20 +83625,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_msvc 0.52.6": { - "name": "windows_i686_msvc", + "windows_i686_gnullvm 0.52.6": { + "name": "windows_i686_gnullvm", "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.52.6/download", - "sha256": "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + "url": "https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download", + "sha256": "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_msvc", + "crate_name": "windows_i686_gnullvm", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -83831,7 +83661,7 @@ } } ], - "library_target_name": "windows_i686_msvc", + "library_target_name": "windows_i686_gnullvm", "common_attrs": { "compile_data_glob": [ "**" @@ -83839,7 +83669,7 @@ "deps": { "common": [ { - "id": "windows_i686_msvc 0.52.6", + "id": "windows_i686_gnullvm 0.52.6", "target": "build_script_build" } ], @@ -83863,20 +83693,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_gnu 0.42.2": { - "name": "windows_x86_64_gnu", - "version": "0.42.2", + "windows_i686_msvc 0.48.5": { + "name": "windows_i686_msvc", + "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.42.2/download", - "sha256": "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" + "url": "https://static.crates.io/crates/windows_i686_msvc/0.48.5/download", + "sha256": "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_gnu", + "crate_name": "windows_i686_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -83899,7 +83729,7 @@ } } ], - "library_target_name": "windows_x86_64_gnu", + "library_target_name": "windows_i686_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -83907,14 +83737,14 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnu 0.42.2", + "id": "windows_i686_msvc 0.48.5", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.42.2" + "version": "0.48.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -83931,20 +83761,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_gnu 0.48.5": { - "name": "windows_x86_64_gnu", - "version": "0.48.5", + "windows_i686_msvc 0.52.6": { + "name": "windows_i686_msvc", + "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.48.5/download", - "sha256": "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + "url": "https://static.crates.io/crates/windows_i686_msvc/0.52.6/download", + "sha256": "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_gnu", + "crate_name": "windows_i686_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -83967,7 +83797,7 @@ } } ], - "library_target_name": "windows_x86_64_gnu", + "library_target_name": "windows_i686_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -83975,14 +83805,14 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnu 0.48.5", + "id": "windows_i686_msvc 0.52.6", "target": "build_script_build" } ], "selects": {} }, - "edition": "2018", - "version": "0.48.5" + "edition": "2021", + "version": "0.52.6" }, "build_script_attrs": { "compile_data_glob": [ @@ -83999,14 +83829,14 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_gnu 0.52.6": { + "windows_x86_64_gnu 0.48.5": { "name": "windows_x86_64_gnu", - "version": "0.52.6", + "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.52.6/download", - "sha256": "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.48.5/download", + "sha256": "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" } }, "targets": [ @@ -84043,14 +83873,14 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnu 0.52.6", + "id": "windows_x86_64_gnu 0.48.5", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.52.6" + "edition": "2018", + "version": "0.48.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -84067,20 +83897,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_gnullvm 0.42.2": { - "name": "windows_x86_64_gnullvm", - "version": "0.42.2", + "windows_x86_64_gnu 0.52.6": { + "name": "windows_x86_64_gnu", + "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.42.2/download", - "sha256": "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" + "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.52.6/download", + "sha256": "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_gnullvm", + "crate_name": "windows_x86_64_gnu", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -84103,7 +83933,7 @@ } } ], - "library_target_name": "windows_x86_64_gnullvm", + "library_target_name": "windows_x86_64_gnu", "common_attrs": { "compile_data_glob": [ "**" @@ -84111,14 +83941,14 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnullvm 0.42.2", + "id": "windows_x86_64_gnu 0.52.6", "target": "build_script_build" } ], "selects": {} }, - "edition": "2018", - "version": "0.42.2" + "edition": "2021", + "version": "0.52.6" }, "build_script_attrs": { "compile_data_glob": [ @@ -84271,74 +84101,6 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_msvc 0.42.2": { - "name": "windows_x86_64_msvc", - "version": "0.42.2", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.42.2/download", - "sha256": "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_x86_64_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_x86_64_msvc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_x86_64_msvc 0.42.2", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.42.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, "windows_x86_64_msvc 0.48.5": { "name": "windows_x86_64_msvc", "version": "0.48.5", @@ -84383,82 +84145,14 @@ "deps": { "common": [ { - "id": "windows_x86_64_msvc 0.48.5", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.48.5" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_msvc 0.52.6": { - "name": "windows_x86_64_msvc", - "version": "0.52.6", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.52.6/download", - "sha256": "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_x86_64_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_x86_64_msvc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_x86_64_msvc 0.52.6", + "id": "windows_x86_64_msvc 0.48.5", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.52.6" + "edition": "2018", + "version": "0.48.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -84475,20 +84169,20 @@ ], "license_file": "license-apache-2.0" }, - "winnow 0.5.17": { - "name": "winnow", - "version": "0.5.17", - "package_url": "https://github.com/winnow-rs/winnow", + "windows_x86_64_msvc 0.52.6": { + "name": "windows_x86_64_msvc", + "version": "0.52.6", + "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/winnow/0.5.17/download", - "sha256": "a3b801d0e0a6726477cc207f60162da452f3a95adb368399bef20a946e06f65c" + "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.52.6/download", + "sha256": "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" } }, "targets": [ { "Library": { - "crate_name": "winnow", + "crate_name": "windows_x86_64_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -84497,38 +84191,60 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], - "library_target_name": "winnow", + "library_target_name": "windows_x86_64_msvc", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { + "deps": { "common": [ - "alloc", - "default", - "std" + { + "id": "windows_x86_64_msvc 0.52.6", + "target": "build_script_build" + } ], "selects": {} }, "edition": "2021", - "version": "0.5.17" + "version": "0.52.6" }, - "license": "MIT", + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE-MIT" + "license_file": "license-apache-2.0" }, - "winnow 0.6.20": { + "winnow 0.6.24": { "name": "winnow", - "version": "0.6.20", + "version": "0.6.24", "package_url": "https://github.com/winnow-rs/winnow", "repository": { "Http": { - "url": "https://static.crates.io/crates/winnow/0.6.20/download", - "sha256": "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" + "url": "https://static.crates.io/crates/winnow/0.6.24/download", + "sha256": "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a" } }, "targets": [ @@ -84559,7 +84275,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.20" + "version": "0.6.24" }, "license": "MIT", "license_ids": [ @@ -84659,7 +84375,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -84667,15 +84383,15 @@ "target": "id_arena" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -84683,11 +84399,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "unicode-xid 0.2.4", + "id": "unicode-xid 0.2.6", "target": "unicode_xid" }, { @@ -84917,7 +84633,7 @@ "deps": { "common": [ { - "id": "data-encoding 2.4.0", + "id": "data-encoding 2.7.0", "target": "data_encoding" }, { @@ -84925,7 +84641,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -85031,11 +84747,11 @@ "deps": { "common": [ { - "id": "const-oid 0.9.5", + "id": "const-oid 0.9.6", "target": "const_oid" }, { - "id": "der 0.7.8", + "id": "der 0.7.9", "target": "der" }, { @@ -85101,11 +84817,11 @@ "deps": { "common": [ { - "id": "asn1-rs 0.6.1", + "id": "asn1-rs 0.6.2", "target": "asn1_rs" }, { - "id": "data-encoding 2.4.0", + "id": "data-encoding 2.7.0", "target": "data_encoding" }, { @@ -85113,7 +84829,7 @@ "target": "der_parser" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -85121,7 +84837,7 @@ "target": "nom" }, { - "id": "oid-registry 0.7.0", + "id": "oid-registry 0.7.1", "target": "oid_registry" }, { @@ -85129,11 +84845,11 @@ "target": "rusticata_macros" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -85149,14 +84865,14 @@ ], "license_file": "LICENSE-APACHE" }, - "xattr 0.2.3": { + "xattr 1.4.0": { "name": "xattr", - "version": "0.2.3", + "version": "1.4.0", "package_url": "https://github.com/Stebalien/xattr", "repository": { "Http": { - "url": "https://static.crates.io/crates/xattr/0.2.3/download", - "sha256": "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" + "url": "https://static.crates.io/crates/xattr/1.4.0/download", + "sha256": "e105d177a3871454f754b33bb0ee637ecaaac997446375fd3e5d43a2ed00c909" } }, "targets": [ @@ -85188,14 +84904,27 @@ "deps": { "common": [ { - "id": "libc 0.2.158", - "target": "libc" + "id": "rustix 0.38.43", + "target": "rustix" } ], - "selects": {} + "selects": { + "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))": [ + { + "id": "libc 0.2.169", + "target": "libc" + } + ], + "cfg(target_os = \"linux\")": [ + { + "id": "linux-raw-sys 0.4.15", + "target": "linux_raw_sys" + } + ] + } }, - "edition": "2015", - "version": "0.2.3" + "edition": "2021", + "version": "1.4.0" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -85339,6 +85068,53 @@ ], "license_file": "LICENSE-APACHE" }, + "yansi 1.0.1": { + "name": "yansi", + "version": "1.0.1", + "package_url": "https://github.com/SergioBenitez/yansi", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/yansi/1.0.1/download", + "sha256": "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" + } + }, + "targets": [ + { + "Library": { + "crate_name": "yansi", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "yansi", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc", + "default", + "std" + ], + "selects": {} + }, + "edition": "2021", + "version": "1.0.1" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "yasna 0.5.2": { "name": "yasna", "version": "0.5.2", @@ -85379,7 +85155,7 @@ "deps": { "common": [ { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -85395,14 +85171,14 @@ ], "license_file": null }, - "yoke 0.7.4": { + "yoke 0.7.5": { "name": "yoke", - "version": "0.7.4", + "version": "0.7.5", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/yoke/0.7.4/download", - "sha256": "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" + "url": "https://static.crates.io/crates/yoke/0.7.5/download", + "sha256": "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" } }, "targets": [ @@ -85440,7 +85216,7 @@ "target": "stable_deref_trait" }, { - "id": "zerofrom 0.1.4", + "id": "zerofrom 0.1.5", "target": "zerofrom" } ], @@ -85450,13 +85226,13 @@ "proc_macro_deps": { "common": [ { - "id": "yoke-derive 0.7.4", + "id": "yoke-derive 0.7.5", "target": "yoke_derive" } ], "selects": {} }, - "version": "0.7.4" + "version": "0.7.5" }, "license": "Unicode-3.0", "license_ids": [ @@ -85464,14 +85240,14 @@ ], "license_file": "LICENSE" }, - "yoke-derive 0.7.4": { + "yoke-derive 0.7.5": { "name": "yoke-derive", - "version": "0.7.4", + "version": "0.7.5", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/yoke-derive/0.7.4/download", - "sha256": "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" + "url": "https://static.crates.io/crates/yoke-derive/0.7.5/download", + "sha256": "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" } }, "targets": [ @@ -85496,15 +85272,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" }, { @@ -85515,7 +85291,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.4" + "version": "0.7.5" }, "license": "Unicode-3.0", "license_ids": [ @@ -85523,14 +85299,14 @@ ], "license_file": "LICENSE" }, - "zerocopy 0.7.32": { + "zerocopy 0.7.35": { "name": "zerocopy", - "version": "0.7.32", + "version": "0.7.35", "package_url": "https://github.com/google/zerocopy", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerocopy/0.7.32/download", - "sha256": "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" + "url": "https://static.crates.io/crates/zerocopy/0.7.35/download", + "sha256": "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" } }, "targets": [ @@ -85554,23 +85330,34 @@ ], "crate_features": { "common": [ - "simd" + "byteorder", + "default", + "derive", + "simd", + "zerocopy-derive" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "byteorder 1.5.0", + "target": "byteorder" + } ], "selects": {} }, "edition": "2018", "proc_macro_deps": { - "common": [], - "selects": { - "cfg(any())": [ - { - "id": "zerocopy-derive 0.7.32", - "target": "zerocopy_derive" - } - ] - } + "common": [ + { + "id": "zerocopy-derive 0.7.35", + "target": "zerocopy_derive" + } + ], + "selects": {} }, - "version": "0.7.32" + "version": "0.7.35" }, "license": "BSD-2-Clause OR Apache-2.0 OR MIT", "license_ids": [ @@ -85580,14 +85367,14 @@ ], "license_file": "LICENSE-APACHE" }, - "zerocopy-derive 0.7.32": { + "zerocopy-derive 0.7.35": { "name": "zerocopy-derive", - "version": "0.7.32", + "version": "0.7.35", "package_url": "https://github.com/google/zerocopy", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerocopy-derive/0.7.32/download", - "sha256": "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" + "url": "https://static.crates.io/crates/zerocopy-derive/0.7.35/download", + "sha256": "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" } }, "targets": [ @@ -85612,22 +85399,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.7.32" + "version": "0.7.35" }, "license": "BSD-2-Clause OR Apache-2.0 OR MIT", "license_ids": [ @@ -85637,14 +85424,14 @@ ], "license_file": "LICENSE-APACHE" }, - "zerofrom 0.1.4": { + "zerofrom 0.1.5": { "name": "zerofrom", - "version": "0.1.4", + "version": "0.1.5", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerofrom/0.1.4/download", - "sha256": "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" + "url": "https://static.crates.io/crates/zerofrom/0.1.5/download", + "sha256": "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" } }, "targets": [ @@ -85677,13 +85464,13 @@ "proc_macro_deps": { "common": [ { - "id": "zerofrom-derive 0.1.4", + "id": "zerofrom-derive 0.1.5", "target": "zerofrom_derive" } ], "selects": {} }, - "version": "0.1.4" + "version": "0.1.5" }, "license": "Unicode-3.0", "license_ids": [ @@ -85691,14 +85478,14 @@ ], "license_file": "LICENSE" }, - "zerofrom-derive 0.1.4": { + "zerofrom-derive 0.1.5": { "name": "zerofrom-derive", - "version": "0.1.4", + "version": "0.1.5", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerofrom-derive/0.1.4/download", - "sha256": "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" + "url": "https://static.crates.io/crates/zerofrom-derive/0.1.5/download", + "sha256": "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" } }, "targets": [ @@ -85723,15 +85510,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" }, { @@ -85742,7 +85529,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.4" + "version": "0.1.5" }, "license": "Unicode-3.0", "license_ids": [ @@ -85839,15 +85626,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -85902,11 +85689,11 @@ "deps": { "common": [ { - "id": "yoke 0.7.4", + "id": "yoke 0.7.5", "target": "yoke" }, { - "id": "zerofrom 0.1.4", + "id": "zerofrom 0.1.5", "target": "zerofrom" } ], @@ -85962,15 +85749,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -86026,7 +85813,7 @@ "deps": { "common": [ { - "id": "zstd-safe 7.1.0", + "id": "zstd-safe 7.2.1", "target": "zstd_safe" } ], @@ -86041,14 +85828,14 @@ ], "license_file": "LICENSE" }, - "zstd-safe 7.1.0": { + "zstd-safe 7.2.1": { "name": "zstd-safe", - "version": "7.1.0", + "version": "7.2.1", "package_url": "https://github.com/gyscos/zstd-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/zstd-safe/7.1.0/download", - "sha256": "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a" + "url": "https://static.crates.io/crates/zstd-safe/7.2.1/download", + "sha256": "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059" } }, "targets": [ @@ -86094,18 +85881,18 @@ "deps": { "common": [ { - "id": "zstd-safe 7.1.0", + "id": "zstd-safe 7.2.1", "target": "build_script_build" }, { - "id": "zstd-sys 2.0.10+zstd.1.5.6", + "id": "zstd-sys 2.0.13+zstd.1.5.6", "target": "zstd_sys" } ], "selects": {} }, "edition": "2018", - "version": "7.1.0" + "version": "7.2.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -86117,7 +85904,7 @@ "link_deps": { "common": [ { - "id": "zstd-sys 2.0.10+zstd.1.5.6", + "id": "zstd-sys 2.0.13+zstd.1.5.6", "target": "zstd_sys" } ], @@ -86131,14 +85918,14 @@ ], "license_file": "LICENSE" }, - "zstd-sys 2.0.10+zstd.1.5.6": { + "zstd-sys 2.0.13+zstd.1.5.6": { "name": "zstd-sys", - "version": "2.0.10+zstd.1.5.6", + "version": "2.0.13+zstd.1.5.6", "package_url": "https://github.com/gyscos/zstd-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/zstd-sys/2.0.10+zstd.1.5.6/download", - "sha256": "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa" + "url": "https://static.crates.io/crates/zstd-sys/2.0.13+zstd.1.5.6/download", + "sha256": "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" } }, "targets": [ @@ -86183,14 +85970,14 @@ "deps": { "common": [ { - "id": "zstd-sys 2.0.10+zstd.1.5.6", + "id": "zstd-sys 2.0.13+zstd.1.5.6", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "2.0.10+zstd.1.5.6" + "version": "2.0.13+zstd.1.5.6" }, "build_script_attrs": { "compile_data_glob": [ @@ -86202,11 +85989,11 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" } ], @@ -86224,7 +86011,7 @@ }, "binary_crates": [ "canbench 0.1.8", - "ic-wasm 0.8.4", + "ic-wasm 0.8.6", "metrics-proxy 0.1.0" ], "workspace_members": { @@ -86260,7 +86047,6 @@ "aarch64-unknown-nto-qnx710": [ "aarch64-unknown-nto-qnx710" ], - "aarch64-uwp-windows-msvc": [], "arm-unknown-linux-gnueabi": [ "arm-unknown-linux-gnueabi" ], @@ -86273,7 +86059,7 @@ "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))": [ "x86_64-pc-windows-msvc" ], - "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ "aarch64-linux-android", "armv7-linux-androideabi", "i686-linux-android", @@ -86300,7 +86086,7 @@ "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], - "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ + "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ "aarch64-unknown-linux-gnu", "aarch64-unknown-nixos-gnu", "arm-unknown-linux-gnueabi", @@ -86309,7 +86095,7 @@ "x86_64-unknown-linux-gnu", "x86_64-unknown-nixos-gnu" ], - "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", @@ -86327,7 +86113,6 @@ "thumbv7em-none-eabi", "thumbv8m.main-none-eabi", "wasm32-unknown-unknown", - "wasm32-wasi", "wasm32-wasip1", "x86_64-apple-darwin", "x86_64-apple-ios", @@ -86351,6 +86136,7 @@ "aarch64-apple-ios", "aarch64-apple-ios-sim" ], + "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))": [], "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ "wasm32-unknown-unknown" ], @@ -86358,7 +86144,6 @@ "wasm32-unknown-unknown" ], "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\"))": [ - "wasm32-wasi", "wasm32-wasip1" ], "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\", target_env = \"\"))": [ @@ -86607,6 +86392,10 @@ "i686-unknown-freebsd", "x86_64-unknown-freebsd" ], + "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))": [ + "i686-unknown-freebsd", + "x86_64-unknown-freebsd" + ], "cfg(any(target_os = \"linux\", target_os = \"android\"))": [ "aarch64-linux-android", "aarch64-unknown-linux-gnu", @@ -86641,7 +86430,6 @@ "i686-unknown-linux-gnu", "powerpc-unknown-linux-gnu", "s390x-unknown-linux-gnu", - "wasm32-wasi", "wasm32-wasip1", "x86_64-apple-darwin", "x86_64-apple-ios", @@ -86768,7 +86556,6 @@ "i686-unknown-linux-gnu", "powerpc-unknown-linux-gnu", "s390x-unknown-linux-gnu", - "wasm32-wasi", "wasm32-wasip1", "x86_64-apple-darwin", "x86_64-apple-ios", @@ -86808,6 +86595,7 @@ "x86_64-unknown-nixos-gnu" ], "cfg(curve25519_dalek_backend = \"fiat\")": [], + "cfg(moka_loom)": [], "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))": [ "aarch64-apple-darwin", "aarch64-apple-ios", @@ -86831,7 +86619,6 @@ "riscv64gc-unknown-none-elf", "s390x-unknown-linux-gnu", "wasm32-unknown-unknown", - "wasm32-wasi", "wasm32-wasip1", "x86_64-apple-darwin", "x86_64-apple-ios", @@ -86866,7 +86653,6 @@ "thumbv7em-none-eabi", "thumbv8m.main-none-eabi", "wasm32-unknown-unknown", - "wasm32-wasi", "wasm32-wasip1", "x86_64-apple-darwin", "x86_64-apple-ios", @@ -86877,31 +86663,6 @@ "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], - "cfg(not(any(target_os = \"macos\", target_os = \"ios\", target_os = \"windows\", target_arch = \"wasm32\")))": [ - "aarch64-linux-android", - "aarch64-unknown-fuchsia", - "aarch64-unknown-linux-gnu", - "aarch64-unknown-nixos-gnu", - "aarch64-unknown-nto-qnx710", - "arm-unknown-linux-gnueabi", - "armv7-linux-androideabi", - "armv7-unknown-linux-gnueabi", - "i686-linux-android", - "i686-unknown-freebsd", - "i686-unknown-linux-gnu", - "powerpc-unknown-linux-gnu", - "riscv32imc-unknown-none-elf", - "riscv64gc-unknown-none-elf", - "s390x-unknown-linux-gnu", - "thumbv7em-none-eabi", - "thumbv8m.main-none-eabi", - "x86_64-linux-android", - "x86_64-unknown-freebsd", - "x86_64-unknown-fuchsia", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu", - "x86_64-unknown-none" - ], "cfg(not(any(target_os = \"windows\", target_arch = \"wasm32\")))": [ "aarch64-apple-darwin", "aarch64-apple-ios", @@ -86933,39 +86694,6 @@ "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], - "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))": [ - "aarch64-apple-darwin", - "aarch64-apple-ios", - "aarch64-apple-ios-sim", - "aarch64-linux-android", - "aarch64-unknown-fuchsia", - "aarch64-unknown-linux-gnu", - "aarch64-unknown-nixos-gnu", - "aarch64-unknown-nto-qnx710", - "arm-unknown-linux-gnueabi", - "armv7-linux-androideabi", - "armv7-unknown-linux-gnueabi", - "i686-apple-darwin", - "i686-linux-android", - "i686-unknown-freebsd", - "i686-unknown-linux-gnu", - "powerpc-unknown-linux-gnu", - "riscv32imc-unknown-none-elf", - "riscv64gc-unknown-none-elf", - "s390x-unknown-linux-gnu", - "thumbv7em-none-eabi", - "thumbv8m.main-none-eabi", - "wasm32-wasi", - "wasm32-wasip1", - "x86_64-apple-darwin", - "x86_64-apple-ios", - "x86_64-linux-android", - "x86_64-unknown-freebsd", - "x86_64-unknown-fuchsia", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu", - "x86_64-unknown-none" - ], "cfg(not(target_arch = \"wasm32\"))": [ "aarch64-apple-darwin", "aarch64-apple-ios", @@ -87057,48 +86785,10 @@ "thumbv7em-none-eabi", "thumbv8m.main-none-eabi", "wasm32-unknown-unknown", - "wasm32-wasi", - "wasm32-wasip1", - "x86_64-apple-darwin", - "x86_64-apple-ios", - "x86_64-linux-android", - "x86_64-unknown-freebsd", - "x86_64-unknown-fuchsia", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu", - "x86_64-unknown-none" - ], - "cfg(not(windows_raw_dylib))": [ - "aarch64-apple-darwin", - "aarch64-apple-ios", - "aarch64-apple-ios-sim", - "aarch64-linux-android", - "aarch64-pc-windows-msvc", - "aarch64-unknown-fuchsia", - "aarch64-unknown-linux-gnu", - "aarch64-unknown-nixos-gnu", - "aarch64-unknown-nto-qnx710", - "arm-unknown-linux-gnueabi", - "armv7-linux-androideabi", - "armv7-unknown-linux-gnueabi", - "i686-apple-darwin", - "i686-linux-android", - "i686-pc-windows-msvc", - "i686-unknown-freebsd", - "i686-unknown-linux-gnu", - "powerpc-unknown-linux-gnu", - "riscv32imc-unknown-none-elf", - "riscv64gc-unknown-none-elf", - "s390x-unknown-linux-gnu", - "thumbv7em-none-eabi", - "thumbv8m.main-none-eabi", - "wasm32-unknown-unknown", - "wasm32-wasi", "wasm32-wasip1", "x86_64-apple-darwin", "x86_64-apple-ios", "x86_64-linux-android", - "x86_64-pc-windows-msvc", "x86_64-unknown-freebsd", "x86_64-unknown-fuchsia", "x86_64-unknown-linux-gnu", @@ -87117,9 +86807,9 @@ "aarch64-unknown-nixos-gnu", "aarch64-unknown-nto-qnx710" ], + "cfg(target_arch = \"spirv\")": [], "cfg(target_arch = \"wasm32\")": [ "wasm32-unknown-unknown", - "wasm32-wasi", "wasm32-wasip1" ], "cfg(target_arch = \"x86\")": [ @@ -87161,11 +86851,6 @@ ], "cfg(target_os = \"haiku\")": [], "cfg(target_os = \"hermit\")": [], - "cfg(target_os = \"ios\")": [ - "aarch64-apple-ios", - "aarch64-apple-ios-sim", - "x86_64-apple-ios" - ], "cfg(target_os = \"linux\")": [ "aarch64-unknown-linux-gnu", "aarch64-unknown-nixos-gnu", @@ -87184,7 +86869,6 @@ ], "cfg(target_os = \"redox\")": [], "cfg(target_os = \"wasi\")": [ - "wasm32-wasi", "wasm32-wasip1" ], "cfg(target_os = \"windows\")": [ @@ -87241,8 +86925,6 @@ "i686-unknown-linux-gnu": [ "i686-unknown-linux-gnu" ], - "i686-uwp-windows-gnu": [], - "i686-uwp-windows-msvc": [], "powerpc-unknown-linux-gnu": [ "powerpc-unknown-linux-gnu" ], @@ -87264,9 +86946,6 @@ "wasm32-unknown-unknown": [ "wasm32-unknown-unknown" ], - "wasm32-wasi": [ - "wasm32-wasi" - ], "wasm32-wasip1": [ "wasm32-wasip1" ], @@ -87299,99 +86978,97 @@ ], "x86_64-unknown-none": [ "x86_64-unknown-none" - ], - "x86_64-uwp-windows-gnu": [], - "x86_64-uwp-windows-msvc": [] + ] }, "direct_deps": [ "actix-rt 2.10.0", "actix-web 4.9.0", "addr 0.15.6", - "aide 0.13.4", - "anyhow 1.0.93", - "arbitrary 1.3.2", + "aide 0.13.5", + "anyhow 1.0.95", + "arbitrary 1.4.1", "arc-swap 1.7.1", - "arrayvec 0.7.4", + "arrayvec 0.7.6", "askama 0.12.1", "assert-json-diff 2.0.2", "assert_cmd 2.0.16", "assert_matches 1.5.0", - "async-recursion 1.0.5", + "async-recursion 1.1.1", "async-scoped 0.8.0", "async-stream 0.3.6", - "async-trait 0.1.83", + "async-trait 0.1.85", "axum 0.7.9", "axum-extra 0.9.6", "axum-server 0.6.0", "backoff 0.4.0", - "backon 0.4.1", + "backon 0.4.4", "base32 0.4.0", "base64 0.13.1", "bech32 0.9.1", "bincode 1.3.3", "bindgen 0.65.1", - "bip32 0.5.1", + "bip32 0.5.2", "bit-vec 0.6.3", "bitcoin 0.28.2", - "bitcoin 0.32.2", + "bitcoin 0.32.5", "bitcoincore-rpc 0.15.0", "bitcoind 0.32.0", "bitflags 1.3.2", - "bs58 0.5.0", + "bs58 0.5.1", "build-info 0.0.27", "build-info-build 0.0.27", - "by_address 1.1.0", + "by_address 1.2.1", "byte-unit 4.0.19", "byteorder 1.5.0", "bytes 1.9.0", - "cached 0.49.2", + "cached 0.49.3", "canbench 0.1.8", "canbench-rs 0.1.8", - "candid 0.10.10", - "candid_parser 0.1.2", + "candid 0.10.12", + "candid_parser 0.1.4", "cargo_metadata 0.14.2", - "cc 1.0.83", + "cc 1.2.9", "cddl 0.9.4", "cfg-if 1.0.0", "chacha20poly1305 0.10.1", - "chrono 0.4.38", - "ciborium 0.2.1", + "chrono 0.4.39", + "ciborium 0.2.2", "cidr 0.2.3", - "clap 4.5.20", + "clap 4.5.26", "cloudflare 0.12.0", - "colored 2.0.4", - "comparable 0.5.4", + "colored 2.2.0", + "comparable 0.5.5", "console 0.11.3", "convert_case 0.6.0", - "crc32fast 1.3.2", + "crc32fast 1.4.2", "criterion 0.5.1", "crossbeam 0.8.4", - "crossbeam-channel 0.5.13", - "csv 1.3.0", + "crossbeam-channel 0.5.14", + "csv 1.3.1", "ctrlc 3.4.5", "curve25519-dalek 4.1.3", "cvt 0.1.2", "dashmap 5.5.3", - "dyn-clone 1.0.14", + "dyn-clone 1.0.17", "ed25519-dalek 2.1.1", "educe 0.4.23", "env-file-reader 0.3.0", "erased-serde 0.3.31", - "escargot 0.5.8", - "ethers-core 2.0.10", - "ethnum 1.4.0", + "escargot 0.5.13", + "ethers-core 2.0.14", + "ethnum 1.5.0", "evm_rpc_types 1.2.0", "exec 0.3.1", - "eyre 0.6.8", + "eyre 0.6.12", "ff 0.12.1", - "flate2 1.0.31", + "flate2 1.0.35", "form_urlencoded 1.2.1", - "fqdn 0.3.11", + "fqdn 0.3.12", "fs_extra 1.3.0", "futures 0.3.31", "futures-util 0.3.31", "get_if_addrs 0.5.3", - "getrandom 0.2.10", + "getrandom 0.2.15", "group 0.13.0", "hashlink 0.8.4", "hex 0.4.3", @@ -87403,8 +87080,8 @@ "http-body-util 0.1.2", "humantime 2.1.0", "humantime-serde 1.1.1", - "hyper 1.5.1", - "hyper-rustls 0.27.3", + "hyper 1.5.2", + "hyper-rustls 0.27.5", "hyper-socks2 0.9.1", "hyper-util 0.1.10", "ic-agent 0.39.2", @@ -87424,12 +87101,12 @@ "ic-metrics-encoder 1.1.1", "ic-response-verification 3.0.2", "ic-sha3 1.0.0", - "ic-stable-structures 0.6.5", + "ic-stable-structures 0.6.7", "ic-test-state-machine-client 3.0.1", "ic-transport-types 0.39.2", "ic-utils 0.39.2", "ic-verify-bls-signature 0.6.0", - "ic-wasm 0.8.4", + "ic-wasm 0.8.6", "ic-xrc-types 1.2.0", "ic0 0.18.11", "ic_bls12_381 0.10.0", @@ -87437,31 +87114,31 @@ "icrc1-test-env 0.1.1", "icrc1-test-suite 0.1.1", "idna 1.0.3", - "indexmap 2.2.6", - "indicatif 0.17.7", + "indexmap 2.7.0", + "indicatif 0.17.9", "indoc 1.0.9", - "inferno 0.12.0", - "insta 1.34.0", + "inferno 0.12.1", + "insta 1.42.0", "instant-acme 0.7.2", "intmap 1.1.0", "ipnet 2.10.1", "isocountry 0.3.2", - "itertools 0.12.0", + "itertools 0.12.1", "json-patch 0.2.7", "json5 0.4.1", "k256 0.13.4", "k8s-openapi 0.22.0", "kube 0.93.1", - "lazy_static 1.4.0", + "lazy_static 1.5.0", "leb128 0.2.5", - "libc 0.2.158", + "libc 0.2.169", "libflate 2.1.0", - "libfuzzer-sys 0.4.7", + "libfuzzer-sys 0.4.8", "libnss 0.5.0", "little-loadshedder 0.2.0", "lmdb-rkv 0.14.99", "lmdb-rkv-sys 0.11.99", - "local-ip-address 0.5.6", + "local-ip-address 0.5.7", "lru 0.7.8", "macaddr 1.0.1", "mach2 0.4.2", @@ -87470,9 +87147,9 @@ "metrics-proxy 0.1.0", "minicbor 0.19.1", "minicbor-derive 0.13.0", - "mockall 0.13.0", - "mockito 1.2.0", - "moka 0.12.8", + "mockall 0.13.1", + "mockito 1.6.1", + "moka 0.12.10", "more-asserts 0.3.1", "nftables 0.4.1", "nix 0.24.3", @@ -87481,81 +87158,81 @@ "num-rational 0.2.4", "num-traits 0.2.19", "num_cpus 1.16.0", - "once_cell 1.19.0", + "once_cell 1.20.2", "openssh-keys 0.5.0", "opentelemetry 0.20.0", - "opentelemetry 0.27.0", + "opentelemetry 0.27.1", "opentelemetry-otlp 0.27.0", "opentelemetry-prometheus 0.13.0", "opentelemetry_sdk 0.27.1", "p256 0.13.2", "pairing 0.23.0", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "paste 1.0.15", - "pcre2 0.2.6", + "pcre2 0.2.9", "pem 1.1.1", - "pin-project-lite 0.2.13", - "ping 0.5.0", + "pin-project-lite 0.2.16", + "ping 0.5.2", "pkcs8 0.10.2", - "pkg-config 0.3.27", + "pkg-config 0.3.31", "pprof 0.14.0", - "predicates 3.1.2", + "predicates 3.1.3", "pretty-bytes 0.2.2", - "pretty_assertions 1.4.0", - "priority-queue 1.3.2", - "proc-macro2 1.0.89", + "pretty_assertions 1.4.1", + "priority-queue 1.4.0", + "proc-macro2 1.0.93", "procfs 0.9.1", "prometheus 0.13.4", - "prometheus-parse 0.2.4", - "proptest 1.5.0", - "proptest-derive 0.5.0", - "prost 0.12.2", - "prost 0.13.3", - "prost-build 0.13.3", + "prometheus-parse 0.2.5", + "proptest 1.6.0", + "proptest-derive 0.5.1", + "prost 0.12.6", + "prost 0.13.4", + "prost-build 0.13.4", "protobuf 2.28.0", - "publicsuffix 2.2.3", + "publicsuffix 2.3.0", "quickcheck 1.0.3", - "quinn 0.11.5", - "quinn-udp 0.5.5", - "quote 1.0.37", + "quinn 0.11.6", + "quinn-udp 0.5.9", + "quote 1.0.38", "rand 0.8.5", "rand_chacha 0.3.1", "rand_distr 0.4.3", "rand_pcg 0.3.1", "ratelimit 0.9.1", "rayon 1.10.0", - "rcgen 0.13.1", - "regex 1.11.0", - "reqwest 0.12.9", - "rgb 0.8.37", - "ring 0.17.7", + "rcgen 0.13.2", + "regex 1.11.1", + "reqwest 0.12.12", + "rgb 0.8.50", + "ring 0.17.8", "ripemd 0.1.3", "rlp 0.5.2", "rocksdb 0.22.0", "rolling-file 0.2.0", - "rsa 0.9.6", + "rsa 0.9.7", "rstest 0.19.0", - "rusb 0.9.3", + "rusb 0.9.4", "rusqlite 0.28.0", "rust_decimal 1.36.0", "rust_decimal_macros 1.36.0", - "rustc-demangle 0.1.23", + "rustc-demangle 0.1.24", "rustc-hash 1.1.0", - "rustls 0.23.18", + "rustls 0.23.21", "rustls-pemfile 2.2.0", - "rustversion 1.0.14", + "rustversion 1.0.19", "rusty-fork 0.3.0", - "schemars 0.8.16", + "schemars 0.8.21", "scoped_threadpool 0.1.9", "scopeguard 1.2.0", "scraper 0.17.1", "secp256k1 0.22.2", - "semver 1.0.22", + "semver 1.0.24", "serde 1.0.217", "serde-bytes-repr 0.1.5", "serde_bytes 0.11.15", "serde_cbor 0.11.2", - "serde_json 1.0.132", + "serde_json 1.0.135", "serde_regex 1.1.0", "serde_with 1.14.0", "serde_yaml 0.9.34+deprecated", @@ -87563,7 +87240,7 @@ "sha3 0.10.8", "signal-hook 0.3.17", "signature 2.2.0", - "simple_asn1 0.6.2", + "simple_asn1 0.6.3", "simple_moving_average 1.0.2", "slog 2.7.0", "slog-async 2.8.0", @@ -87571,30 +87248,30 @@ "slog-json 2.6.1", "slog-scope 4.4.0", "slog-term 2.9.1", - "socket2 0.5.7", + "socket2 0.5.8", "ssh2 0.9.4", "static_assertions 1.1.0", "strum 0.26.3", "strum_macros 0.26.4", - "stubborn-io 0.3.2", + "stubborn-io 0.3.5", "subtle 2.6.1", "syn 1.0.109", - "tar 0.4.39", + "tar 0.4.43", "tarpc 0.34.0", - "tempfile 3.12.0", + "tempfile 3.15.0", "test-strategy 0.3.1", "tester 0.7.0", - "textplots 0.8.4", - "thiserror 2.0.3", + "textplots 0.8.6", + "thiserror 2.0.11", "thousands 0.2.0", "threadpool 1.8.1", "tikv-jemalloc-ctl 0.5.4", "tikv-jemallocator 0.5.4", - "time 0.3.36", - "tokio 1.42.0", + "time 0.3.37", + "tokio 1.43.0", "tokio-io-timeout 1.2.0", "tokio-metrics 0.4.0", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.1", "tokio-serde 0.8.0", "tokio-socks 0.5.2", "tokio-stream 0.1.17", @@ -87603,11 +87280,11 @@ "toml 0.5.11", "tonic 0.12.3", "tonic-build 0.12.3", - "tower 0.5.1", + "tower 0.5.2", "tower-http 0.6.2", "tower-request-id 0.3.0", "tower-test 0.4.0", - "tower_governor 0.4.2", + "tower_governor 0.4.3", "tracing 0.1.41", "tracing-appender 0.2.3", "tracing-flame 0.2.0", @@ -87617,20 +87294,20 @@ "tracing-subscriber 0.3.19", "trust-dns-resolver 0.22.0", "turmoil 0.6.4", - "url 2.5.3", - "uuid 1.11.0", + "url 2.5.4", + "uuid 1.12.0", "vsock 0.4.0", - "walkdir 2.3.3", + "walkdir 2.5.0", "warp 0.3.7", - "wasm-bindgen 0.2.95", + "wasm-bindgen 0.2.100", "wasm-encoder 0.217.0", "wasm-smith 0.212.0", "wasmparser 0.217.0", "wasmprinter 0.217.0", - "wasmtime 28.0.0", - "wasmtime-environ 28.0.0", + "wasmtime 28.0.1", + "wasmtime-environ 28.0.1", "wast 212.0.0", - "wat 1.212.0", + "wat 1.223.0", "wee_alloc 0.4.5", "which 4.4.2", "wsl 0.1.0", @@ -87641,5 +87318,6 @@ "zeroize 1.8.1", "zstd 0.13.2" ], - "direct_dev_deps": [] + "direct_dev_deps": [], + "unused_patches": [] } diff --git a/Cargo.Bazel.Fuzzing.toml.lock b/Cargo.Bazel.Fuzzing.toml.lock index 11569e4c150..46ca2139721 100644 --- a/Cargo.Bazel.Fuzzing.toml.lock +++ b/Cargo.Bazel.Fuzzing.toml.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "abnf" @@ -35,11 +35,11 @@ dependencies = [ [[package]] name = "actix-codec" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8" +checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.8.0", "bytes", "futures-core", "futures-sink", @@ -62,11 +62,11 @@ dependencies = [ "actix-utils", "ahash 0.8.11", "base64 0.22.1", - "bitflags 2.6.0", + "bitflags 2.8.0", "brotli 6.0.0", "bytes", "bytestring", - "derive_more", + "derive_more 0.99.18", "encoding_rs", "flate2", "futures-core", @@ -96,7 +96,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" dependencies = [ "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -127,17 +127,17 @@ dependencies = [ [[package]] name = "actix-server" -version = "2.3.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3eb13e7eef0423ea6eab0e59f6c72e7cb46d33691ad56a726b3cd07ddec2c2d4" +checksum = "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894" dependencies = [ "actix-rt", "actix-service", "actix-utils", "futures-core", "futures-util", - "mio 0.8.10", - "socket2 0.5.7", + "mio 1.0.3", + "socket2 0.5.8", "tokio", "tracing", ] @@ -183,7 +183,7 @@ dependencies = [ "bytestring", "cfg-if 1.0.0", "cookie", - "derive_more", + "derive_more 0.99.18", "encoding_rs", "futures-core", "futures-util", @@ -200,7 +200,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "smallvec", - "socket2 0.5.7", + "socket2 0.5.8", "time", "url", ] @@ -214,7 +214,7 @@ dependencies = [ "actix-router", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -228,18 +228,18 @@ dependencies = [ [[package]] name = "addr2line" -version = "0.21.0" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" +checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" dependencies = [ - "gimli 0.28.0", + "gimli 0.31.1", ] [[package]] -name = "adler" -version = "1.0.2" +name = "adler2" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" +checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" [[package]] name = "adler32" @@ -283,29 +283,29 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.1.2" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" dependencies = [ "memchr", ] [[package]] name = "aide" -version = "0.13.4" +version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b0e3b97a21e41ec5c19bfd9b4fc1f7086be104f8b988681230247ffc91cc8ed" +checksum = "5678d2978845ddb4bd736a026f467dd652d831e9e6254b0e41b07f7ee7523309" dependencies = [ "axum", "bytes", "cfg-if 1.0.0", "http 1.2.0", - "indexmap 2.2.6", + "indexmap 2.7.0", "schemars", "serde", "serde_json", "serde_qs", - "thiserror 1.0.68", + "thiserror 1.0.69", "tower-layer", "tower-service", "tracing", @@ -364,9 +364,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" [[package]] name = "anstream" -version = "0.6.15" +version = "0.6.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" +checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" dependencies = [ "anstyle", "anstyle-parse", @@ -379,49 +379,50 @@ dependencies = [ [[package]] name = "anstyle" -version = "1.0.8" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" +checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" [[package]] name = "anstyle-parse" -version = "0.2.2" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140" +checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.0.0" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" +checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" dependencies = [ - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] name = "anstyle-wincon" -version = "3.0.1" +version = "3.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" +checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" dependencies = [ "anstyle", - "windows-sys 0.48.0", + "once_cell", + "windows-sys 0.59.0", ] [[package]] name = "anyhow" -version = "1.0.93" +version = "1.0.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775" +checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" [[package]] name = "arbitrary" -version = "1.3.2" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" +checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223" dependencies = [ "derive_arbitrary", ] @@ -440,9 +441,9 @@ checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" [[package]] name = "arrayvec" -version = "0.7.4" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" +checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "ascii-canvas" @@ -470,9 +471,9 @@ dependencies = [ [[package]] name = "askama_derive" -version = "0.12.2" +version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a0fc7dcf8bd4ead96b1d36b41df47c14beedf7b0301fc543d8f2384e66a2ec0" +checksum = "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83" dependencies = [ "askama_parser", "basic-toml", @@ -481,7 +482,7 @@ dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -492,18 +493,18 @@ checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341" [[package]] name = "askama_parser" -version = "0.1.1" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c268a96e01a4c47c8c5c2472aaa570707e006a875ea63e819f75474ceedaf7b4" +checksum = "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0" dependencies = [ "nom", ] [[package]] name = "asn1-rs" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22ad1373757efa0f70ec53939aabc7152e1591cb485208052993070ac8d2429d" +checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" dependencies = [ "asn1-rs-derive", "asn1-rs-impl", @@ -511,19 +512,19 @@ dependencies = [ "nom", "num-traits", "rusticata-macros", - "thiserror 1.0.68", + "thiserror 1.0.69", "time", ] [[package]] name = "asn1-rs-derive" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7378575ff571966e99a744addeff0bff98b8ada0dedf1956d59e634db95eaac1" +checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", "synstructure", ] @@ -535,7 +536,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -588,18 +589,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" dependencies = [ "concurrent-queue", - "event-listener-strategy 0.5.2", + "event-listener-strategy", "futures-core", "pin-project-lite", ] [[package]] name = "async-compression" -version = "0.4.4" +version = "0.4.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f658e2baef915ba0f26f1f7c42bfb8e12f532a01f449a090ded75ae7a07e9ba2" +checksum = "df895a515f70646414f4b45c0b79082783b80552b373a68283012928df56f522" dependencies = [ - "brotli 3.4.0", + "brotli 7.0.0", "flate2", "futures-core", "memchr", @@ -624,9 +625,9 @@ dependencies = [ [[package]] name = "async-io" -version = "2.3.4" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" +checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059" dependencies = [ "async-lock", "cfg-if 1.0.0", @@ -643,12 +644,12 @@ dependencies = [ [[package]] name = "async-lock" -version = "3.3.0" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" +checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" dependencies = [ - "event-listener 4.0.3", - "event-listener-strategy 0.4.0", + "event-listener 5.4.0", + "event-listener-strategy", "pin-project-lite", ] @@ -665,13 +666,13 @@ dependencies = [ [[package]] name = "async-recursion" -version = "1.0.5" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" +checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -691,7 +692,7 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8da2537846e16b96d2972ee52a3b355663872a1a687ce6d57a3b6f6b6a181c89" dependencies = [ - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", ] @@ -714,7 +715,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -725,13 +726,13 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.83" +version = "0.1.85" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" +checksum = "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -757,8 +758,8 @@ dependencies = [ "lazy_static", "log", "rustls-pki-types", - "thiserror 1.0.68", - "webpki-roots 0.26.1", + "thiserror 1.0.69", + "webpki-roots 0.26.7", ] [[package]] @@ -780,14 +781,13 @@ dependencies = [ [[package]] name = "auto_impl" -version = "1.1.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fee3da8ef1276b0bee5dd1c7258010d8fffd31801447323115a25560e1327b89" +checksum = "e12882f59de5360c748c4cbf569a042d5fb0eb515f7bea9c1f470b47f6ffbd73" dependencies = [ - "proc-macro-error", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.96", ] [[package]] @@ -796,14 +796,14 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", ] [[package]] name = "autocfg" -version = "1.1.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" +checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" [[package]] name = "axum" @@ -819,7 +819,7 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-util", "itoa", "matchit", @@ -832,9 +832,9 @@ dependencies = [ "serde_json", "serde_path_to_error", "serde_urlencoded", - "sync_wrapper 1.0.1", + "sync_wrapper 1.0.2", "tokio", - "tower 0.5.1", + "tower 0.5.2", "tower-layer", "tower-service", "tracing", @@ -855,7 +855,7 @@ dependencies = [ "mime", "pin-project-lite", "rustversion", - "sync_wrapper 1.0.1", + "sync_wrapper 1.0.2", "tower-layer", "tower-service", "tracing", @@ -870,7 +870,7 @@ dependencies = [ "axum", "axum-core", "bytes", - "fastrand 2.2.0", + "fastrand", "futures-util", "headers 0.4.0", "http 1.2.0", @@ -880,7 +880,7 @@ dependencies = [ "multer 3.1.0", "pin-project-lite", "serde", - "tower 0.5.1", + "tower 0.5.2", "tower-layer", "tower-service", ] @@ -893,7 +893,7 @@ checksum = "57d123550fa8d071b7255cb0cc04dc302baa6c8c4a79f55701552684d8399bce" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -926,7 +926,7 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-util", "pin-project-lite", "rustls 0.21.12", @@ -953,11 +953,11 @@ dependencies = [ [[package]] name = "backon" -version = "0.4.1" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c1a6197b2120bb2185a267f6515038558b019e92b832bb0320e96d66268dcf9" +checksum = "d67782c3f868daa71d3533538e98a8e13713231969def7536e8039606fc46bf0" dependencies = [ - "fastrand 1.9.0", + "fastrand", "futures-core", "pin-project", "tokio", @@ -965,17 +965,17 @@ dependencies = [ [[package]] name = "backtrace" -version = "0.3.69" +version = "0.3.74" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" +checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" dependencies = [ "addr2line", - "cc", "cfg-if 1.0.0", "libc", "miniz_oxide", - "object 0.32.1", + "object", "rustc-demangle", + "windows-targets 0.52.6", ] [[package]] @@ -1014,9 +1014,9 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" [[package]] name = "base64" -version = "0.21.4" +version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" +checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" [[package]] name = "base64" @@ -1026,11 +1026,11 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "base64-url" -version = "2.0.0" +version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c5b0a88aa36e9f095ee2e2b13fb8c5e4313e022783aedacc123328c0084916d" +checksum = "fb9fb9fb058cc3063b5fc88d9a21eefa2735871498a04e1650da76ed511c8569" dependencies = [ - "base64 0.21.4", + "base64 0.21.7", ] [[package]] @@ -1041,9 +1041,9 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "basic-toml" -version = "0.1.7" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f2139706359229bfa8f19142ac1155b4b80beafb7a60471ac5dd109d4a19778" +checksum = "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8" dependencies = [ "serde", ] @@ -1099,19 +1099,19 @@ dependencies = [ "regex", "rustc-hash 1.1.0", "shlex", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "bindgen" -version = "0.69.4" +version = "0.69.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" +checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "cexpr", "clang-sys", - "itertools 0.12.0", + "itertools 0.12.1", "lazy_static", "lazycell", "proc-macro2", @@ -1119,7 +1119,7 @@ dependencies = [ "regex", "rustc-hash 1.1.0", "shlex", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -1147,9 +1147,9 @@ dependencies = [ [[package]] name = "bip32" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e141fb0f8be1c7b45887af94c88b182472b57c96b56773250ae00cd6a14a164" +checksum = "aa13fae8b6255872fd86f7faf4b41168661d7d78609f7bfe6771b85c6739a15b" dependencies = [ "bs58", "hmac", @@ -1169,7 +1169,16 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" dependencies = [ - "bit-vec", + "bit-vec 0.6.3", +] + +[[package]] +name = "bit-set" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" +dependencies = [ + "bit-vec 0.8.0", ] [[package]] @@ -1178,6 +1187,12 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" +[[package]] +name = "bit-vec" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" + [[package]] name = "bitcoin" version = "0.28.2" @@ -1192,9 +1207,9 @@ dependencies = [ [[package]] name = "bitcoin" -version = "0.30.1" +version = "0.30.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e99ff7289b20a7385f66a0feda78af2fc119d28fb56aea8886a9cd0a4abdd75" +checksum = "1945a5048598e4189e239d3f809b19bdad4845c4b2ba400d304d2dcf26d2c462" dependencies = [ "bech32 0.9.1", "bitcoin-private", @@ -1206,9 +1221,9 @@ dependencies = [ [[package]] name = "bitcoin" -version = "0.32.2" +version = "0.32.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea507acc1cd80fc084ace38544bbcf7ced7c2aa65b653b102de0ce718df668f6" +checksum = "ce6bc65742dea50536e35ad42492b234c27904a27f0abdcbce605015cb4ea026" dependencies = [ "base58ck", "bech32 0.11.0", @@ -1218,7 +1233,7 @@ dependencies = [ "bitcoin_hashes 0.14.0", "hex-conservative", "hex_lit", - "secp256k1 0.29.0", + "secp256k1 0.29.1", ] [[package]] @@ -1229,9 +1244,9 @@ checksum = "30bdbe14aa07b06e6cfeffc529a1f099e5fbe249524f8125358604df99a4bed2" [[package]] name = "bitcoin-io" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "340e09e8399c7bd8912f495af6aa58bea0c9214773417ffaa8f6460f93aaee56" +checksum = "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf" [[package]] name = "bitcoin-private" @@ -1322,9 +1337,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.6.0" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" +checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" [[package]] name = "bitvec" @@ -1371,9 +1386,9 @@ dependencies = [ [[package]] name = "borsh" -version = "1.5.2" +version = "1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5327f6c99920069d1fe374aa743be1af0031dea9f250852cdf1ae6a0861ee24" +checksum = "9fb65153674e51d3a42c8f27b05b9508cea85edfaade8aa46bc8fc18cecdfef3" dependencies = [ "borsh-derive", "cfg_aliases", @@ -1381,26 +1396,15 @@ dependencies = [ [[package]] name = "borsh-derive" -version = "1.5.2" +version = "1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10aedd8f1a81a8aafbfde924b0e3061cd6fedd6f6bbcfc6a76e6fd426d7bfe26" +checksum = "a396e17ad94059c650db3d253bb6e25927f1eb462eede7e7a153bb6e75dce0a7" dependencies = [ "once_cell", - "proc-macro-crate 3.2.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.87", -] - -[[package]] -name = "brotli" -version = "3.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f" -dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", - "brotli-decompressor 2.5.0", + "syn 2.0.96", ] [[package]] @@ -1411,7 +1415,7 @@ checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", - "brotli-decompressor 4.0.1", + "brotli-decompressor", ] [[package]] @@ -1422,17 +1426,7 @@ checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", - "brotli-decompressor 4.0.1", -] - -[[package]] -name = "brotli-decompressor" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da74e2b81409b1b743f8f0c62cc6254afefb8b8e50bbfe3735550f7aeefa3448" -dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", + "brotli-decompressor", ] [[package]] @@ -1447,9 +1441,9 @@ dependencies = [ [[package]] name = "bs58" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896" +checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" dependencies = [ "sha2 0.10.8", "tinyvec", @@ -1457,12 +1451,12 @@ dependencies = [ [[package]] name = "bstr" -version = "1.8.0" +version = "1.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c" +checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0" dependencies = [ "memchr", - "regex-automata 0.4.8", + "regex-automata 0.4.9", "serde", ] @@ -1500,7 +1494,7 @@ name = "build-info-common" version = "0.0.27" source = "git+https://github.com/dfinity-lab/build-info?rev=701a696844fba5c87df162fbbc1ccef96f27c9d7#701a696844fba5c87df162fbbc1ccef96f27c9d7" dependencies = [ - "derive_more", + "derive_more 0.99.18", "semver", "serde", ] @@ -1536,9 +1530,9 @@ dependencies = [ [[package]] name = "by_address" -version = "1.1.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf8dba2868114ed769a1f2590fc9ae5eb331175b44313b6c9b922f8f7ca813d0" +checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06" [[package]] name = "byte-slice-cast" @@ -1558,9 +1552,9 @@ dependencies = [ [[package]] name = "bytecheck" -version = "0.6.11" +version = "0.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627" +checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" dependencies = [ "bytecheck_derive", "ptr_meta", @@ -1569,9 +1563,9 @@ dependencies = [ [[package]] name = "bytecheck_derive" -version = "0.6.11" +version = "0.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61" +checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" dependencies = [ "proc-macro2", "quote", @@ -1580,9 +1574,9 @@ dependencies = [ [[package]] name = "bytemuck" -version = "1.14.0" +version = "1.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" +checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3" [[package]] name = "byteorder" @@ -1607,9 +1601,9 @@ checksum = "a3e368af43e418a04d52505cf3dbc23dda4e3407ae2fa99fd0e4f308ce546acc" [[package]] name = "bytestring" -version = "1.3.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae" +checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f" dependencies = [ "bytes", ] @@ -1633,14 +1627,14 @@ checksum = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b" [[package]] name = "cached" -version = "0.49.2" +version = "0.49.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f251fd1e72720ca07bf5d8e310f54a193fd053479a1f6342c6663ee4fa01cf96" +checksum = "8e8e463fceca5674287f32d252fb1d94083758b8709c160efae66d263e5f4eba" dependencies = [ "hashbrown 0.14.5", "instant", "once_cell", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -1653,7 +1647,7 @@ dependencies = [ "hashbrown 0.14.5", "instant", "once_cell", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -1667,7 +1661,7 @@ dependencies = [ "cached_proc_macro_types", "hashbrown 0.14.5", "once_cell", - "thiserror 1.0.68", + "thiserror 1.0.69", "web-time", ] @@ -1680,7 +1674,7 @@ dependencies = [ "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -1691,9 +1685,9 @@ checksum = "ade8366b8bd5ba243f0a58f036cc0ca8a2f069cff1a2351ef1cac6b083e16fc0" [[package]] name = "camino" -version = "1.1.6" +version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" +checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" dependencies = [ "serde", ] @@ -1706,7 +1700,7 @@ checksum = "cb548f9e006ad29b160d37e07435c499af7d2741918e18d95ddc87dfe97a0b8d" dependencies = [ "canbench-rs", "candid", - "clap 4.5.20", + "clap 4.5.26", "colored", "flate2", "hex", @@ -1745,9 +1739,9 @@ dependencies = [ [[package]] name = "candid" -version = "0.10.10" +version = "0.10.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c30ee7f886f296b6422c0ff017e89dd4f831521dfdcc76f3f71aae1ce817222" +checksum = "51e129c4051c57daf943586e01ef72faae48b04a8f692d5f646febf17a264c38" dependencies = [ "anyhow", "binread", @@ -1763,7 +1757,7 @@ dependencies = [ "serde", "serde_bytes", "stacker", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -1775,33 +1769,33 @@ dependencies = [ "lazy_static", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "candid_parser" -version = "0.1.2" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36381de3ba8a312deb028552c0d63f7c7fe6e204f44bae4c58a3643308cfa9d5" +checksum = "48a3da76f989cd350b7342c64c6c6008341bb6186f6832ef04e56dc50ba0fd76" dependencies = [ "anyhow", "candid", "codespan-reporting", "convert_case 0.6.0", "hex", - "lalrpop 0.20.0", - "lalrpop-util 0.20.0", + "lalrpop 0.20.2", + "lalrpop-util 0.20.2", "logos 0.13.0", "num-bigint 0.4.6", "pretty 0.12.3", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] name = "cargo-platform" -version = "0.1.4" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12024c4645c97566567129c204f65d5815a8c9aecf30fcbe682b2fe034996d36" +checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" dependencies = [ "serde", ] @@ -1827,12 +1821,13 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] name = "cc" -version = "1.0.83" +version = "1.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" +checksum = "c8293772165d9345bdaaa39b45b2109591e63fe5e6fbc23c6ff930a048aa310b" dependencies = [ "jobserver", "libc", + "shlex", ] [[package]] @@ -1927,9 +1922,9 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.38" +version = "0.4.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" +checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825" dependencies = [ "android-tzdata", "iana-time-zone", @@ -1942,9 +1937,9 @@ dependencies = [ [[package]] name = "ciborium" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" +checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" dependencies = [ "ciborium-io", "ciborium-ll", @@ -1953,18 +1948,18 @@ dependencies = [ [[package]] name = "ciborium-io" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" +checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" [[package]] name = "ciborium-ll" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" +checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" dependencies = [ "ciborium-io", - "half", + "half 2.4.1", ] [[package]] @@ -1986,9 +1981,9 @@ dependencies = [ [[package]] name = "clang-sys" -version = "1.6.1" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" +checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" dependencies = [ "glob", "libc", @@ -2014,23 +2009,23 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.20" +version = "4.5.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" +checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783" dependencies = [ "clap_builder", - "clap_derive 4.5.18", + "clap_derive 4.5.24", ] [[package]] name = "clap_builder" -version = "4.5.20" +version = "4.5.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" +checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121" dependencies = [ "anstream", "anstyle", - "clap_lex 0.7.2", + "clap_lex 0.7.4", "strsim 0.11.1", ] @@ -2049,14 +2044,14 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.18" +version = "4.5.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" +checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -2070,9 +2065,9 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.7.2" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" +checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" [[package]] name = "clocksource" @@ -2107,7 +2102,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "serde_with 2.3.3", - "thiserror 1.0.68", + "thiserror 1.0.69", "url", "uuid", ] @@ -2125,7 +2120,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "serde_with 2.3.3", - "thiserror 1.0.68", + "thiserror 1.0.69", "url", "uuid", ] @@ -2143,24 +2138,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" dependencies = [ "termcolor", - "unicode-width", + "unicode-width 0.1.14", ] [[package]] name = "colorchoice" -version = "1.0.0" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" +checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" [[package]] name = "colored" -version = "2.0.4" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2674ec482fbc38012cf31e6c42ba0177b431a0cb6f15fe40efa5aab1bda516f6" +checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c" dependencies = [ - "is-terminal", "lazy_static", - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] @@ -2175,9 +2169,9 @@ dependencies = [ [[package]] name = "comparable" -version = "0.5.4" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb513ee8037bf08c5270ecefa48da249f4c58e57a71ccfce0a5b0877d2a20eb2" +checksum = "8606f9aa5b5a2df738584b139c79413d0c1545ed0ffd16e76e0944d1de7388c0" dependencies = [ "comparable_derive", "comparable_helper", @@ -2187,9 +2181,9 @@ dependencies = [ [[package]] name = "comparable_derive" -version = "0.5.4" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a54b9c40054eb8999c5d1d36fdc90e4e5f7ff0d1d9621706f360b3cbc8beb828" +checksum = "41f36ea7383b9a2a9ae0a4e225d8a9c1c3aeadde78c59cdc35bad5c02b4dad01" dependencies = [ "convert_case 0.4.0", "proc-macro2", @@ -2199,9 +2193,9 @@ dependencies = [ [[package]] name = "comparable_helper" -version = "0.5.4" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb5437e327e861081c91270becff184859f706e3e50f5301a9d4dc8eb50752c3" +checksum = "71c9b60259084f32c14d32476f3a299b4997e3c186e1473bd972ff8a8c83d1b4" dependencies = [ "convert_case 0.6.0", "proc-macro2", @@ -2224,28 +2218,28 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c0994e656bba7b922d8dd1245db90672ffb701e684e45be58f20719d69abc5a" dependencies = [ - "encode_unicode", + "encode_unicode 0.3.6", "lazy_static", "libc", "regex", "terminal_size", "termios", - "unicode-width", + "unicode-width 0.1.14", "winapi 0.3.9", "winapi-util", ] [[package]] name = "console" -version = "0.15.7" +version = "0.15.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" +checksum = "ea3c6ecd8059b57859df5c69830340ed3c41d30e3da0c1cbed90a96ac853041b" dependencies = [ - "encode_unicode", - "lazy_static", + "encode_unicode 1.0.0", "libc", - "unicode-width", - "windows-sys 0.45.0", + "once_cell", + "unicode-width 0.2.0", + "windows-sys 0.59.0", ] [[package]] @@ -2260,21 +2254,22 @@ dependencies = [ [[package]] name = "const-hex" -version = "1.9.1" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c37be52ef5e3b394db27a2341010685ad5103c72ac15ce2e9420a7e8f93f342c" +checksum = "4b0485bab839b018a8f1723fc5391819fea5f8f0f32288ef8a735fd096b6160c" dependencies = [ "cfg-if 1.0.0", "cpufeatures", "hex", + "proptest", "serde", ] [[package]] name = "const-oid" -version = "0.9.5" +version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f" +checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" [[package]] name = "convert_case" @@ -2312,6 +2307,16 @@ dependencies = [ "libc", ] +[[package]] +name = "core-foundation" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" +dependencies = [ + "core-foundation-sys", + "libc", +] + [[package]] name = "core-foundation-sys" version = "0.8.7" @@ -2338,7 +2343,7 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "581898ed9a83f31c64731b1d8ca2dfffcfec14edf1635afacd5234cddbde3a41" dependencies = [ - "bitcoin 0.30.1", + "bitcoin 0.30.2", "bitcoin-private", "serde", "serde_json", @@ -2355,27 +2360,27 @@ dependencies = [ [[package]] name = "cpufeatures" -version = "0.2.9" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" +checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3" dependencies = [ "libc", ] [[package]] name = "cranelift-bforest" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac89549be94911dd0e839b4a7db99e9ed29c17517e1c026f61066884c168aa3c" +checksum = "88c1d02b72b6c411c0a2e92b25ed791ad5d071184193c08a34aa0fdcdf000b72" dependencies = [ "cranelift-entity", ] [[package]] name = "cranelift-bitset" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9bd49369f76c77e34e641af85d0956869237832c118964d08bf5f51f210875a" +checksum = "720b93bd86ebbb23ebfb2db1ed44d54b2ecbdbb2d034d485bc64aa605ee787ab" dependencies = [ "serde", "serde_derive", @@ -2383,9 +2388,9 @@ dependencies = [ [[package]] name = "cranelift-codegen" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd96ce9cf8efebd7f5ab8ced5a0ce44250280bbae9f593d74a6d7effc3582a35" +checksum = "aed3d2d9914d30b460eedd7fd507720203023997bef71452ce84873f9c93537c" dependencies = [ "bumpalo", "cranelift-bforest", @@ -2399,7 +2404,7 @@ dependencies = [ "hashbrown 0.14.5", "log", "regalloc2", - "rustc-hash 2.0.0", + "rustc-hash 2.1.0", "serde", "smallvec", "target-lexicon", @@ -2407,33 +2412,33 @@ dependencies = [ [[package]] name = "cranelift-codegen-meta" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a68e358827afe4bfb6239fcbf6fbd5ac56206ece8a99c8f5f9bbd518773281a" +checksum = "888c188d32263ec9e048873ff0b68c700933600d553f4412417916828be25f8e" dependencies = [ "cranelift-codegen-shared", ] [[package]] name = "cranelift-codegen-shared" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e184c9767afbe73d50c55ec29abcf4c32f9baf0d9d22b86d58c4d55e06dee181" +checksum = "4ddd5f4114d04ce7e073dd74e2ad16541fc61970726fcc8b2d5644a154ee4127" [[package]] name = "cranelift-control" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cc7664f2a66f053e33f149e952bb5971d138e3af637f5097727ed6dc0ed95dd" +checksum = "92cc4c98d6a4256a1600d93ccd3536f3e77da9b4ca2c279de786ac22876e67d6" dependencies = [ "arbitrary", ] [[package]] name = "cranelift-entity" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "118597e3a9cf86c3556fa579a7a23b955fa18231651a52a77a2475d305a9cf84" +checksum = "760af4b5e051b5f82097a27274b917e3751736369fa73660513488248d27f23d" dependencies = [ "cranelift-bitset", "serde", @@ -2442,9 +2447,9 @@ dependencies = [ [[package]] name = "cranelift-frontend" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7638ea1efb069a0aa18d8ee67401b6b0d19f6bfe5de5e9ede348bfc80bb0d8c7" +checksum = "c0bf77ec0f470621655ec7539860b5c620d4f91326654ab21b075b83900f8831" dependencies = [ "cranelift-codegen", "log", @@ -2454,15 +2459,15 @@ dependencies = [ [[package]] name = "cranelift-isle" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15c53e1152a0b01c4ed2b1e0535602b8e86458777dd9d18b28732b16325c7dc0" +checksum = "4b665d0a6932c421620be184f9fc7f7adaf1b0bc2fa77bb7ac5177c49abf645b" [[package]] name = "cranelift-native" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b7d8f895444fa52dd7bdd0bed11bf007a7fb43af65a6deac8fcc4094c6372f7" +checksum = "bb2e75d1bd43dfec10924798f15e6474f1dbf63b0024506551aa19394dbe72ab" dependencies = [ "cranelift-codegen", "libc", @@ -2471,9 +2476,9 @@ dependencies = [ [[package]] name = "crc32fast" -version = "1.3.2" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" +checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" dependencies = [ "cfg-if 1.0.0", ] @@ -2487,7 +2492,7 @@ dependencies = [ "anes", "cast", "ciborium", - "clap 4.5.20", + "clap 4.5.26", "criterion-plot", "futures", "is-terminal", @@ -2531,18 +2536,18 @@ dependencies = [ [[package]] name = "crossbeam-channel" -version = "0.5.13" +version = "0.5.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" +checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471" dependencies = [ "crossbeam-utils", ] [[package]] name = "crossbeam-deque" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" +checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" dependencies = [ "crossbeam-epoch", "crossbeam-utils", @@ -2559,18 +2564,18 @@ dependencies = [ [[package]] name = "crossbeam-queue" -version = "0.3.11" +version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" +checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" dependencies = [ "crossbeam-utils", ] [[package]] name = "crossbeam-utils" -version = "0.8.19" +version = "0.8.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" [[package]] name = "crossterm" @@ -2578,11 +2583,11 @@ version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "crossterm_winapi", "libc", - "mio 0.8.10", - "parking_lot 0.12.1", + "mio 0.8.11", + "parking_lot 0.12.3", "signal-hook", "signal-hook-mio", "winapi 0.3.9", @@ -2605,9 +2610,9 @@ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" [[package]] name = "crypto-bigint" -version = "0.5.3" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "740fe28e594155f10cfc383984cbefd529d7396050557148f79cb0f621204124" +checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" dependencies = [ "generic-array", "rand_core 0.6.4", @@ -2635,7 +2640,7 @@ dependencies = [ "cssparser-macros", "dtoa-short", "itoa", - "phf 0.11.2", + "phf 0.11.3", "smallvec", ] @@ -2646,14 +2651,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" dependencies = [ "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "csv" -version = "1.3.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe" +checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf" dependencies = [ "csv-core", "itoa", @@ -2706,7 +2711,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -2776,7 +2781,7 @@ dependencies = [ "proc-macro2", "quote", "strsim 0.11.1", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -2798,14 +2803,14 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core 0.20.10", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "dary_heap" -version = "0.3.6" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7762d17f1241643615821a8455a0b2c3e803784b058693d990b11f2dce25a0ca" +checksum = "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728" [[package]] name = "dashmap" @@ -2817,7 +2822,7 @@ dependencies = [ "hashbrown 0.14.5", "lock_api", "once_cell", - "parking_lot_core 0.9.8", + "parking_lot_core 0.9.10", ] [[package]] @@ -2831,14 +2836,14 @@ dependencies = [ "hashbrown 0.14.5", "lock_api", "once_cell", - "parking_lot_core 0.9.8", + "parking_lot_core 0.9.10", ] [[package]] name = "data-encoding" -version = "2.4.0" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" +checksum = "0e60eed09d8c01d3cee5b7d30acb059b76614c918fa0f992e0dd6eeb10daad6f" [[package]] name = "debugid" @@ -2851,9 +2856,9 @@ dependencies = [ [[package]] name = "der" -version = "0.7.8" +version = "0.7.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c" +checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" dependencies = [ "const-oid", "der_derive", @@ -2878,20 +2883,20 @@ dependencies = [ [[package]] name = "der_derive" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fe87ce4529967e0ba1dcf8450bab64d97dfd5010a6256187ffe2e43e6f0e049" +checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "deranged" -version = "0.3.9" +version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" +checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" dependencies = [ "powerfmt", "serde", @@ -2905,31 +2910,51 @@ checksum = "2cdc8d50f426189eef89dac62fabfa0abb27d5cc008f25bf4156a0203325becc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "derive_arbitrary" -version = "1.3.2" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" +checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "derive_more" -version = "0.99.17" +version = "0.99.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" +checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" dependencies = [ "convert_case 0.4.0", "proc-macro2", "quote", "rustc_version", - "syn 1.0.109", + "syn 2.0.96", +] + +[[package]] +name = "derive_more" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" +dependencies = [ + "derive_more-impl", +] + +[[package]] +name = "derive_more-impl" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.96", ] [[package]] @@ -2976,7 +3001,7 @@ dependencies = [ "anyhow", "arbitrary", "arc-swap", - "arrayvec 0.7.4", + "arrayvec 0.7.6", "askama", "assert-json-diff", "assert_cmd", @@ -2996,9 +3021,9 @@ dependencies = [ "bincode", "bindgen 0.65.1", "bip32", - "bit-vec", + "bit-vec 0.6.3", "bitcoin 0.28.2", - "bitcoin 0.32.2", + "bitcoin 0.32.5", "bitcoincore-rpc", "bitcoind", "bitflags 1.3.2", @@ -3009,7 +3034,7 @@ dependencies = [ "byte-unit", "byteorder", "bytes", - "cached 0.49.2", + "cached 0.49.3", "canbench", "canbench-rs", "candid", @@ -3022,7 +3047,7 @@ dependencies = [ "chrono", "ciborium", "cidr", - "clap 4.5.20", + "clap 4.5.26", "cloudflare 0.12.0 (git+https://github.com/dfinity/cloudflare-rs.git?rev=a6538a036926bd756986c9c0a5de356daef48881)", "colored", "comparable", @@ -3051,7 +3076,7 @@ dependencies = [ "ff 0.12.1", "flate2", "form_urlencoded", - "fqdn 0.3.11", + "fqdn 0.3.12", "fs_extra", "futures", "futures-util", @@ -3068,8 +3093,8 @@ dependencies = [ "http-body-util", "humantime", "humantime-serde", - "hyper 1.5.1", - "hyper-rustls 0.27.3", + "hyper 1.5.2", + "hyper-rustls 0.27.5", "hyper-socks2", "hyper-util", "ic-agent", @@ -3102,16 +3127,16 @@ dependencies = [ "icrc1-test-env", "icrc1-test-suite", "idna 1.0.3", - "indexmap 2.2.6", + "indexmap 2.7.0", "indicatif", "indoc", - "inferno 0.12.0", + "inferno 0.12.1", "insta", "instant-acme", "intmap", "ipnet", "isocountry", - "itertools 0.12.0", + "itertools 0.12.1", "json-patch", "json5", "k256", @@ -3149,13 +3174,13 @@ dependencies = [ "once_cell", "openssh-keys", "opentelemetry 0.20.0", - "opentelemetry 0.27.0", + "opentelemetry 0.27.1", "opentelemetry-otlp", "opentelemetry-prometheus 0.13.0", "opentelemetry_sdk 0.27.1", "p256", "pairing", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "paste", "pcre2", "pem 1.1.1", @@ -3174,9 +3199,9 @@ dependencies = [ "prometheus-parse", "proptest", "proptest-derive", - "prost 0.12.2", - "prost 0.13.3", - "prost-build 0.13.3", + "prost 0.12.6", + "prost 0.13.4", + "prost-build 0.13.4", "protobuf", "publicsuffix", "quickcheck", @@ -3191,9 +3216,9 @@ dependencies = [ "rayon", "rcgen", "regex", - "reqwest 0.12.9", + "reqwest 0.12.12", "rgb", - "ring 0.17.7", + "ring 0.17.8", "ripemd", "rlp", "rocksdb", @@ -3206,7 +3231,7 @@ dependencies = [ "rust_decimal_macros", "rustc-demangle", "rustc-hash 1.1.0", - "rustls 0.23.18", + "rustls 0.23.21", "rustls-pemfile 2.2.0", "rustversion", "rusty-fork", @@ -3236,11 +3261,11 @@ dependencies = [ "slog-json", "slog-scope", "slog-term", - "socket2 0.5.7", + "socket2 0.5.8", "ssh2", "static_assertions", - "strum 0.26.3", - "strum_macros 0.26.4", + "strum", + "strum_macros", "stubborn-io", "subtle", "syn 1.0.109", @@ -3250,7 +3275,7 @@ dependencies = [ "test-strategy", "tester", "textplots", - "thiserror 2.0.3", + "thiserror 2.0.11", "thousands", "threadpool", "tikv-jemalloc-ctl", @@ -3259,7 +3284,7 @@ dependencies = [ "tokio", "tokio-io-timeout", "tokio-metrics", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.1", "tokio-serde", "tokio-socks", "tokio-stream", @@ -3268,7 +3293,7 @@ dependencies = [ "toml", "tonic", "tonic-build", - "tower 0.5.1", + "tower 0.5.2", "tower-http 0.6.2", "tower-request-id", "tower-test", @@ -3294,7 +3319,7 @@ dependencies = [ "wasmprinter 0.217.0", "wasmtime", "wasmtime-environ", - "wast", + "wast 212.0.0", "wat", "wee_alloc", "which", @@ -3302,7 +3327,7 @@ dependencies = [ "wycheproof", "x509-cert", "x509-parser", - "yansi", + "yansi 0.5.1", "zeroize", "zstd", ] @@ -3351,13 +3376,13 @@ dependencies = [ [[package]] name = "displaydoc" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" +checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -3390,9 +3415,9 @@ checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" [[package]] name = "dtoa-short" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74" +checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" dependencies = [ "dtoa", ] @@ -3408,9 +3433,9 @@ dependencies = [ [[package]] name = "dyn-clone" -version = "1.0.14" +version = "1.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23d2f3407d9a573d666de4b5bdf10569d73ca9478087346697dcbae6244bfbcd" +checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" [[package]] name = "ecdsa" @@ -3447,7 +3472,7 @@ dependencies = [ "rand_core 0.6.4", "serde", "sha2 0.9.9", - "thiserror 1.0.68", + "thiserror 1.0.69", "zeroize", ] @@ -3482,15 +3507,15 @@ dependencies = [ [[package]] name = "ego-tree" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a68a4904193147e0a8dec3314640e6db742afd5f6e634f428a6af230d9b3591" +checksum = "12a0bb14ac04a9fcf170d0bbbef949b44cc492f4452bd20c095636956f653642" [[package]] name = "either" -version = "1.9.0" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" +checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" [[package]] name = "elliptic-curve" @@ -3518,11 +3543,17 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" +[[package]] +name = "embedded-io" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" + [[package]] name = "ena" -version = "0.14.2" +version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1" +checksum = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5" dependencies = [ "log", ] @@ -3533,11 +3564,17 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" +[[package]] +name = "encode_unicode" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" + [[package]] name = "encoding_rs" -version = "0.8.33" +version = "0.8.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" +checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" dependencies = [ "cfg-if 1.0.0", ] @@ -3556,14 +3593,14 @@ dependencies = [ [[package]] name = "enum-as-inner" -version = "0.6.0" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" +checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" dependencies = [ - "heck 0.4.1", + "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -3576,7 +3613,7 @@ dependencies = [ "num-traits", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -3592,9 +3629,9 @@ dependencies = [ [[package]] name = "env_filter" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" +checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" dependencies = [ "log", ] @@ -3611,9 +3648,9 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.11.2" +version = "0.11.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c012a26a7f605efc424dd53697843a72be7dc86ad2d01f7814337794a12231d" +checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0" dependencies = [ "env_filter", "log", @@ -3636,7 +3673,7 @@ checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -3667,12 +3704,12 @@ dependencies = [ [[package]] name = "errno" -version = "0.3.8" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" +checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -3687,9 +3724,9 @@ dependencies = [ [[package]] name = "escargot" -version = "0.5.8" +version = "0.5.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "768064bd3a0e2bedcba91dc87ace90beea91acc41b6a01a3ca8e9aa8827461bf" +checksum = "05a3ac187a16b5382fef8c69fd1bad123c67b7cf3932240a2d43dcdd32cded88" dependencies = [ "log", "once_cell", @@ -3710,7 +3747,7 @@ dependencies = [ "serde", "serde_json", "sha3", - "thiserror 1.0.68", + "thiserror 1.0.69", "uint", ] @@ -3747,11 +3784,11 @@ dependencies = [ [[package]] name = "ethers-core" -version = "2.0.10" +version = "2.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0a17f0708692024db9956b31d7a20163607d2745953f5ae8125ab368ba280ad" +checksum = "82d80cc6ad30b14a48ab786523af33b37f28a8623fc06afd55324816ef18fb1f" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", "bytes", "chrono", "const-hex", @@ -3765,18 +3802,18 @@ dependencies = [ "rlp", "serde", "serde_json", - "strum 0.25.0", + "strum", "tempfile", - "thiserror 1.0.68", + "thiserror 1.0.69", "tiny-keccak", "unicode-xid", ] [[package]] name = "ethnum" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c8ff382b2fa527fb7fb06eeebfc5bbb3f17e3cc6b9d70b006c41daa8824adac" +checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c" dependencies = [ "serde", ] @@ -3789,20 +3826,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "event-listener" -version = "4.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" -dependencies = [ - "concurrent-queue", - "parking", - "pin-project-lite", -] - -[[package]] -name = "event-listener" -version = "5.3.1" +version = "5.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" +checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" dependencies = [ "concurrent-queue", "parking", @@ -3811,21 +3837,11 @@ dependencies = [ [[package]] name = "event-listener-strategy" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" -dependencies = [ - "event-listener 4.0.3", - "pin-project-lite", -] - -[[package]] -name = "event-listener-strategy" -version = "0.5.2" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" +checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2" dependencies = [ - "event-listener 5.3.1", + "event-listener 5.4.0", "pin-project-lite", ] @@ -3840,8 +3856,8 @@ dependencies = [ "ic-cdk 0.16.0", "num-bigint 0.4.6", "serde", - "strum 0.26.3", - "thiserror 1.0.68", + "strum", + "thiserror 1.0.69", "url", ] @@ -3863,9 +3879,9 @@ checksum = "de853764b47027c2e862a995c34978ffa63c1501f2e15f987ba11bd4f9bba193" [[package]] name = "eyre" -version = "0.6.8" +version = "0.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb" +checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec" dependencies = [ "indenter", "once_cell", @@ -3891,18 +3907,9 @@ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" [[package]] name = "fastrand" -version = "1.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" -dependencies = [ - "instant", -] - -[[package]] -name = "fastrand" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4" +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" [[package]] name = "ff" @@ -3926,20 +3933,20 @@ dependencies = [ [[package]] name = "fiat-crypto" -version = "0.2.6" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1676f435fc1dadde4d03e43f5d62b259e1ce5f40bd4ffb21db2b42ebe59c1382" +checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" [[package]] name = "filetime" -version = "0.2.22" +version = "0.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" +checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" dependencies = [ "cfg-if 1.0.0", "libc", - "redox_syscall 0.3.5", - "windows-sys 0.48.0", + "libredox", + "windows-sys 0.59.0", ] [[package]] @@ -3974,15 +3981,15 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flagset" -version = "0.4.4" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d52a7e408202050813e6f1d9addadcaafef3dca7530c7ddfb005d4081cce6779" +checksum = "b3ea1ec5f8307826a5b71094dd91fc04d4ae75d5709b20ad351c7fb4815c86ec" [[package]] name = "flate2" -version = "1.0.31" +version = "1.0.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920" +checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c" dependencies = [ "crc32fast", "miniz_oxide", @@ -3990,9 +3997,9 @@ dependencies = [ [[package]] name = "float-cmp" -version = "0.9.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" +checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8" dependencies = [ "num-traits", ] @@ -4025,20 +4032,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9" dependencies = [ "nonempty", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] name = "fqdn" -version = "0.3.11" +version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08b1eaa7dfddeab6036292995620bf0435712e619db6d7690605897e76975eb0" +checksum = "eb540cf7bc4fe6df9d8f7f0c974cfd0dce8ed4e9e8884e73433b503ee78b4e7d" [[package]] name = "fqdn" -version = "0.4.1" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5eeee501d87b436020fcd3065cc981b5e4d22f2066735268b36b9d513d23e553" +checksum = "8f66e93156d144bd3a9a970033d04c6fbfb4b641275d8eaa3ff83f5b9c232496" [[package]] name = "fragile" @@ -4124,17 +4131,15 @@ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" [[package]] name = "futures-lite" -version = "2.0.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c1155db57329dca6d018b61e76b1488ce9a2e5e44028cac420a5898f4fcef63" +checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" dependencies = [ - "fastrand 2.2.0", + "fastrand", "futures-core", "futures-io", - "memchr", "parking", "pin-project-lite", - "waker-fn", ] [[package]] @@ -4145,7 +4150,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -4155,7 +4160,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8f2f12607f92c69b12ed746fabf9ca4f5c482cba46679c1a75b874ed7c26adb" dependencies = [ "futures-io", - "rustls 0.23.18", + "rustls 0.23.21", "rustls-pki-types", ] @@ -4173,9 +4178,9 @@ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" [[package]] name = "futures-timer" -version = "3.0.2" +version = "3.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" +checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" [[package]] name = "futures-util" @@ -4210,6 +4215,19 @@ version = "0.3.55" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" +[[package]] +name = "generator" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc6bd114ceda131d3b1d665eba35788690ad37f5916457286b32ab6fd3c438dd" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "log", + "rustversion", + "windows", +] + [[package]] name = "generic-array" version = "0.14.7" @@ -4249,18 +4267,20 @@ version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" dependencies = [ - "unicode-width", + "unicode-width 0.1.14", ] [[package]] name = "getrandom" -version = "0.2.10" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" +checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" dependencies = [ "cfg-if 1.0.0", + "js-sys", "libc", "wasi", + "wasm-bindgen", ] [[package]] @@ -4274,12 +4294,6 @@ dependencies = [ "stable_deref_trait", ] -[[package]] -name = "gimli" -version = "0.28.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" - [[package]] name = "gimli" version = "0.31.1" @@ -4287,21 +4301,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" dependencies = [ "fallible-iterator 0.3.0", - "indexmap 2.2.6", + "indexmap 2.7.0", "stable_deref_trait", ] [[package]] name = "glob" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" +checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" [[package]] name = "governor" -version = "0.6.0" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "821239e5672ff23e2a7060901fa622950bbd80b649cdaadd78d1c1767ed14eb4" +checksum = "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b" dependencies = [ "cfg-if 1.0.0", "dashmap 5.5.3", @@ -4309,10 +4323,12 @@ dependencies = [ "futures-timer", "no-std-compat", "nonzero_ext", - "parking_lot 0.12.1", - "quanta 0.11.1", + "parking_lot 0.12.3", + "portable-atomic", + "quanta", "rand 0.8.5", "smallvec", + "spinning_top", ] [[package]] @@ -4338,7 +4354,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.12", - "indexmap 2.2.6", + "indexmap 2.7.0", "slab", "tokio", "tokio-util", @@ -4347,17 +4363,17 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.4" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "816ec7294445779408f36fe57bc5b7fc1cf59664059096c65f905c1c61f58069" +checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e" dependencies = [ + "atomic-waker", "bytes", "fnv", "futures-core", "futures-sink", - "futures-util", "http 1.2.0", - "indexmap 2.2.6", + "indexmap 2.7.0", "slab", "tokio", "tokio-util", @@ -4366,9 +4382,19 @@ dependencies = [ [[package]] name = "half" -version = "1.8.2" +version = "1.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b43ede17f21864e81be2fa654110bf1e793774238d86ef8555c37e6519c0403" + +[[package]] +name = "half" +version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" +checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" +dependencies = [ + "cfg-if 1.0.0", + "crunchy", +] [[package]] name = "hashbrown" @@ -4411,9 +4437,9 @@ dependencies = [ [[package]] name = "hdrhistogram" -version = "7.5.2" +version = "7.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8" +checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d" dependencies = [ "byteorder", "num-traits", @@ -4425,7 +4451,7 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" dependencies = [ - "base64 0.21.4", + "base64 0.21.7", "bytes", "headers-core 0.2.0", "http 0.2.12", @@ -4440,7 +4466,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "322106e6bd0cba2d5ead589ddb8150a13d7c4217cf80d7c4f682ca994ccc6aa9" dependencies = [ - "base64 0.21.4", + "base64 0.21.7", "bytes", "headers-core 0.3.0", "http 1.2.0", @@ -4524,7 +4550,7 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5313b072ce3c597065a808dbf612c4c8e8590bdbf8b579508bf7a762c5eae6cd" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", ] [[package]] @@ -4547,41 +4573,41 @@ checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df" [[package]] name = "hickory-proto" -version = "0.24.1" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07698b8420e2f0d6447a436ba999ec85d8fbf2a398bbd737b82cac4a2e96e512" +checksum = "447afdcdb8afb9d0a852af6dc65d9b285ce720ed7a59e42a8bf2e931c67bc1b5" dependencies = [ "async-trait", "bytes", "cfg-if 1.0.0", "data-encoding", - "enum-as-inner 0.6.0", + "enum-as-inner 0.6.1", "futures-channel", "futures-io", "futures-util", "h2 0.3.26", "http 0.2.12", - "idna 0.4.0", + "idna 1.0.3", "ipnet", "once_cell", "rand 0.8.5", "ring 0.16.20", "rustls 0.21.12", - "rustls-pemfile 1.0.3", - "thiserror 1.0.68", + "rustls-pemfile 1.0.4", + "thiserror 1.0.69", "tinyvec", "tokio", "tokio-rustls 0.24.1", "tracing", "url", - "webpki-roots 0.25.2", + "webpki-roots 0.25.4", ] [[package]] name = "hickory-resolver" -version = "0.24.1" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28757f23aa75c98f254cf0405e6d8c25b831b32921b050a66692427679b1f243" +checksum = "0a2e2aba9c389ce5267d31cf1e4dace82390ae276b0b364ea55630b1fa1b44b4" dependencies = [ "cfg-if 1.0.0", "futures-util", @@ -4589,16 +4615,16 @@ dependencies = [ "ipconfig", "lru-cache", "once_cell", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "rand 0.8.5", "resolv-conf", "rustls 0.21.12", "smallvec", - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", "tokio-rustls 0.24.1", "tracing", - "webpki-roots 0.25.2", + "webpki-roots 0.25.4", ] [[package]] @@ -4621,11 +4647,11 @@ dependencies = [ [[package]] name = "home" -version = "0.5.5" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" +checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" dependencies = [ - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] @@ -4711,9 +4737,9 @@ dependencies = [ [[package]] name = "httparse" -version = "1.8.0" +version = "1.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" +checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" [[package]] name = "httpdate" @@ -4748,9 +4774,9 @@ dependencies = [ [[package]] name = "hyper" -version = "0.14.27" +version = "0.14.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" +checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" dependencies = [ "bytes", "futures-channel", @@ -4763,7 +4789,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", - "socket2 0.4.9", + "socket2 0.5.8", "tokio", "tower-service", "tracing", @@ -4772,14 +4798,14 @@ dependencies = [ [[package]] name = "hyper" -version = "1.5.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97818827ef4f364230e16705d4706e2897df2bb60617d6ca15d598025a3c481f" +checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0" dependencies = [ "bytes", "futures-channel", "futures-util", - "h2 0.4.4", + "h2 0.4.7", "http 1.2.0", "http-body 1.0.1", "httparse", @@ -4801,13 +4827,13 @@ dependencies = [ "futures-util", "headers 0.4.0", "http 1.2.0", - "hyper 1.5.1", - "hyper-rustls 0.27.3", + "hyper 1.5.2", + "hyper-rustls 0.27.5", "hyper-util", "pin-project-lite", - "rustls-native-certs 0.7.0", + "rustls-native-certs 0.7.3", "tokio", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.1", "tower-service", ] @@ -4819,7 +4845,7 @@ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", "http 0.2.12", - "hyper 0.14.27", + "hyper 0.14.32", "log", "rustls 0.21.12", "rustls-native-certs 0.6.3", @@ -4829,22 +4855,22 @@ dependencies = [ [[package]] name = "hyper-rustls" -version = "0.27.3" +version = "0.27.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" +checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2" dependencies = [ "futures-util", "http 1.2.0", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-util", "log", - "rustls 0.23.18", - "rustls-native-certs 0.8.0", + "rustls 0.23.21", + "rustls-native-certs 0.8.1", "rustls-pki-types", "tokio", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.1", "tower-service", - "webpki-roots 0.26.1", + "webpki-roots 0.26.7", ] [[package]] @@ -4855,20 +4881,20 @@ checksum = "51c227614c208f7e7c2e040526912604a1a957fe467c9c2f5b06c5d032337dab" dependencies = [ "async-socks5", "http 1.2.0", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-util", - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", "tower-service", ] [[package]] name = "hyper-timeout" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3203a961e5c83b6f5498933e78b6b263e208c197b63e9c6c53cc82ffd3f63793" +checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" dependencies = [ - "hyper 1.5.1", + "hyper 1.5.2", "hyper-util", "pin-project-lite", "tokio", @@ -4886,9 +4912,9 @@ dependencies = [ "futures-util", "http 1.2.0", "http-body 1.0.1", - "hyper 1.5.1", + "hyper 1.5.2", "pin-project-lite", - "socket2 0.5.7", + "socket2 0.5.8", "tokio", "tower-service", "tracing", @@ -4896,16 +4922,16 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.59" +version = "0.1.61" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539" +checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" dependencies = [ "android_system_properties", "core-foundation-sys", "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "windows-core", + "windows-core 0.52.0", ] [[package]] @@ -4949,8 +4975,8 @@ dependencies = [ "pkcs8", "rand 0.8.5", "rangemap", - "reqwest 0.12.9", - "ring 0.17.7", + "reqwest 0.12.12", + "ring 0.17.8", "sec1", "serde", "serde_bytes", @@ -4959,7 +4985,7 @@ dependencies = [ "sha2 0.10.8", "simple_asn1", "stop-token", - "thiserror 2.0.3", + "thiserror 2.0.11", "time", "tokio", "tower-service", @@ -4980,11 +5006,11 @@ dependencies = [ "base64 0.22.1", "bytes", "chacha20poly1305", - "clap 4.5.20", - "clap_derive 4.5.18", + "clap 4.5.26", + "clap_derive 4.5.24", "cloudflare 0.12.0 (git+https://github.com/cloudflare/cloudflare-rs.git?rev=f14720e42184ee176a97676e85ef2d2d85bc3aae)", "derive-new", - "fqdn 0.4.1", + "fqdn 0.4.4", "futures", "futures-util", "hickory-proto", @@ -4993,18 +5019,18 @@ dependencies = [ "http-body 1.0.1", "http-body-util", "humantime", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-util", "instant-acme", "moka", "parse-size", "prometheus", - "prost 0.13.3", - "prost-types 0.13.3", + "prost 0.13.4", + "prost-types 0.13.4", "rand 0.8.5", "rcgen", - "reqwest 0.12.9", - "rustls 0.23.18", + "reqwest 0.12.12", + "rustls 0.23.21", "rustls-acme", "rustls-pemfile 2.2.0", "rustls-platform-verifier", @@ -5012,15 +5038,15 @@ dependencies = [ "serde", "serde_json", "sha1", - "strum 0.26.3", - "strum_macros 0.26.4", + "strum", + "strum_macros", "systemstat", - "thiserror 2.0.3", + "thiserror 2.0.11", "tokio", "tokio-io-timeout", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.1", "tokio-util", - "tower 0.5.1", + "tower 0.5.2", "tower-service", "tracing", "url", @@ -5058,7 +5084,7 @@ source = "git+https://github.com/dfinity/ic-canister-sig-creation?rev=7f9e931954 dependencies = [ "candid", "hex", - "ic-cdk 0.17.0", + "ic-cdk 0.17.1", "ic-certification 3.0.2", "ic-representation-independent-hash", "lazy_static", @@ -5066,7 +5092,7 @@ dependencies = [ "serde_bytes", "serde_cbor", "sha2 0.10.8", - "thiserror 2.0.3", + "thiserror 2.0.11", ] [[package]] @@ -5079,7 +5105,7 @@ dependencies = [ "ic-certification 3.0.2", "leb128", "nom", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -5110,12 +5136,12 @@ dependencies = [ [[package]] name = "ic-cdk" -version = "0.17.0" +version = "0.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2abdf9341da9f9f6b451a40609cb69645a05a8e9eb7784c16209f16f2c0f76f" +checksum = "122efbcb0af5280d408a75a57b7dc6e9d92893bf6ed9cc98fe4dcff51f18b67c" dependencies = [ "candid", - "ic-cdk-macros 0.17.0", + "ic-cdk-macros 0.17.1", "ic0 0.23.0", "serde", "serde_bytes", @@ -5159,22 +5185,22 @@ dependencies = [ "proc-macro2", "quote", "serde", - "serde_tokenstream 0.2.1", - "syn 2.0.87", + "serde_tokenstream 0.2.2", + "syn 2.0.96", ] [[package]] name = "ic-cdk-macros" -version = "0.17.0" +version = "0.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8df41980e95dead28735ab0f748c75477b0c5eab37a09a5641c78ec406a1db0" +checksum = "c792bf0d1621c893ccf2bcdeac4ee70121103a03030a1827031a6b3c60488944" dependencies = [ "candid", "proc-macro2", "quote", "serde", - "serde_tokenstream 0.2.1", - "syn 2.0.87", + "serde_tokenstream 0.2.2", + "syn 2.0.96", ] [[package]] @@ -5184,7 +5210,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb8fd812a9e26f6aa00594546f8fbf4d4853f39c3ba794c8ff11ecf86fd3c9e4" dependencies = [ "futures", - "ic-cdk 0.17.0", + "ic-cdk 0.17.1", "ic0 0.23.0", "serde", "serde_bytes", @@ -5205,9 +5231,9 @@ dependencies = [ "leb128", "miracl_core_bls12381", "nom", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "sha2 0.10.8", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -5258,7 +5284,7 @@ dependencies = [ "ic-representation-independent-hash", "serde", "serde_cbor", - "thiserror 1.0.68", + "thiserror 1.0.69", "urlencoding", ] @@ -5278,7 +5304,7 @@ dependencies = [ "ic-http-certification", "ic-response-verification", "ic-utils", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -5317,7 +5343,7 @@ dependencies = [ "log", "nom", "sha2 0.10.8", - "thiserror 1.0.68", + "thiserror 1.0.69", "urlencoding", ] @@ -5332,9 +5358,9 @@ dependencies = [ [[package]] name = "ic-stable-structures" -version = "0.6.5" +version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03f3044466a69802de74e710dc0300b706a05696a0531c942ca856751a13b0db" +checksum = "b492c5a16455ae78623eaa12ead96dda6c69a83c535b1b00789f19b381c8a24c" dependencies = [ "ic_principal", ] @@ -5365,7 +5391,7 @@ dependencies = [ "serde_bytes", "serde_repr", "sha2 0.10.8", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -5383,7 +5409,7 @@ dependencies = [ "serde_cbor", "serde_repr", "sha2 0.10.8", - "thiserror 2.0.3", + "thiserror 2.0.11", ] [[package]] @@ -5401,9 +5427,9 @@ dependencies = [ "serde", "serde_bytes", "sha2 0.10.8", - "strum 0.26.3", - "strum_macros 0.26.4", - "thiserror 2.0.3", + "strum", + "strum_macros", + "thiserror 2.0.11", "time", "tokio", ] @@ -5437,18 +5463,18 @@ dependencies = [ [[package]] name = "ic-wasm" -version = "0.8.4" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45bc33855672981ae4a2f4e77c1a77d1bdc0756fb1b36ad0dbe47df77a955e2d" +checksum = "19fabaeecfe37f24b433c62489242fc54503d98d4cc8d0f9ef7544dfdfc0ddcb" dependencies = [ "anyhow", "candid", - "clap 4.5.20", + "clap 4.5.26", "libflate", "rustc-demangle", "serde", "serde_json", - "thiserror 1.0.68", + "thiserror 1.0.69", "walrus", ] @@ -5506,7 +5532,7 @@ dependencies = [ "data-encoding", "serde", "sha2 0.10.8", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -5518,7 +5544,7 @@ dependencies = [ "async-trait", "candid", "serde", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -5647,7 +5673,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -5673,26 +5699,6 @@ dependencies = [ "unicode-normalization", ] -[[package]] -name = "idna" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" -dependencies = [ - "unicode-bidi", - "unicode-normalization", -] - -[[package]] -name = "idna" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" -dependencies = [ - "unicode-bidi", - "unicode-normalization", -] - [[package]] name = "idna" version = "1.0.3" @@ -5725,9 +5731,9 @@ dependencies = [ [[package]] name = "impl-more" -version = "0.1.6" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "206ca75c9c03ba3d4ace2460e57b189f39f43de612c2f85836e65c929701bb2d" +checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" [[package]] name = "impl-rlp" @@ -5749,13 +5755,13 @@ dependencies = [ [[package]] name = "impl-trait-for-tuples" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11d7a9f6330b71fea57921c9b61c47ee6e84f72d394754eff6163ae67e7395eb" +checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.96", ] [[package]] @@ -5770,33 +5776,33 @@ version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", "hashbrown 0.12.3", "serde", ] [[package]] name = "indexmap" -version = "2.2.6" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" +checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f" dependencies = [ "equivalent", - "hashbrown 0.14.5", + "hashbrown 0.15.2", "serde", ] [[package]] name = "indicatif" -version = "0.17.7" +version = "0.17.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25" +checksum = "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281" dependencies = [ - "console 0.15.7", - "instant", + "console 0.15.10", "number_prefix", "portable-atomic", - "unicode-width", + "unicode-width 0.2.0", + "web-time", ] [[package]] @@ -5807,12 +5813,12 @@ checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" [[package]] name = "inferno" -version = "0.11.19" +version = "0.11.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "321f0f839cd44a4686e9504b0a62b4d69a50b62072144c71c68f5873c167b8d9" +checksum = "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88" dependencies = [ "ahash 0.8.11", - "indexmap 2.2.6", + "indexmap 2.7.0", "is-terminal", "itoa", "log", @@ -5825,22 +5831,22 @@ dependencies = [ [[package]] name = "inferno" -version = "0.12.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75a5d75fee4d36809e6b021e4b96b686e763d365ffdb03af2bd00786353f84fe" +checksum = "692eda1cc790750b9f5a5e3921ef9c117fd5498b97cfacbc910693e5b29002dc" dependencies = [ "ahash 0.8.11", - "clap 4.5.20", + "clap 4.5.26", "crossbeam-channel", "crossbeam-utils", "dashmap 6.1.0", - "env_logger 0.11.2", - "indexmap 2.2.6", + "env_logger 0.11.6", + "indexmap 2.7.0", "itoa", "log", "num-format", "once_cell", - "quick-xml 0.37.1", + "quick-xml 0.37.2", "rgb", "str_stack", ] @@ -5856,22 +5862,21 @@ dependencies = [ [[package]] name = "insta" -version = "1.34.0" +version = "1.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d64600be34b2fcfc267740a243fa7744441bb4947a619ac4e5bb6507f35fbfc" +checksum = "6513e4067e16e69ed1db5ab56048ed65db32d10ba5fc1217f5393f8f17d8b5a5" dependencies = [ - "console 0.15.7", - "lazy_static", + "console 0.15.10", "linked-hash-map", + "once_cell", "similar", - "yaml-rust", ] [[package]] name = "instant" -version = "0.1.12" +version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" +checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" dependencies = [ "cfg-if 1.0.0", ] @@ -5888,14 +5893,14 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.1", - "hyper-rustls 0.27.3", + "hyper 1.5.2", + "hyper-rustls 0.27.5", "hyper-util", - "ring 0.17.7", + "ring 0.17.8", "rustls-pki-types", "serde", "serde_json", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -5913,7 +5918,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" dependencies = [ - "socket2 0.5.7", + "socket2 0.5.8", "widestring", "windows-sys 0.48.0", "winreg", @@ -5939,13 +5944,13 @@ dependencies = [ [[package]] name = "is-terminal" -version = "0.4.9" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" +checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" dependencies = [ - "hermit-abi 0.3.9", - "rustix", - "windows-sys 0.48.0", + "hermit-abi 0.4.0", + "libc", + "windows-sys 0.52.0", ] [[package]] @@ -5961,7 +5966,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ea1dc4bf0fb4904ba83ffdb98af3d9c325274e92e6e295e4151e86c96363e04" dependencies = [ "serde", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -5984,18 +5989,27 @@ dependencies = [ [[package]] name = "itertools" -version = "0.12.0" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +dependencies = [ + "either", +] + +[[package]] +name = "itertools" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" dependencies = [ "either", ] [[package]] name = "itoa" -version = "1.0.9" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" +checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" [[package]] name = "jni" @@ -6007,7 +6021,7 @@ dependencies = [ "combine", "jni-sys", "log", - "thiserror 1.0.68", + "thiserror 1.0.69", "walkdir", ] @@ -6019,19 +6033,20 @@ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" [[package]] name = "jobserver" -version = "0.1.27" +version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" +checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" dependencies = [ "libc", ] [[package]] name = "js-sys" -version = "0.3.64" +version = "0.3.77" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" +checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" dependencies = [ + "once_cell", "wasm-bindgen", ] @@ -6069,7 +6084,7 @@ dependencies = [ "pest_derive", "regex", "serde_json", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -6122,9 +6137,9 @@ dependencies = [ [[package]] name = "keccak" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940" +checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" dependencies = [ "cpufeatures", ] @@ -6155,22 +6170,22 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-http-proxy", - "hyper-rustls 0.27.3", + "hyper-rustls 0.27.5", "hyper-timeout", "hyper-util", "jsonpath-rust", "k8s-openapi", "kube-core", "pem 3.0.4", - "rustls 0.23.18", + "rustls 0.23.21", "rustls-pemfile 2.2.0", "secrecy", "serde", "serde_json", "serde_yaml 0.9.34+deprecated", - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", "tokio-util", "tower 0.4.13", @@ -6190,7 +6205,7 @@ dependencies = [ "k8s-openapi", "serde", "serde_json", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -6200,7 +6215,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0a1cbf952127589f2851ab2046af368fd20645491bb4b376f04b7f94d7a9837b" dependencies = [ "ascii-canvas", - "bit-set", + "bit-set 0.5.3", "diff", "ena", "is-terminal", @@ -6217,25 +6232,24 @@ dependencies = [ [[package]] name = "lalrpop" -version = "0.20.0" +version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da4081d44f4611b66c6dd725e6de3169f9f63905421e8626fcb86b6a898998b8" +checksum = "55cb077ad656299f160924eb2912aa147d7339ea7d69e1b5517326fdcec3c1ca" dependencies = [ "ascii-canvas", - "bit-set", - "diff", + "bit-set 0.5.3", "ena", - "is-terminal", - "itertools 0.10.5", - "lalrpop-util 0.20.0", + "itertools 0.11.0", + "lalrpop-util 0.20.2", "petgraph", "pico-args", "regex", - "regex-syntax 0.7.5", + "regex-syntax 0.8.5", "string_cache", "term 0.7.0", "tiny-keccak", "unicode-xid", + "walkdir", ] [[package]] @@ -6249,11 +6263,11 @@ dependencies = [ [[package]] name = "lalrpop-util" -version = "0.20.0" +version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f35c735096c0293d313e8f2a641627472b83d01b937177fe76e5e2708d31e0d" +checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553" dependencies = [ - "regex", + "regex-automata 0.4.9", ] [[package]] @@ -6264,11 +6278,11 @@ checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" [[package]] name = "lazy_static" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" dependencies = [ - "spin 0.5.2", + "spin 0.9.8", ] [[package]] @@ -6349,9 +6363,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.158" +version = "0.2.169" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" +checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" [[package]] name = "libflate" @@ -6379,30 +6393,29 @@ dependencies = [ [[package]] name = "libfuzzer-sys" -version = "0.4.7" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7" +checksum = "9b9569d2f74e257076d8c6bfa73fb505b46b851e51ddaecc825944aa3bed17fa" dependencies = [ "arbitrary", "cc", - "once_cell", ] [[package]] name = "libloading" -version = "0.7.4" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" +checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" dependencies = [ "cfg-if 1.0.0", - "winapi 0.3.9", + "windows-targets 0.52.6", ] [[package]] name = "libm" -version = "0.2.8" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" +checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa" [[package]] name = "libnss" @@ -6415,13 +6428,24 @@ dependencies = [ "paste", ] +[[package]] +name = "libredox" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" +dependencies = [ + "bitflags 2.8.0", + "libc", + "redox_syscall 0.5.8", +] + [[package]] name = "librocksdb-sys" version = "0.16.0+8.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ce3d60bc059831dc1c83903fb45c103f75db65c5a7bf22272764d9cc683e348c" dependencies = [ - "bindgen 0.69.4", + "bindgen 0.69.5", "bzip2-sys", "cc", "glob", @@ -6456,9 +6480,9 @@ dependencies = [ [[package]] name = "libusb1-sys" -version = "0.6.4" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9d0e2afce4245f2c9a418511e5af8718bcaf2fa408aefb259504d1a9cb25f27" +checksum = "da050ade7ac4ff1ba5379af847a10a10a8e284181e060105bf8d86960ce9ce0f" dependencies = [ "cc", "libc", @@ -6468,9 +6492,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.12" +version = "1.1.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b" +checksum = "df9b68e50e6e0b26f672573834882eb57759f6db9b3be2ea3c35c91188bb4eaa" dependencies = [ "cc", "libc", @@ -6486,15 +6510,15 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linux-raw-sys" -version = "0.4.13" +version = "0.4.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" +checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" [[package]] name = "litemap" -version = "0.7.3" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" +checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" [[package]] name = "little-loadshedder" @@ -6529,9 +6553,9 @@ dependencies = [ [[package]] name = "local-channel" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0a493488de5f18c8ffcba89eebb8532ffc562dc400490eb65b84893fae0b178" +checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" dependencies = [ "futures-core", "futures-sink", @@ -6540,37 +6564,37 @@ dependencies = [ [[package]] name = "local-ip-address" -version = "0.5.6" +version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66357e687a569abca487dc399a9c9ac19beb3f13991ed49f00c144e02cbd42ab" +checksum = "612ed4ea9ce5acfb5d26339302528a5e1e59dfed95e9e11af3c083236ff1d15d" dependencies = [ "libc", "neli", - "thiserror 1.0.68", + "thiserror 1.0.69", "windows-sys 0.48.0", ] [[package]] name = "local-waker" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1" +checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" [[package]] name = "lock_api" -version = "0.4.10" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" +checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", "scopeguard", ] [[package]] name = "log" -version = "0.4.20" +version = "0.4.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" +checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f" [[package]] name = "logos" @@ -6601,7 +6625,7 @@ dependencies = [ "proc-macro2", "quote", "regex-syntax 0.6.29", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -6627,6 +6651,19 @@ dependencies = [ "logos-codegen", ] +[[package]] +name = "loom" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" +dependencies = [ + "cfg-if 1.0.0", + "generator", + "scoped-tls", + "tracing", + "tracing-subscriber", +] + [[package]] name = "lru" version = "0.7.8" @@ -6746,9 +6783,9 @@ dependencies = [ [[package]] name = "memchr" -version = "2.6.4" +version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "memfd" @@ -6761,9 +6798,9 @@ dependencies = [ [[package]] name = "memmap2" -version = "0.5.10" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" +checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" dependencies = [ "libc", ] @@ -6774,16 +6811,16 @@ version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", ] [[package]] name = "memoffset" -version = "0.9.0" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" +checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", ] [[package]] @@ -6811,14 +6848,14 @@ source = "git+https://github.com/dfinity/metrics-proxy.git?rev=b6933ed79ac07baee dependencies = [ "axum", "axum-otel-metrics", - "clap 4.5.20", + "clap 4.5.26", "duration-string", "exitcode", "futures-util", "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-rustls 0.24.2", "hyper-util", "itertools 0.11.0", @@ -6833,7 +6870,7 @@ dependencies = [ "regex", "reqwest 0.11.27", "rustls 0.21.12", - "rustls-pemfile 1.0.3", + "rustls-pemfile 1.0.4", "serde", "serde_yaml 0.8.26", "simple_logger", @@ -6852,9 +6889,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] name = "mime_guess" -version = "2.0.4" +version = "2.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" +checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" dependencies = [ "mime", "unicase", @@ -6888,18 +6925,18 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.7.1" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" +checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924" dependencies = [ - "adler", + "adler2", ] [[package]] name = "mio" -version = "0.8.10" +version = "0.8.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" +checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" dependencies = [ "libc", "log", @@ -6909,12 +6946,12 @@ dependencies = [ [[package]] name = "mio" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" +checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" dependencies = [ - "hermit-abi 0.3.9", "libc", + "log", "wasi", "windows-sys 0.52.0", ] @@ -6927,9 +6964,9 @@ checksum = "d07cbe42e2a8dd41df582fb8e00fc24d920b5561cc301fcb6d14e2e0434b500f" [[package]] name = "mockall" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4c28b3fb6d753d28c20e826cd46ee611fda1cf3cde03a443a974043247c065a" +checksum = "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2" dependencies = [ "cfg-if 1.0.0", "downcast", @@ -6941,26 +6978,31 @@ dependencies = [ [[package]] name = "mockall_derive" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "341014e7f530314e9a1fdbc7400b244efea7122662c96bfa248c31da5bfb2020" +checksum = "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898" dependencies = [ "cfg-if 1.0.0", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "mockito" -version = "1.2.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8d3038e23466858569c2d30a537f691fa0d53b51626630ae08262943e3bbb8b" +checksum = "652cd6d169a36eaf9d1e6bce1a221130439a966d7f27858af66a33a66e9c4ee2" dependencies = [ "assert-json-diff", + "bytes", "colored", - "futures", - "hyper 0.14.27", + "futures-util", + "http 1.2.0", + "http-body 1.0.1", + "http-body-util", + "hyper 1.5.2", + "hyper-util", "log", "rand 0.8.5", "regex", @@ -6972,25 +7014,23 @@ dependencies = [ [[package]] name = "moka" -version = "0.12.8" +version = "0.12.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32cf62eb4dd975d2dde76432fb1075c49e3ee2331cf36f1f8fd4b66550d32b6f" +checksum = "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" dependencies = [ "async-lock", - "async-trait", "crossbeam-channel", "crossbeam-epoch", "crossbeam-utils", - "event-listener 5.3.1", + "event-listener 5.4.0", "futures-util", - "once_cell", - "parking_lot 0.12.1", - "quanta 0.12.3", + "loom", + "parking_lot 0.12.3", + "portable-atomic", "rustc_version", "smallvec", "tagptr", - "thiserror 1.0.68", - "triomphe", + "thiserror 1.0.69", "uuid", ] @@ -7037,15 +7077,15 @@ dependencies = [ [[package]] name = "multimap" -version = "0.8.3" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" +checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" [[package]] name = "neli" -version = "0.6.4" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1100229e06604150b3becd61a4965d5c70f3be1759544ea7274166f4be41ef43" +checksum = "93062a0dce6da2517ea35f301dfc88184ce18d3601ec786a727a87bf535deca9" dependencies = [ "byteorder", "libc", @@ -7055,9 +7095,9 @@ dependencies = [ [[package]] name = "neli-proc-macros" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c168194d373b1e134786274020dae7fc5513d565ea2ebb9bc9ff17ffb69106d4" +checksum = "0c8034b7fbb6f9455b2a96c19e6edf8dc9fc34c70449938d8ee3b4df363f61fe" dependencies = [ "either", "proc-macro2", @@ -7068,9 +7108,9 @@ dependencies = [ [[package]] name = "new_debug_unreachable" -version = "1.0.4" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" +checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" [[package]] name = "nftables" @@ -7081,9 +7121,9 @@ dependencies = [ "serde", "serde_json", "serde_path_to_error", - "strum 0.26.3", - "strum_macros 0.26.4", - "thiserror 1.0.68", + "strum", + "strum_macros", + "thiserror 1.0.69", ] [[package]] @@ -7115,10 +7155,10 @@ version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "cfg-if 1.0.0", "libc", - "memoffset 0.9.0", + "memoffset 0.9.1", ] [[package]] @@ -7127,7 +7167,7 @@ version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "cfg-if 1.0.0", "cfg_aliases", "libc", @@ -7183,7 +7223,7 @@ version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", "num-integer", "num-traits", ] @@ -7229,7 +7269,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", "itoa", ] @@ -7244,11 +7284,11 @@ dependencies = [ [[package]] name = "num-iter" -version = "0.1.43" +version = "0.1.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" +checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", "num-integer", "num-traits", ] @@ -7259,7 +7299,7 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", "num-bigint 0.2.6", "num-integer", "num-traits", @@ -7271,7 +7311,7 @@ version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", "libm", ] @@ -7287,30 +7327,30 @@ dependencies = [ [[package]] name = "num_enum" -version = "0.7.0" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70bf6736f74634d299d00086f02986875b3c2d924781a6a2cb6c201e73da0ceb" +checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" dependencies = [ "num_enum_derive", ] [[package]] name = "num_enum_derive" -version = "0.7.0" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56ea360eafe1022f7cc56cd7b869ed57330fb2453d0c7831d99b74c65d2f5597" +checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" dependencies = [ - "proc-macro-crate 1.3.1", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "num_threads" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" +checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" dependencies = [ "libc", ] @@ -7321,15 +7361,6 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" -[[package]] -name = "object" -version = "0.32.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" -dependencies = [ - "memchr", -] - [[package]] name = "object" version = "0.36.7" @@ -7338,36 +7369,36 @@ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" dependencies = [ "crc32fast", "hashbrown 0.15.2", - "indexmap 2.2.6", + "indexmap 2.7.0", "memchr", ] [[package]] name = "oid-registry" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d" +checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9" dependencies = [ "asn1-rs", ] [[package]] name = "once_cell" -version = "1.19.0" +version = "1.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" +checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" [[package]] name = "oorandom" -version = "11.1.3" +version = "11.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" +checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9" [[package]] name = "opaque-debug" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" +checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" [[package]] name = "open-fastrlp" @@ -7375,7 +7406,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "786393f80485445794f6043fd3138854dd109cc6c4bd1a6383db304c9ce9b9ce" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", "auto_impl", "bytes", "ethereum-types", @@ -7404,7 +7435,7 @@ dependencies = [ "byteorder", "md-5", "sha2 0.9.9", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -7415,9 +7446,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.102" +version = "0.9.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" +checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" dependencies = [ "cc", "libc", @@ -7453,26 +7484,26 @@ checksum = "1e32339a5dc40459130b3bd269e9892439f55b33e772d2a9d402a789baaf4e8a" dependencies = [ "futures-core", "futures-sink", - "indexmap 2.2.6", + "indexmap 2.7.0", "js-sys", "once_cell", "pin-project-lite", - "thiserror 1.0.68", + "thiserror 1.0.69", "urlencoding", ] [[package]] name = "opentelemetry" -version = "0.27.0" +version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f3cebff57f7dbd1255b44d8bddc2cebeb0ea677dbaa2e25a3070a91b318f660" +checksum = "ab70038c28ed37b97d8ed414b6429d343a8bbf44c9f79ec854f3a643029ba6d7" dependencies = [ "futures-core", "futures-sink", "js-sys", - "once_cell", "pin-project-lite", - "thiserror 1.0.68", + "thiserror 1.0.69", + "tracing", ] [[package]] @@ -7484,11 +7515,11 @@ dependencies = [ "async-trait", "futures-core", "http 1.2.0", - "opentelemetry 0.27.0", + "opentelemetry 0.27.1", "opentelemetry-proto", "opentelemetry_sdk 0.27.1", - "prost 0.13.3", - "thiserror 1.0.68", + "prost 0.13.4", + "thiserror 1.0.69", "tokio", "tonic", "tracing", @@ -7526,9 +7557,9 @@ version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6e05acbfada5ec79023c85368af14abd0b307c015e9064d249b2a950ef459a6" dependencies = [ - "opentelemetry 0.27.0", + "opentelemetry 0.27.1", "opentelemetry_sdk 0.27.1", - "prost 0.13.3", + "prost 0.13.4", "tonic", ] @@ -7553,7 +7584,7 @@ dependencies = [ "js-sys", "once_cell", "pin-project-lite", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -7568,7 +7599,7 @@ dependencies = [ "js-sys", "once_cell", "pin-project-lite", - "thiserror 1.0.68", + "thiserror 1.0.69", "urlencoding", ] @@ -7587,7 +7618,7 @@ dependencies = [ "opentelemetry_api 0.18.0", "percent-encoding", "rand 0.8.5", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -7607,7 +7638,7 @@ dependencies = [ "percent-encoding", "rand 0.8.5", "regex", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -7624,10 +7655,10 @@ dependencies = [ "glob", "once_cell", "opentelemetry 0.21.0", - "ordered-float 4.2.0", + "ordered-float 4.6.0", "percent-encoding", "rand 0.8.5", - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", "tokio-stream", ] @@ -7643,11 +7674,11 @@ dependencies = [ "futures-executor", "futures-util", "glob", - "opentelemetry 0.27.0", + "opentelemetry 0.27.1", "percent-encoding", "rand 0.8.5", "serde_json", - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", "tokio-stream", "tracing", @@ -7673,9 +7704,9 @@ dependencies = [ [[package]] name = "ordered-float" -version = "4.2.0" +version = "4.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e" +checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951" dependencies = [ "num-traits", ] @@ -7715,11 +7746,11 @@ dependencies = [ [[package]] name = "parity-scale-codec" -version = "3.6.4" +version = "3.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd8e946cc0cc711189c0b0249fb8b599cbeeab9784d83c415719368bb8d4ac64" +checksum = "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", "bitvec", "byte-slice-cast", "impl-trait-for-tuples", @@ -7729,11 +7760,11 @@ dependencies = [ [[package]] name = "parity-scale-codec-derive" -version = "3.6.5" +version = "3.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "312270ee71e1cd70289dacf597cab7b207aa107d2f28191c2ae45b2ece18a260" +checksum = "d830939c76d294956402033aee57a6da7b438f2294eb94864c37b0569053a42c" dependencies = [ - "proc-macro-crate 1.3.1", + "proc-macro-crate", "proc-macro2", "quote", "syn 1.0.109", @@ -7741,9 +7772,9 @@ dependencies = [ [[package]] name = "parking" -version = "2.1.1" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e52c774a4c39359c1d1c52e43f73dd91a75a614652c825408eec30c95a9b2067" +checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" [[package]] name = "parking_lot" @@ -7758,12 +7789,12 @@ dependencies = [ [[package]] name = "parking_lot" -version = "0.12.1" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" +checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" dependencies = [ "lock_api", - "parking_lot_core 0.9.8", + "parking_lot_core 0.9.10", ] [[package]] @@ -7782,15 +7813,15 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.8" +version = "0.9.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" +checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" dependencies = [ "cfg-if 1.0.0", "libc", - "redox_syscall 0.3.5", + "redox_syscall 0.5.8", "smallvec", - "windows-targets 0.48.5", + "windows-targets 0.52.6", ] [[package]] @@ -7817,9 +7848,9 @@ dependencies = [ [[package]] name = "pcre2" -version = "0.2.6" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c9d53a8ea5fc3d3568d3de4bebc12606fd0eb8234c602576f1f1ee4880488a7" +checksum = "3be55c43ac18044541d58d897e8f4c55157218428953ebd39d86df3ba0286b2b" dependencies = [ "libc", "log", @@ -7828,9 +7859,9 @@ dependencies = [ [[package]] name = "pcre2-sys" -version = "0.2.8" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25b8a7b5253a4465b873a21ee7e8d6ec561a57eed5d319621bec36bea35c86ae" +checksum = "550f5d18fb1b90c20b87e161852c10cde77858c3900c5059b5ad2a1449f11d8a" dependencies = [ "cc", "libc", @@ -7879,20 +7910,20 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "pest" -version = "2.7.4" +version = "2.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c022f1e7b65d6a24c0dbbd5fb344c66881bc01f3e5ae74a1c8100f2f985d98a4" +checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc" dependencies = [ "memchr", - "thiserror 1.0.68", + "thiserror 2.0.11", "ucd-trie", ] [[package]] name = "pest_derive" -version = "2.7.4" +version = "2.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35513f630d46400a977c4cb58f78e1bfbe01434316e60c37d27b9ad6139c66d8" +checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e" dependencies = [ "pest", "pest_generator", @@ -7900,22 +7931,22 @@ dependencies = [ [[package]] name = "pest_generator" -version = "2.7.4" +version = "2.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc9fc1b9e7057baba189b5c626e2d6f40681ae5b6eb064dc7c7834101ec8123a" +checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b" dependencies = [ "pest", "pest_meta", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "pest_meta" -version = "2.7.4" +version = "2.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1df74e9e7ec4053ceb980e7c0c8bd3594e977fde1af91daba9c928e8e8c6708d" +checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea" dependencies = [ "once_cell", "pest", @@ -7924,9 +7955,9 @@ dependencies = [ [[package]] name = "pest_vm" -version = "2.7.4" +version = "2.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e42d84ab5b383273ab842bdc50249b5fea1cec928bcf3338e7749113f25bab7a" +checksum = "a8151168a80801131f6e0e79d6c84fa337ccd2493c99e59de027354c3e6fca0b" dependencies = [ "pest", "pest_meta", @@ -7934,12 +7965,12 @@ dependencies = [ [[package]] name = "petgraph" -version = "0.6.4" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" +checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" dependencies = [ "fixedbitset", - "indexmap 2.2.6", + "indexmap 2.7.0", ] [[package]] @@ -7953,12 +7984,12 @@ dependencies = [ [[package]] name = "phf" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" +checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" dependencies = [ "phf_macros", - "phf_shared 0.11.2", + "phf_shared 0.11.3", ] [[package]] @@ -7983,25 +8014,25 @@ dependencies = [ [[package]] name = "phf_generator" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" +checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" dependencies = [ - "phf_shared 0.11.2", + "phf_shared 0.11.3", "rand 0.8.5", ] [[package]] name = "phf_macros" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" +checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" dependencies = [ - "phf_generator 0.11.2", - "phf_shared 0.11.2", + "phf_generator 0.11.3", + "phf_shared 0.11.3", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -8010,16 +8041,16 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" dependencies = [ - "siphasher", + "siphasher 0.3.11", ] [[package]] name = "phf_shared" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" +checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" dependencies = [ - "siphasher", + "siphasher 1.0.1", ] [[package]] @@ -8030,29 +8061,29 @@ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" [[package]] name = "pin-project" -version = "1.1.3" +version = "1.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" +checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.3" +version = "1.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" +checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "pin-project-lite" -version = "0.2.13" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" +checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" [[package]] name = "pin-utils" @@ -8062,13 +8093,13 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "ping" -version = "0.5.0" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "985c8af0584bf35ecfb95a65b74a457782966e1ab8f2c94c01697a36432a5814" +checksum = "122ee1f5a6843bec84fcbd5c6ba3622115337a6b8965b93a61aad347648f4e8d" dependencies = [ "rand 0.8.5", - "socket2 0.4.9", - "thiserror 1.0.68", + "socket2 0.4.10", + "thiserror 1.0.69", ] [[package]] @@ -8078,7 +8109,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" dependencies = [ "atomic-waker", - "fastrand 2.2.0", + "fastrand", "futures-io", ] @@ -8105,15 +8136,15 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.27" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" +checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" [[package]] name = "plotters" -version = "0.3.5" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" +checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747" dependencies = [ "num-traits", "plotters-backend", @@ -8124,15 +8155,15 @@ dependencies = [ [[package]] name = "plotters-backend" -version = "0.3.5" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" +checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a" [[package]] name = "plotters-svg" -version = "0.3.5" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" +checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670" dependencies = [ "plotters-backend", ] @@ -8148,7 +8179,7 @@ dependencies = [ "hex", "ic-certification 2.6.0", "ic-transport-types 0.37.1", - "reqwest 0.12.9", + "reqwest 0.12.12", "schemars", "serde", "serde_bytes", @@ -8156,9 +8187,9 @@ dependencies = [ "serde_json", "sha2 0.10.8", "slog", - "strum 0.26.3", - "strum_macros 0.26.4", - "thiserror 1.0.68", + "strum", + "strum_macros", + "thiserror 1.0.69", "tokio", "tracing", "tracing-appender", @@ -8168,9 +8199,9 @@ dependencies = [ [[package]] name = "polling" -version = "3.7.3" +version = "3.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" +checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f" dependencies = [ "cfg-if 1.0.0", "concurrent-queue", @@ -8194,18 +8225,19 @@ dependencies = [ [[package]] name = "portable-atomic" -version = "1.4.3" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31114a898e107c51bb1609ffaf55a0e011cf6a4d7f1170d0015a165082c0338b" +checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6" [[package]] name = "postcard" -version = "1.0.8" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8" +checksum = "170a2601f67cc9dba8edd8c4870b15f71a6a2dc196daec8c83f72b59dff628a8" dependencies = [ "cobs", - "embedded-io", + "embedded-io 0.4.0", + "embedded-io 0.6.1", "serde", ] @@ -8226,27 +8258,30 @@ dependencies = [ "cfg-if 1.0.0", "criterion", "findshlibs", - "inferno 0.11.19", + "inferno 0.11.21", "libc", "log", "nix 0.26.4", "once_cell", - "parking_lot 0.12.1", - "prost 0.12.2", - "prost-build 0.12.2", - "prost-derive 0.12.2", + "parking_lot 0.12.3", + "prost 0.12.6", + "prost-build 0.12.6", + "prost-derive 0.12.6", "sha2 0.10.8", "smallvec", "symbolic-demangle", "tempfile", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] name = "ppv-lite86" -version = "0.2.17" +version = "0.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" +checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" +dependencies = [ + "zerocopy", +] [[package]] name = "precomputed-hash" @@ -8256,9 +8291,9 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" [[package]] name = "predicates" -version = "3.1.2" +version = "3.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97" +checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573" dependencies = [ "anstyle", "difflib", @@ -8270,15 +8305,15 @@ dependencies = [ [[package]] name = "predicates-core" -version = "1.0.6" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" +checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" [[package]] name = "predicates-tree" -version = "1.0.9" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" +checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" dependencies = [ "predicates-core", "termtree", @@ -8304,7 +8339,7 @@ checksum = "b55c4d17d994b637e2f4daf6e5dc5d660d209d5642377d675d7a1c3ab69fa579" dependencies = [ "arrayvec 0.5.2", "typed-arena", - "unicode-width", + "unicode-width 0.1.14", ] [[package]] @@ -8319,29 +8354,29 @@ dependencies = [ [[package]] name = "pretty_assertions" -version = "1.4.0" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" +checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" dependencies = [ "diff", - "yansi", + "yansi 1.0.1", ] [[package]] name = "prettyplease" -version = "0.2.15" +version = "0.2.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" +checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac" dependencies = [ "proc-macro2", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "primeorder" -version = "0.13.2" +version = "0.13.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c2fcef82c0ec6eefcc179b978446c399b3cdf73c392c35604e399eee6df1ee3" +checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" dependencies = [ "elliptic-curve", ] @@ -8362,32 +8397,22 @@ dependencies = [ [[package]] name = "priority-queue" -version = "1.3.2" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fff39edfcaec0d64e8d0da38564fad195d2d51b680940295fcc307366e101e61" +checksum = "a0bda9164fe05bc9225752d54aae413343c36f684380005398a6a8fde95fe785" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", "indexmap 1.9.3", "serde", ] -[[package]] -name = "proc-macro-crate" -version = "1.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" -dependencies = [ - "once_cell", - "toml_edit 0.19.15", -] - [[package]] name = "proc-macro-crate" version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" dependencies = [ - "toml_edit 0.22.20", + "toml_edit", ] [[package]] @@ -8422,9 +8447,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "1.0.89" +version = "1.0.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" +checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" dependencies = [ "unicode-ident", ] @@ -8449,7 +8474,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "hex", "lazy_static", "procfs-core", @@ -8462,7 +8487,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "hex", ] @@ -8477,33 +8502,33 @@ dependencies = [ "lazy_static", "libc", "memchr", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "procfs 0.16.0", "protobuf", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] name = "prometheus-parse" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c2aa5feb83bf4b2c8919eaf563f51dbab41183de73ba2353c0e03cd7b6bd892" +checksum = "811031bea65e5a401fb2e1f37d802cca6601e204ac463809a3189352d13b78a5" dependencies = [ "chrono", - "itertools 0.10.5", + "itertools 0.12.1", "once_cell", "regex", ] [[package]] name = "proptest" -version = "1.5.0" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" +checksum = "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" dependencies = [ - "bit-set", - "bit-vec", - "bitflags 2.6.0", + "bit-set 0.8.0", + "bit-vec 0.8.0", + "bitflags 2.8.0", "lazy_static", "num-traits", "rand 0.8.5", @@ -8517,120 +8542,118 @@ dependencies = [ [[package]] name = "proptest-derive" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ff7ff745a347b87471d859a377a9a404361e7efc2a971d73424a6d183c0fc77" +checksum = "4ee1c9ac207483d5e7db4940700de86a9aae46ef90c48b57f99fe7edb8345e49" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "prost" -version = "0.12.2" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a5a410fc7882af66deb8d01d01737353cf3ad6204c408177ba494291a626312" +checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29" dependencies = [ "bytes", - "prost-derive 0.12.2", + "prost-derive 0.12.6", ] [[package]] name = "prost" -version = "0.13.3" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b0487d90e047de87f984913713b85c601c05609aad5b0df4b4573fbf69aa13f" +checksum = "2c0fef6c4230e4ccf618a35c59d7ede15dea37de8427500f50aff708806e42ec" dependencies = [ "bytes", - "prost-derive 0.13.3", + "prost-derive 0.13.4", ] [[package]] name = "prost-build" -version = "0.12.2" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fa3d084c8704911bfefb2771be2f9b6c5c0da7343a71e0021ee3c665cada738" +checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4" dependencies = [ "bytes", - "heck 0.4.1", - "itertools 0.11.0", + "heck 0.5.0", + "itertools 0.12.1", "log", "multimap", "once_cell", "petgraph", "prettyplease", - "prost 0.12.2", - "prost-types 0.12.2", + "prost 0.12.6", + "prost-types 0.12.6", "regex", - "syn 2.0.87", + "syn 2.0.96", "tempfile", - "which", ] [[package]] name = "prost-build" -version = "0.13.3" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c1318b19085f08681016926435853bbf7858f9c082d0999b80550ff5d9abe15" +checksum = "d0f3e5beed80eb580c68e2c600937ac2c4eedabdfd5ef1e5b7ea4f3fba84497b" dependencies = [ - "bytes", "heck 0.5.0", - "itertools 0.12.0", + "itertools 0.13.0", "log", "multimap", "once_cell", "petgraph", "prettyplease", - "prost 0.13.3", - "prost-types 0.13.3", + "prost 0.13.4", + "prost-types 0.13.4", "regex", - "syn 2.0.87", + "syn 2.0.96", "tempfile", ] [[package]] name = "prost-derive" -version = "0.12.2" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "065717a5dfaca4a83d2fe57db3487b311365200000551d7a364e715dbf4346bc" +checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" dependencies = [ "anyhow", - "itertools 0.11.0", + "itertools 0.12.1", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "prost-derive" -version = "0.13.3" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9552f850d5f0964a4e4d0bf306459ac29323ddfbae05e35a7c0d35cb0803cc5" +checksum = "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3" dependencies = [ "anyhow", - "itertools 0.12.0", + "itertools 0.13.0", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "prost-types" -version = "0.12.2" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8339f32236f590281e2f6368276441394fcd1b2133b549cc895d0ae80f2f9a52" +checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0" dependencies = [ - "prost 0.12.2", + "prost 0.12.6", ] [[package]] name = "prost-types" -version = "0.13.3" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4759aa0d3a6232fb8dbdb97b61de2c20047c68aca932c7ed76da9d788508d670" +checksum = "cc2f1e56baa61e93533aebc21af4d2134b70f66275e0fcdf3cbe43d77ff7e8fc" dependencies = [ - "prost 0.13.3", + "prost 0.13.4", ] [[package]] @@ -8647,9 +8670,9 @@ checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" [[package]] name = "psm" -version = "0.1.21" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" +checksum = "200b9ff220857e53e184257720a14553b2f4aa02577d2ed9842d45d4b9654810" dependencies = [ "cc", ] @@ -8676,19 +8699,19 @@ dependencies = [ [[package]] name = "publicsuffix" -version = "2.2.3" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457" +checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf" dependencies = [ - "idna 0.3.0", + "idna 1.0.3", "psl-types", ] [[package]] name = "pulley-interpreter" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "403a1a95f4c18a45c86c7bff13df00347afd0abcbf2e54af273c837339ffcf77" +checksum = "8324e531de91a3c25021a30fb7862d39cc516b61fbb801176acb5ff279ea887b" dependencies = [ "cranelift-bitset", "log", @@ -8697,30 +8720,14 @@ dependencies = [ [[package]] name = "quanta" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab" -dependencies = [ - "crossbeam-utils", - "libc", - "mach2", - "once_cell", - "raw-cpuid 10.7.0", - "wasi", - "web-sys", - "winapi 0.3.9", -] - -[[package]] -name = "quanta" -version = "0.12.3" +version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5" +checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e" dependencies = [ "crossbeam-utils", "libc", "once_cell", - "raw-cpuid 11.1.0", + "raw-cpuid", "wasi", "web-sys", "winapi 0.3.9", @@ -8743,9 +8750,9 @@ dependencies = [ [[package]] name = "quick-xml" -version = "0.37.1" +version = "0.37.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f22f29bdff3987b4d8632ef95fd6424ec7e4e0a57e2f4fc63e489e75357f6a03" +checksum = "165859e9e55f79d67b96c5d96f4e88b6f2695a1972849c15a6a3f5c59fc2c003" dependencies = [ "memchr", ] @@ -8763,57 +8770,61 @@ dependencies = [ [[package]] name = "quinn" -version = "0.11.5" +version = "0.11.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684" +checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef" dependencies = [ "bytes", "pin-project-lite", "quinn-proto", "quinn-udp", - "rustc-hash 2.0.0", - "rustls 0.23.18", - "socket2 0.5.7", - "thiserror 1.0.68", + "rustc-hash 2.1.0", + "rustls 0.23.21", + "socket2 0.5.8", + "thiserror 2.0.11", "tokio", "tracing", ] [[package]] name = "quinn-proto" -version = "0.11.7" +version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea0a9b3a42929fad8a7c3de7f86ce0814cfa893328157672680e9fb1145549c5" +checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d" dependencies = [ "bytes", + "getrandom", "rand 0.8.5", - "ring 0.17.7", - "rustc-hash 2.0.0", - "rustls 0.23.18", + "ring 0.17.8", + "rustc-hash 2.1.0", + "rustls 0.23.21", + "rustls-pki-types", "slab", - "thiserror 1.0.68", + "thiserror 2.0.11", "tinyvec", "tracing", + "web-time", ] [[package]] name = "quinn-udp" -version = "0.5.5" +version = "0.5.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b" +checksum = "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904" dependencies = [ + "cfg_aliases", "libc", "once_cell", - "socket2 0.5.7", + "socket2 0.5.8", "tracing", "windows-sys 0.59.0", ] [[package]] name = "quote" -version = "1.0.37" +version = "1.0.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" +checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" dependencies = [ "proc-macro2", ] @@ -8990,9 +9001,9 @@ dependencies = [ [[package]] name = "rangemap" -version = "1.4.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "977b1e897f9d764566891689e642653e5ed90c6895106acd005eb4c1d0203991" +checksum = "f60fcc7d6849342eff22c4350c8b9a989ee8ceabc4b481253e8946b9fe83d684" [[package]] name = "ratelimit" @@ -9001,26 +9012,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c1bb13e2dcfa2232ac6887157aad8d9b3fe4ca57f7c8d4938ff5ea9be742300" dependencies = [ "clocksource", - "parking_lot 0.12.1", - "thiserror 1.0.68", + "parking_lot 0.12.3", + "thiserror 1.0.69", ] [[package]] name = "raw-cpuid" -version = "10.7.0" +version = "11.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" +checksum = "c6928fa44c097620b706542d428957635951bade7143269085389d42c8a4927e" dependencies = [ - "bitflags 1.3.2", -] - -[[package]] -name = "raw-cpuid" -version = "11.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb9ee317cfe3fbd54b36a511efc1edd42e216903c9cd575e686dd68a2ba90d8d" -dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", ] [[package]] @@ -9045,12 +9047,12 @@ dependencies = [ [[package]] name = "rcgen" -version = "0.13.1" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54077e1872c46788540de1ea3d7f4ccb1983d12f9aa909b234468676c1a36779" +checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" dependencies = [ "pem 3.0.4", - "ring 0.17.7", + "ring 0.17.8", "rustls-pki-types", "time", "yasna", @@ -9077,22 +9079,22 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.3.5" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" +checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.8.0", ] [[package]] name = "redox_users" -version = "0.4.3" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" +checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ "getrandom", - "redox_syscall 0.2.16", - "thiserror 1.0.68", + "libredox", + "thiserror 1.0.69", ] [[package]] @@ -9105,19 +9107,19 @@ dependencies = [ "bumpalo", "hashbrown 0.15.2", "log", - "rustc-hash 2.0.0", + "rustc-hash 2.1.0", "smallvec", ] [[package]] name = "regex" -version = "1.11.0" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" +checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.4.8", + "regex-automata 0.4.9", "regex-syntax 0.8.5", ] @@ -9132,9 +9134,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.8" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" +checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" dependencies = [ "aho-corasick", "memchr", @@ -9173,9 +9175,9 @@ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2" [[package]] name = "rend" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2571463863a6bd50c32f94402933f03457a3fbaf697a707c5be741e459f08fd" +checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" dependencies = [ "bytecheck", ] @@ -9187,7 +9189,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" dependencies = [ "async-compression", - "base64 0.21.4", + "base64 0.21.7", "bytes", "encoding_rs", "futures-core", @@ -9195,7 +9197,7 @@ dependencies = [ "h2 0.3.26", "http 0.2.12", "http-body 0.4.6", - "hyper 0.14.27", + "hyper 0.14.32", "hyper-rustls 0.24.2", "ipnet", "js-sys", @@ -9205,7 +9207,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "rustls 0.21.12", - "rustls-pemfile 1.0.3", + "rustls-pemfile 1.0.4", "serde", "serde_json", "serde_urlencoded", @@ -9219,28 +9221,28 @@ dependencies = [ "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "webpki-roots 0.25.2", + "webpki-roots 0.25.4", "winreg", ] [[package]] name = "reqwest" -version = "0.12.9" +version = "0.12.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" +checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" dependencies = [ "base64 0.22.1", "bytes", "futures-channel", "futures-core", "futures-util", - "h2 0.4.4", + "h2 0.4.7", "hickory-resolver", "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.1", - "hyper-rustls 0.27.3", + "hyper 1.5.2", + "hyper-rustls 0.27.5", "hyper-util", "ipnet", "js-sys", @@ -9251,25 +9253,26 @@ dependencies = [ "percent-encoding", "pin-project-lite", "quinn", - "rustls 0.23.18", - "rustls-native-certs 0.8.0", + "rustls 0.23.21", + "rustls-native-certs 0.8.1", "rustls-pemfile 2.2.0", "rustls-pki-types", "serde", "serde_json", "serde_urlencoded", - "sync_wrapper 1.0.1", + "sync_wrapper 1.0.2", "tokio", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.1", "tokio-socks", "tokio-util", + "tower 0.5.2", "tower-service", "url", "wasm-bindgen", "wasm-bindgen-futures", "wasm-streams", "web-sys", - "webpki-roots 0.26.1", + "webpki-roots 0.26.7", "windows-registry", ] @@ -9295,9 +9298,9 @@ dependencies = [ [[package]] name = "rgb" -version = "0.8.37" +version = "0.8.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8" +checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a" dependencies = [ "bytemuck", ] @@ -9319,16 +9322,17 @@ dependencies = [ [[package]] name = "ring" -version = "0.17.7" +version = "0.17.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" +checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" dependencies = [ "cc", + "cfg-if 1.0.0", "getrandom", "libc", "spin 0.9.8", "untrusted 0.9.0", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] @@ -9342,12 +9346,13 @@ dependencies = [ [[package]] name = "rkyv" -version = "0.7.42" +version = "0.7.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58" +checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" dependencies = [ "bitvec", "bytecheck", + "bytes", "hashbrown 0.12.3", "ptr_meta", "rend", @@ -9359,9 +9364,9 @@ dependencies = [ [[package]] name = "rkyv_derive" -version = "0.7.42" +version = "0.7.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d" +checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" dependencies = [ "proc-macro2", "quote", @@ -9417,9 +9422,9 @@ dependencies = [ [[package]] name = "rsa" -version = "0.9.6" +version = "0.9.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" +checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519" dependencies = [ "const-oid", "digest 0.10.7", @@ -9461,15 +9466,15 @@ dependencies = [ "regex", "relative-path", "rustc_version", - "syn 2.0.87", + "syn 2.0.96", "unicode-ident", ] [[package]] name = "rusb" -version = "0.9.3" +version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45fff149b6033f25e825cbb7b2c625a11ee8e6dac09264d49beb125e39aa97bf" +checksum = "ab9f9ff05b63a786553a4c02943b74b34a988448671001e9a27e2f0565cc05a4" dependencies = [ "libc", "libusb1-sys", @@ -9495,7 +9500,7 @@ version = "1.36.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b082d80e3e3cc52b2ed634388d436fe1f4de6af5786cc2de9ba9737527bdf555" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", "borsh", "bytes", "num-traits", @@ -9517,9 +9522,9 @@ dependencies = [ [[package]] name = "rustc-demangle" -version = "0.1.23" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" +checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" [[package]] name = "rustc-hash" @@ -9529,9 +9534,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustc-hash" -version = "2.0.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" +checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497" [[package]] name = "rustc-hex" @@ -9541,9 +9546,9 @@ checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" [[package]] name = "rustc_version" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ "semver", ] @@ -9559,15 +9564,15 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.32" +version = "0.38.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89" +checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6" dependencies = [ - "bitflags 2.6.0", - "errno 0.3.8", + "bitflags 2.8.0", + "errno 0.3.10", "libc", "linux-raw-sys", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -9577,7 +9582,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" dependencies = [ "log", - "ring 0.17.7", + "ring 0.17.8", "rustls-webpki 0.101.7", "sct", ] @@ -9589,7 +9594,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" dependencies = [ "log", - "ring 0.17.7", + "ring 0.17.8", "rustls-pki-types", "rustls-webpki 0.102.8", "subtle", @@ -9598,15 +9603,15 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.18" +version = "0.23.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c9cc1d47e243d655ace55ed38201c19ae02c148ae56412ab8750e8f0166ab7f" +checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8" dependencies = [ "brotli 7.0.0", - "brotli-decompressor 4.0.1", + "brotli-decompressor", "log", "once_cell", - "ring 0.17.7", + "ring 0.17.8", "rustls-pki-types", "rustls-webpki 0.102.8", "subtle", @@ -9631,11 +9636,11 @@ dependencies = [ "log", "pem 3.0.4", "rcgen", - "ring 0.17.7", + "ring 0.17.8", "serde", "serde_json", - "thiserror 2.0.3", - "webpki-roots 0.26.1", + "thiserror 2.0.11", + "webpki-roots 0.26.7", "x509-parser", ] @@ -9646,44 +9651,43 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" dependencies = [ "openssl-probe", - "rustls-pemfile 1.0.3", + "rustls-pemfile 1.0.4", "schannel", - "security-framework", + "security-framework 2.11.1", ] [[package]] name = "rustls-native-certs" -version = "0.7.0" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" +checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" dependencies = [ "openssl-probe", "rustls-pemfile 2.2.0", "rustls-pki-types", "schannel", - "security-framework", + "security-framework 2.11.1", ] [[package]] name = "rustls-native-certs" -version = "0.8.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a" +checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" dependencies = [ "openssl-probe", - "rustls-pemfile 2.2.0", "rustls-pki-types", "schannel", - "security-framework", + "security-framework 3.2.0", ] [[package]] name = "rustls-pemfile" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" +checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" dependencies = [ - "base64 0.21.4", + "base64 0.21.7", ] [[package]] @@ -9697,9 +9701,12 @@ dependencies = [ [[package]] name = "rustls-pki-types" -version = "1.10.0" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" +checksum = "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37" +dependencies = [ + "web-time", +] [[package]] name = "rustls-platform-verifier" @@ -9707,16 +9714,16 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4c7dc240fec5517e6c4eab3310438636cfe6391dfc345ba013109909a90d136" dependencies = [ - "core-foundation", + "core-foundation 0.9.4", "core-foundation-sys", "jni", "log", "once_cell", - "rustls 0.23.18", - "rustls-native-certs 0.7.0", + "rustls 0.23.21", + "rustls-native-certs 0.7.3", "rustls-platform-verifier-android", "rustls-webpki 0.102.8", - "security-framework", + "security-framework 2.11.1", "security-framework-sys", "webpki-root-certs", "windows-sys 0.52.0", @@ -9734,7 +9741,7 @@ version = "0.101.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" dependencies = [ - "ring 0.17.7", + "ring 0.17.8", "untrusted 0.9.0", ] @@ -9744,16 +9751,16 @@ version = "0.102.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" dependencies = [ - "ring 0.17.7", + "ring 0.17.8", "rustls-pki-types", "untrusted 0.9.0", ] [[package]] name = "rustversion" -version = "1.0.14" +version = "1.0.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" +checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" [[package]] name = "rusty-fork" @@ -9769,9 +9776,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.15" +version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" +checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" [[package]] name = "same-file" @@ -9784,45 +9791,45 @@ dependencies = [ [[package]] name = "scale-info" -version = "2.9.0" +version = "2.11.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35c0a159d0c45c12b20c5a844feb1fe4bea86e28f17b92a5f0c42193634d3782" +checksum = "346a3b32eba2640d17a9cb5927056b08f3de90f65b72fe09402c2ad07d684d0b" dependencies = [ "cfg-if 1.0.0", - "derive_more", + "derive_more 1.0.0", "parity-scale-codec", "scale-info-derive", ] [[package]] name = "scale-info-derive" -version = "2.9.0" +version = "2.11.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "912e55f6d20e0e80d63733872b40e1227c0bce1e1ab81ba67d696339bfd7fd29" +checksum = "c6630024bf739e2179b91fb424b28898baf819414262c5d376677dbff1fe7ebf" dependencies = [ - "proc-macro-crate 1.3.1", + "proc-macro-crate", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.96", ] [[package]] name = "schannel" -version = "0.1.22" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" +checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" dependencies = [ - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] name = "schemars" -version = "0.8.16" +version = "0.8.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45a28f4c49489add4ce10783f7911893516f15afe45d015608d41faca6bc4d29" +checksum = "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92" dependencies = [ "dyn-clone", - "indexmap 2.2.6", + "indexmap 2.7.0", "schemars_derive", "serde", "serde_json", @@ -9830,14 +9837,14 @@ dependencies = [ [[package]] name = "schemars_derive" -version = "0.8.16" +version = "0.8.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c767fd6fa65d9ccf9cf026122c1b555f2ef9a4f0cea69da4d7dbc3e258d30967" +checksum = "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e" dependencies = [ "proc-macro2", "quote", "serde_derive_internals", - "syn 1.0.109", + "syn 2.0.96", ] [[package]] @@ -9877,12 +9884,12 @@ dependencies = [ [[package]] name = "sct" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" +checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" dependencies = [ - "ring 0.16.20", - "untrusted 0.7.1", + "ring 0.17.8", + "untrusted 0.9.0", ] [[package]] @@ -9930,12 +9937,12 @@ dependencies = [ [[package]] name = "secp256k1" -version = "0.29.0" +version = "0.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e0cc0f1cf93f4969faf3ea1c7d8a9faed25918d96affa959720823dfe86d4f3" +checksum = "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113" dependencies = [ "bitcoin_hashes 0.14.0", - "secp256k1-sys 0.10.0", + "secp256k1-sys 0.10.1", ] [[package]] @@ -9958,9 +9965,9 @@ dependencies = [ [[package]] name = "secp256k1-sys" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1433bd67156263443f14d603720b082dd3121779323fce20cba2aa07b874bc1b" +checksum = "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9" dependencies = [ "cc", ] @@ -9981,19 +9988,32 @@ version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" dependencies = [ - "bitflags 2.6.0", - "core-foundation", + "bitflags 2.8.0", + "core-foundation 0.9.4", "core-foundation-sys", "libc", "num-bigint 0.4.6", "security-framework-sys", ] +[[package]] +name = "security-framework" +version = "3.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" +dependencies = [ + "bitflags 2.8.0", + "core-foundation 0.10.0", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + [[package]] name = "security-framework-sys" -version = "2.12.0" +version = "2.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" +checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" dependencies = [ "core-foundation-sys", "libc", @@ -10005,9 +10025,9 @@ version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4eb30575f3638fc8f6815f448d50cb1a2e255b0897985c8c59f4d37b72a07b06" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "cssparser", - "derive_more", + "derive_more 0.99.18", "fxhash", "log", "new_debug_unreachable", @@ -10020,9 +10040,9 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.22" +version = "1.0.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" +checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba" dependencies = [ "serde", ] @@ -10083,7 +10103,7 @@ version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5" dependencies = [ - "half", + "half 1.8.3", "serde", ] @@ -10095,25 +10115,25 @@ checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "serde_derive_internals" -version = "0.26.0" +version = "0.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c" +checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.96", ] [[package]] name = "serde_json" -version = "1.0.132" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" +checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" dependencies = [ "itoa", "memchr", @@ -10123,9 +10143,9 @@ dependencies = [ [[package]] name = "serde_path_to_error" -version = "0.1.14" +version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335" +checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" dependencies = [ "itoa", "serde", @@ -10141,7 +10161,7 @@ dependencies = [ "futures", "percent-encoding", "serde", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -10162,7 +10182,7 @@ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -10178,14 +10198,14 @@ dependencies = [ [[package]] name = "serde_tokenstream" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8790a7c3fe883e443eaa2af6f705952bc5d6e8671a220b9335c8cae92c037e74" +checksum = "64060d864397305347a78851c51588fd283767e7e7589829e8121d65512340f1" dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -10247,7 +10267,7 @@ dependencies = [ "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -10268,7 +10288,7 @@ version = "0.9.34+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" dependencies = [ - "indexmap 2.2.6", + "indexmap 2.7.0", "itoa", "ryu", "serde", @@ -10369,20 +10389,20 @@ dependencies = [ [[package]] name = "signal-hook-mio" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" +checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd" dependencies = [ "libc", - "mio 0.8.10", + "mio 0.8.11", "signal-hook", ] [[package]] name = "signal-hook-registry" -version = "1.4.1" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" +checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" dependencies = [ "libc", ] @@ -10399,25 +10419,25 @@ dependencies = [ [[package]] name = "simdutf8" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" +checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" [[package]] name = "similar" -version = "2.3.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2aeaf503862c419d66959f5d7ca015337d864e9c49485d771b732e2a20453597" +checksum = "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e" [[package]] name = "simple_asn1" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" +checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" dependencies = [ "num-bigint 0.4.6", "num-traits", - "thiserror 1.0.68", + "thiserror 2.0.11", "time", ] @@ -10459,13 +10479,19 @@ version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" +[[package]] +name = "siphasher" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" + [[package]] name = "slab" version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", ] [[package]] @@ -10554,9 +10580,9 @@ dependencies = [ [[package]] name = "slotmap" -version = "1.0.6" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342" +checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" dependencies = [ "version_check", ] @@ -10588,14 +10614,14 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "socket2" -version = "0.4.9" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" +checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" dependencies = [ "libc", "winapi 0.3.9", @@ -10603,9 +10629,9 @@ dependencies = [ [[package]] name = "socket2" -version = "0.5.7" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" +checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8" dependencies = [ "libc", "windows-sys 0.52.0", @@ -10623,6 +10649,15 @@ version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" +[[package]] +name = "spinning_top" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" +dependencies = [ + "lock_api", +] + [[package]] name = "spki" version = "0.7.3" @@ -10659,15 +10694,15 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "stacker" -version = "0.1.15" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce" +checksum = "799c883d55abdb5e98af1a7b3f23b9b6de8ecada0ecac058672d7635eb48ca7b" dependencies = [ "cc", "cfg-if 1.0.0", "libc", "psm", - "winapi 0.3.9", + "windows-sys 0.59.0", ] [[package]] @@ -10702,7 +10737,7 @@ checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" dependencies = [ "new_debug_unreachable", "once_cell", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "phf_shared 0.10.0", "precomputed-hash", "serde", @@ -10741,7 +10776,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta-derive", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -10752,16 +10787,7 @@ checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", -] - -[[package]] -name = "strum" -version = "0.25.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" -dependencies = [ - "strum_macros 0.25.3", + "syn 2.0.96", ] [[package]] @@ -10770,20 +10796,7 @@ version = "0.26.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" dependencies = [ - "strum_macros 0.26.4", -] - -[[package]] -name = "strum_macros" -version = "0.25.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" -dependencies = [ - "heck 0.4.1", - "proc-macro2", - "quote", - "rustversion", - "syn 2.0.87", + "strum_macros", ] [[package]] @@ -10796,14 +10809,14 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "stubborn-io" -version = "0.3.2" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b261fbca19f25e0ac726f6efb3c3f53949e18ba4b126c16f8ca625730daa1a9c" +checksum = "373a722240991e091384a571e1fd8abde15eca4494a1a2bff95dbf603d15a866" dependencies = [ "log", "rand 0.8.5", @@ -10824,9 +10837,9 @@ checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142" [[package]] name = "symbolic-common" -version = "12.4.1" +version = "12.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fac08504d60cf5bdffeb8a6a028f1a4868a5da1098bb19eb46239440039163fb" +checksum = "8150eae9699e3c73a3e6431dc1f80d87748797c0457336af23e94c1de619ed24" dependencies = [ "debugid", "memmap2", @@ -10836,9 +10849,9 @@ dependencies = [ [[package]] name = "symbolic-demangle" -version = "12.4.1" +version = "12.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b212728d4f6c527c1d50d6169e715f6e02d849811843c13e366d8ca6d0cf5c4" +checksum = "95f4a9846f7a8933b6d198c022faa2c9bd89e1a970bed9d9a98d25708bf8de17" dependencies = [ "rustc-demangle", "symbolic-common", @@ -10857,9 +10870,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.87" +version = "2.0.96" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" +checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" dependencies = [ "proc-macro2", "quote", @@ -10874,9 +10887,9 @@ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" [[package]] name = "sync_wrapper" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" dependencies = [ "futures-core", ] @@ -10889,7 +10902,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -10899,7 +10912,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" dependencies = [ "bitflags 1.3.2", - "core-foundation", + "core-foundation 0.9.4", "system-configuration-sys", ] @@ -10915,9 +10928,9 @@ dependencies = [ [[package]] name = "systemstat" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a24aec24a9312c83999a28e3ef9db7e2afd5c64bf47725b758cdc1cafd5b0bd2" +checksum = "668a4db78b439df482c238f559e4ea869017f9e62ef0a059c8bfcd841a4df544" dependencies = [ "bytesize", "lazy_static", @@ -10947,9 +10960,9 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "tar" -version = "0.4.39" +version = "0.4.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec96d2ffad078296368d46ff1cb309be1c23c513b4ab0e22a45de0185275ac96" +checksum = "c65998313f8e17d0d553d28f91a0df93e4dbbbf770279c7bc21ca0f09ea1a1f6" dependencies = [ "filetime", "libc", @@ -10978,7 +10991,7 @@ dependencies = [ "serde", "static_assertions", "tarpc-plugins", - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", "tokio-serde", "tokio-util", @@ -10999,12 +11012,13 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.12.0" +version = "3.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" +checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" dependencies = [ "cfg-if 1.0.0", - "fastrand 2.2.0", + "fastrand", + "getrandom", "once_cell", "rustix", "windows-sys 0.59.0", @@ -11072,9 +11086,9 @@ dependencies = [ [[package]] name = "termtree" -version = "0.4.1" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" +checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683" [[package]] name = "test-strategy" @@ -11085,7 +11099,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -11101,9 +11115,9 @@ dependencies = [ [[package]] name = "textplots" -version = "0.8.4" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2171116bd71c738068fe42091b1509d70135a768443c9afd6c179b83dc6cdc79" +checksum = "f59b64803118dbff62f92842b3154a2c802dfd8e18660132bbcbfb141c637ae3" dependencies = [ "drawille", "rgb", @@ -11111,48 +11125,48 @@ dependencies = [ [[package]] name = "textwrap" -version = "0.16.0" +version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" +checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" [[package]] name = "thiserror" -version = "1.0.68" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02dd99dc800bbb97186339685293e1cc5d9df1f8fae2d0aecd9ff1c77efea892" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ - "thiserror-impl 1.0.68", + "thiserror-impl 1.0.69", ] [[package]] name = "thiserror" -version = "2.0.3" +version = "2.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa" +checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" dependencies = [ - "thiserror-impl 2.0.3", + "thiserror-impl 2.0.11", ] [[package]] name = "thiserror-impl" -version = "1.0.68" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7c61ec9a6f64d2793d8a45faba21efbe3ced62a886d44c36a009b2b519b4c7e" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "thiserror-impl" -version = "2.0.3" +version = "2.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568" +checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -11163,9 +11177,9 @@ checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820" [[package]] name = "thread_local" -version = "1.1.7" +version = "1.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" +checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" dependencies = [ "cfg-if 1.0.0", "once_cell", @@ -11213,9 +11227,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.36" +version = "0.3.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" +checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" dependencies = [ "deranged", "itoa", @@ -11236,9 +11250,9 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" [[package]] name = "time-macros" -version = "0.2.18" +version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" +checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" dependencies = [ "num-conv", "time-core", @@ -11275,9 +11289,9 @@ dependencies = [ [[package]] name = "tinyvec" -version = "1.6.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" dependencies = [ "tinyvec_macros", ] @@ -11306,23 +11320,23 @@ checksum = "8d9ef545650e79f30233c0003bcc2504d7efac6dad25fca40744de773fe2049c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "tokio" -version = "1.42.0" +version = "1.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" +checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" dependencies = [ "backtrace", "bytes", "libc", - "mio 1.0.2", - "parking_lot 0.12.1", + "mio 1.0.3", + "parking_lot 0.12.3", "pin-project-lite", "signal-hook-registry", - "socket2 0.5.7", + "socket2 0.5.8", "tokio-macros", "windows-sys 0.52.0", ] @@ -11339,13 +11353,13 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -11383,12 +11397,11 @@ dependencies = [ [[package]] name = "tokio-rustls" -version = "0.26.0" +version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" +checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37" dependencies = [ - "rustls 0.23.18", - "rustls-pki-types", + "rustls 0.23.21", "tokio", ] @@ -11416,7 +11429,7 @@ checksum = "0d4770b8024672c1101b3f6733eab95b18007dbe0847a8afe341fcf79e06043f" dependencies = [ "either", "futures-util", - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", ] @@ -11490,24 +11503,13 @@ checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" [[package]] name = "toml_edit" -version = "0.19.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" -dependencies = [ - "indexmap 2.2.6", - "toml_datetime", - "winnow 0.5.17", -] - -[[package]] -name = "toml_edit" -version = "0.22.20" +version = "0.22.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d" +checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" dependencies = [ - "indexmap 2.2.6", + "indexmap 2.7.0", "toml_datetime", - "winnow 0.6.20", + "winnow", ] [[package]] @@ -11521,17 +11523,17 @@ dependencies = [ "axum", "base64 0.22.1", "bytes", - "h2 0.4.4", + "h2 0.4.7", "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-timeout", "hyper-util", "percent-encoding", "pin-project", - "prost 0.13.3", - "socket2 0.5.7", + "prost 0.13.4", + "socket2 0.5.8", "tokio", "tokio-stream", "tower 0.4.13", @@ -11548,10 +11550,10 @@ checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11" dependencies = [ "prettyplease", "proc-macro2", - "prost-build 0.13.3", - "prost-types 0.13.3", + "prost-build 0.13.4", + "prost-types 0.13.4", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -11576,17 +11578,17 @@ dependencies = [ [[package]] name = "tower" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2873938d487c3cfb9aed7546dc9f2711d867c9f90c46b889989a2cb84eba6b4f" +checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" dependencies = [ "futures-core", "futures-util", "hdrhistogram", - "indexmap 2.2.6", + "indexmap 2.7.0", "pin-project-lite", "slab", - "sync_wrapper 0.1.2", + "sync_wrapper 1.0.2", "tokio", "tokio-util", "tower-layer", @@ -11600,8 +11602,8 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" dependencies = [ - "base64 0.21.4", - "bitflags 2.6.0", + "base64 0.21.7", + "bitflags 2.8.0", "bytes", "http 1.2.0", "http-body 1.0.1", @@ -11621,7 +11623,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697" dependencies = [ "async-compression", - "bitflags 2.6.0", + "bitflags 2.8.0", "bytes", "futures-core", "http 1.2.0", @@ -11630,7 +11632,7 @@ dependencies = [ "pin-project-lite", "tokio", "tokio-util", - "tower 0.5.1", + "tower 0.5.2", "tower-layer", "tower-service", "tracing", @@ -11677,17 +11679,17 @@ dependencies = [ [[package]] name = "tower_governor" -version = "0.4.2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "313fa625fea5790ed56360a30ea980e41229cf482b4835801a67ef1922bf63b9" +checksum = "aea939ea6cfa7c4880f3e7422616624f97a567c16df67b53b11f0d03917a8e46" dependencies = [ "axum", "forwarded-header-value", "governor", "http 1.2.0", "pin-project", - "thiserror 1.0.68", - "tower 0.4.13", + "thiserror 1.0.69", + "tower 0.5.2", "tracing", ] @@ -11710,7 +11712,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf" dependencies = [ "crossbeam-channel", - "thiserror 1.0.68", + "thiserror 1.0.69", "time", "tracing-subscriber", ] @@ -11723,7 +11725,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -11779,7 +11781,7 @@ checksum = "97a971f6058498b5c0f1affa23e7ea202057a7301dbff68e968b2d578bcbd053" dependencies = [ "js-sys", "once_cell", - "opentelemetry 0.27.0", + "opentelemetry 0.27.1", "opentelemetry_sdk 0.27.1", "smallvec", "tracing", @@ -11851,12 +11853,6 @@ dependencies = [ "serde_json", ] -[[package]] -name = "triomphe" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0eee8098afad3fb0c54a9007aab6804558410503ad676d4633f9c2559a00ac0f" - [[package]] name = "trust-dns-proto" version = "0.22.0" @@ -11875,7 +11871,7 @@ dependencies = [ "lazy_static", "rand 0.8.5", "smallvec", - "thiserror 1.0.68", + "thiserror 1.0.69", "tinyvec", "tokio", "tracing", @@ -11893,10 +11889,10 @@ dependencies = [ "ipconfig", "lazy_static", "lru-cache", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "resolv-conf", "smallvec", - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", "tracing", "trust-dns-proto", @@ -11904,9 +11900,9 @@ dependencies = [ [[package]] name = "try-lock" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] name = "tungstenite" @@ -11922,7 +11918,7 @@ dependencies = [ "log", "rand 0.8.5", "sha1", - "thiserror 1.0.68", + "thiserror 1.0.69", "url", "utf-8", ] @@ -11961,9 +11957,9 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" [[package]] name = "ucd-trie" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" +checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971" [[package]] name = "uint" @@ -11979,11 +11975,12 @@ dependencies = [ [[package]] name = "ulid" -version = "1.1.0" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e37c4b6cbcc59a8dcd09a6429fbc7890286bcbb79215cea7b38a3c4c0921d93" +checksum = "f294bff79170ed1c5633812aff1e565c35d993a36e757f9bc0accf5eec4e6045" dependencies = [ "rand 0.8.5", + "web-time", ] [[package]] @@ -11994,51 +11991,54 @@ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" [[package]] name = "unicase" -version = "2.7.0" +version = "2.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" -dependencies = [ - "version_check", -] +checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" [[package]] name = "unicode-bidi" -version = "0.3.13" +version = "0.3.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" +checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" [[package]] name = "unicode-ident" -version = "1.0.12" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" +checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" [[package]] name = "unicode-normalization" -version = "0.1.22" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" +checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" dependencies = [ "tinyvec", ] [[package]] name = "unicode-segmentation" -version = "1.10.1" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" +checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" [[package]] name = "unicode-width" -version = "0.1.11" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" +checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" + +[[package]] +name = "unicode-width" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" [[package]] name = "unicode-xid" -version = "0.2.4" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" [[package]] name = "universal-hash" @@ -12080,9 +12080,9 @@ dependencies = [ [[package]] name = "url" -version = "2.5.3" +version = "2.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d157f1b96d14500ffdc1f10ba712e780825526c03d9a49b4d0324b0d9113ada" +checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" dependencies = [ "form_urlencoded", "idna 1.0.3", @@ -12110,9 +12110,9 @@ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" [[package]] name = "utf8-width" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1" +checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" [[package]] name = "utf8_iter" @@ -12122,15 +12122,15 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" [[package]] name = "utf8parse" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.11.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" +checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4" dependencies = [ "getrandom", "serde", @@ -12150,9 +12150,9 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "version_check" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "vrl" @@ -12163,9 +12163,9 @@ dependencies = [ "bytes", "cfg-if 1.0.0", "chrono", - "lalrpop 0.20.0", + "lalrpop 0.20.2", "once_cell", - "ordered-float 4.2.0", + "ordered-float 4.6.0", "regex", "serde", "serde_json", @@ -12192,17 +12192,11 @@ dependencies = [ "libc", ] -[[package]] -name = "waker-fn" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" - [[package]] name = "walkdir" -version = "2.3.3" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" +checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" dependencies = [ "same-file", "winapi-util", @@ -12210,9 +12204,9 @@ dependencies = [ [[package]] name = "walrus" -version = "0.21.1" +version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "467611cafbc8a84834b77d2b4bb191fd2f5769752def8340407e924390c6883b" +checksum = "501ace8ec3492754a9b3c4b59eac7159ceff8414f9e43a05029fe8ef43b9218f" dependencies = [ "anyhow", "gimli 0.26.2", @@ -12256,7 +12250,7 @@ dependencies = [ "futures-util", "headers 0.3.9", "http 0.2.12", - "hyper 0.14.27", + "hyper 0.14.32", "log", "mime", "mime_guess", @@ -12284,47 +12278,48 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.95" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e" +checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" dependencies = [ "cfg-if 1.0.0", "once_cell", + "rustversion", "wasm-bindgen-macro", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.95" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358" +checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" dependencies = [ "bumpalo", "log", - "once_cell", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.37" +version = "0.4.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" +checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" dependencies = [ "cfg-if 1.0.0", "js-sys", + "once_cell", "wasm-bindgen", "web-sys", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.95" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56" +checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -12332,22 +12327,25 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.95" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68" +checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.95" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" +checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" +dependencies = [ + "unicode-ident", +] [[package]] name = "wasm-encoder" @@ -12379,6 +12377,16 @@ dependencies = [ "wasmparser 0.221.2", ] +[[package]] +name = "wasm-encoder" +version = "0.223.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e636076193fa68103e937ac951b5f2f587624097017d764b8984d9c0f149464" +dependencies = [ + "leb128", + "wasmparser 0.223.0", +] + [[package]] name = "wasm-smith" version = "0.212.0" @@ -12388,7 +12396,7 @@ dependencies = [ "anyhow", "arbitrary", "flagset", - "indexmap 2.2.6", + "indexmap 2.7.0", "leb128", "wasm-encoder 0.212.0", "wasmparser 0.212.0", @@ -12396,9 +12404,9 @@ dependencies = [ [[package]] name = "wasm-streams" -version = "0.4.0" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" +checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" dependencies = [ "futures-util", "js-sys", @@ -12413,8 +12421,8 @@ version = "0.119.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c35daf77afb4f9b14016625144a391085ec2ca99ca9cc53ed291bb53ab5278d" dependencies = [ - "bitflags 2.6.0", - "indexmap 2.2.6", + "bitflags 2.8.0", + "indexmap 2.7.0", "semver", ] @@ -12425,9 +12433,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d28bc49ba1e5c5b61ffa7a2eace10820443c4b7d1c0b144109261d14570fdf8" dependencies = [ "ahash 0.8.11", - "bitflags 2.6.0", + "bitflags 2.8.0", "hashbrown 0.14.5", - "indexmap 2.2.6", + "indexmap 2.7.0", "semver", "serde", ] @@ -12439,9 +12447,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca917a21307d3adf2b9857b94dd05ebf8496bdcff4437a9b9fb3899d3e6c74e7" dependencies = [ "ahash 0.8.11", - "bitflags 2.6.0", + "bitflags 2.8.0", "hashbrown 0.14.5", - "indexmap 2.2.6", + "indexmap 2.7.0", "semver", "serde", ] @@ -12452,13 +12460,24 @@ version = "0.221.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9845c470a2e10b61dd42c385839cdd6496363ed63b5c9e420b5488b77bd22083" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "hashbrown 0.15.2", - "indexmap 2.2.6", + "indexmap 2.7.0", "semver", "serde", ] +[[package]] +name = "wasmparser" +version = "0.223.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5a99faceb1a5a84dd6084ec4bfa4b2ab153b5793b43fd8f58b89232634afc35" +dependencies = [ + "bitflags 2.8.0", + "indexmap 2.7.0", + "semver", +] + [[package]] name = "wasmprinter" version = "0.217.0" @@ -12483,23 +12502,23 @@ dependencies = [ [[package]] name = "wasmtime" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f639ecae347b9a2227e453a7b7671e84370a0b61f47a15e0390fe9b7725e47b3" +checksum = "edd30973c65eceb0f37dfcc430d83abd5eb24015fdfcab6912f52949287e04f0" dependencies = [ "anyhow", - "bitflags 2.6.0", + "bitflags 2.8.0", "bumpalo", "cc", "cfg-if 1.0.0", "hashbrown 0.14.5", - "indexmap 2.2.6", + "indexmap 2.7.0", "libc", "libm", "log", "mach2", "memfd", - "object 0.36.7", + "object", "once_cell", "paste", "postcard", @@ -12527,23 +12546,23 @@ dependencies = [ [[package]] name = "wasmtime-asm-macros" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "882a18800471cfc063c8b3ccf75723784acc3fd534009ac09421f2fac2fcdcec" +checksum = "c6c21dd30d1f3f93ee390ac1a7ec304ecdbfdab6390e1add41a1f52727b0992b" dependencies = [ "cfg-if 1.0.0", ] [[package]] name = "wasmtime-component-macro" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb5c0a77c9e1927c3d471f53cc13767c3d3438e5d5ffd394e3eb31c86445fd60" +checksum = "9f948a6ef3119d52c9f12936970de28ddf3f9bea04bc65571f4a92d2e5ab38f4" dependencies = [ "anyhow", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", "wasmtime-component-util", "wasmtime-wit-bindgen", "wit-parser", @@ -12551,15 +12570,15 @@ dependencies = [ [[package]] name = "wasmtime-component-util" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43702ca98bf5162eca0573db691ed9ecd36d716f8c6688410fe26ec16b6f9bcb" +checksum = "b9275aa01ceaaa2fa6c0ecaa5267518d80b9d6e9ae7c7ea42f4c6e073e6a69ef" [[package]] name = "wasmtime-cranelift" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20070aa5b75080a8932ec328419faf841df2bc6ceb16b55b0df2b952098392a2" +checksum = "0701a44a323267aae4499672dae422b266cee3135a23b640972ec8c0e10a44a2" dependencies = [ "anyhow", "cfg-if 1.0.0", @@ -12569,12 +12588,12 @@ dependencies = [ "cranelift-frontend", "cranelift-native", "gimli 0.31.1", - "itertools 0.12.0", + "itertools 0.12.1", "log", - "object 0.36.7", + "object", "smallvec", "target-lexicon", - "thiserror 1.0.68", + "thiserror 1.0.69", "wasmparser 0.221.2", "wasmtime-environ", "wasmtime-versioned-export-macros", @@ -12582,17 +12601,17 @@ dependencies = [ [[package]] name = "wasmtime-environ" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2604ddb24879d4dc1dedcb7081d7a8e017259bce916fdae097a97db52cbaab80" +checksum = "264c968c1b81d340355ece2be0bc31a10f567ccb6ce08512c3b7d10e26f3cbe5" dependencies = [ "anyhow", "cranelift-bitset", "cranelift-entity", "gimli 0.31.1", - "indexmap 2.2.6", + "indexmap 2.7.0", "log", - "object 0.36.7", + "object", "postcard", "serde", "serde_derive", @@ -12605,9 +12624,9 @@ dependencies = [ [[package]] name = "wasmtime-fiber" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98593412d2b167ebe2b59d4a17a184978a72f976b53b3a0ec05629451079ac1d" +checksum = "78505221fd5bd7b07b4e1fa2804edea49dc231e626ad6861adc8f531812973e6" dependencies = [ "anyhow", "cc", @@ -12620,9 +12639,9 @@ dependencies = [ [[package]] name = "wasmtime-jit-icache-coherence" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d40d7722b9e1fbeae135715710a8a2570b1e6cf72b74dd653962d89831c6c70d" +checksum = "9bedb677ca1b549d98f95e9e1f9251b460090d99a2c196a0614228c064bf2e59" dependencies = [ "anyhow", "cfg-if 1.0.0", @@ -12632,31 +12651,31 @@ dependencies = [ [[package]] name = "wasmtime-slab" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8579c335220b4ece9aa490a0e8b46de78cd342b195ab21ff981d095e14b52383" +checksum = "564905638c132c275d365c1fa074f0b499790568f43148d29de84ccecfb5cb31" [[package]] name = "wasmtime-versioned-export-macros" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7de0a56fb0a69b185968f2d7a9ba54750920a806470dff7ad8de91ac06d277e" +checksum = "1e91092e6cf77390eeccee273846a9327f3e8f91c3c6280f60f37809f0e62d29" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "wasmtime-winch" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abd309943c443f5590d12f9aba9ba63c481091c955a0a14de0c2a9e0e3aaeca9" +checksum = "b111d909dc604c741bd8ac2f4af373eaa5c68c34b5717271bcb687688212cef8" dependencies = [ "anyhow", "cranelift-codegen", "gimli 0.31.1", - "object 0.36.7", + "object", "target-lexicon", "wasmparser 0.221.2", "wasmtime-cranelift", @@ -12666,13 +12685,13 @@ dependencies = [ [[package]] name = "wasmtime-wit-bindgen" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "969f83022dac3435d6469edb582ceed04cfe32aa44dc3ef16e5cb55574633df8" +checksum = "5f38f7a5eb2f06f53fe943e7fb8bf4197f7cf279f1bc52c0ce56e9d3ffd750a4" dependencies = [ "anyhow", "heck 0.5.0", - "indexmap 2.2.6", + "indexmap 2.7.0", "wit-parser", ] @@ -12685,24 +12704,37 @@ dependencies = [ "bumpalo", "leb128", "memchr", - "unicode-width", + "unicode-width 0.1.14", "wasm-encoder 0.212.0", ] +[[package]] +name = "wast" +version = "223.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d59b2ba8a2ff9f06194b7be9524f92e45e70149f4dacc0d0c7ad92b59ac875e4" +dependencies = [ + "bumpalo", + "leb128", + "memchr", + "unicode-width 0.2.0", + "wasm-encoder 0.223.0", +] + [[package]] name = "wat" -version = "1.212.0" +version = "1.223.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c74ca7f93f11a5d6eed8499f2a8daaad6e225cab0151bc25a091fff3b987532f" +checksum = "662786915c427e4918ff01eabb3c4756d4d947cd8f635761526b4cc9da2eaaad" dependencies = [ - "wast", + "wast 223.0.0", ] [[package]] name = "web-sys" -version = "0.3.64" +version = "0.3.77" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" +checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" dependencies = [ "js-sys", "wasm-bindgen", @@ -12720,24 +12752,24 @@ dependencies = [ [[package]] name = "webpki-root-certs" -version = "0.26.6" +version = "0.26.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8c6dfa3ac045bc517de14c7b1384298de1dbd229d38e08e169d9ae8c170937c" +checksum = "9cd5da49bdf1f30054cfe0b8ce2958b8fbeb67c4d82c8967a598af481bef255c" dependencies = [ "rustls-pki-types", ] [[package]] name = "webpki-roots" -version = "0.25.2" +version = "0.25.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" +checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" [[package]] name = "webpki-roots" -version = "0.26.1" +version = "0.26.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" +checksum = "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e" dependencies = [ "rustls-pki-types", ] @@ -12768,9 +12800,9 @@ dependencies = [ [[package]] name = "widestring" -version = "1.0.2" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" +checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" [[package]] name = "winapi" @@ -12796,11 +12828,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.6" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" +checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" dependencies = [ - "winapi 0.3.9", + "windows-sys 0.59.0", ] [[package]] @@ -12811,9 +12843,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "winch-codegen" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9110decc2983ed94de904804dcd979ba59cbabc78a94fec6b1d8468ec513d0f6" +checksum = "6232f40a795be2ce10fc761ed3b403825126a60d12491ac556ea104a932fd18a" dependencies = [ "anyhow", "cranelift-codegen", @@ -12826,6 +12858,16 @@ dependencies = [ "wasmtime-environ", ] +[[package]] +name = "windows" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" +dependencies = [ + "windows-core 0.58.0", + "windows-targets 0.52.6", +] + [[package]] name = "windows-core" version = "0.52.0" @@ -12835,6 +12877,41 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-core" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-result", + "windows-strings", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-implement" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.96", +] + +[[package]] +name = "windows-interface" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.96", +] + [[package]] name = "windows-registry" version = "0.2.0" @@ -12865,15 +12942,6 @@ dependencies = [ "windows-targets 0.52.6", ] -[[package]] -name = "windows-sys" -version = "0.45.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" -dependencies = [ - "windows-targets 0.42.2", -] - [[package]] name = "windows-sys" version = "0.48.0" @@ -12901,21 +12969,6 @@ dependencies = [ "windows-targets 0.52.6", ] -[[package]] -name = "windows-targets" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" -dependencies = [ - "windows_aarch64_gnullvm 0.42.2", - "windows_aarch64_msvc 0.42.2", - "windows_i686_gnu 0.42.2", - "windows_i686_msvc 0.42.2", - "windows_x86_64_gnu 0.42.2", - "windows_x86_64_gnullvm 0.42.2", - "windows_x86_64_msvc 0.42.2", -] - [[package]] name = "windows-targets" version = "0.48.5" @@ -12947,12 +13000,6 @@ dependencies = [ "windows_x86_64_msvc 0.52.6", ] -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" - [[package]] name = "windows_aarch64_gnullvm" version = "0.48.5" @@ -12965,12 +13012,6 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" -[[package]] -name = "windows_aarch64_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" - [[package]] name = "windows_aarch64_msvc" version = "0.48.5" @@ -12983,12 +13024,6 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" -[[package]] -name = "windows_i686_gnu" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" - [[package]] name = "windows_i686_gnu" version = "0.48.5" @@ -13007,12 +13042,6 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" -[[package]] -name = "windows_i686_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" - [[package]] name = "windows_i686_msvc" version = "0.48.5" @@ -13025,12 +13054,6 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" -[[package]] -name = "windows_x86_64_gnu" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" - [[package]] name = "windows_x86_64_gnu" version = "0.48.5" @@ -13043,12 +13066,6 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" - [[package]] name = "windows_x86_64_gnullvm" version = "0.48.5" @@ -13061,12 +13078,6 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" -[[package]] -name = "windows_x86_64_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" - [[package]] name = "windows_x86_64_msvc" version = "0.48.5" @@ -13081,18 +13092,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winnow" -version = "0.5.17" +version = "0.6.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3b801d0e0a6726477cc207f60162da452f3a95adb368399bef20a946e06f65c" -dependencies = [ - "memchr", -] - -[[package]] -name = "winnow" -version = "0.6.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" +checksum = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a" dependencies = [ "memchr", ] @@ -13115,7 +13117,7 @@ checksum = "fbe1538eea6ea5ddbe5defd0dc82539ad7ba751e1631e9185d24a931f0a5adc8" dependencies = [ "anyhow", "id-arena", - "indexmap 2.2.6", + "indexmap 2.7.0", "log", "semver", "serde", @@ -13196,17 +13198,19 @@ dependencies = [ "nom", "oid-registry", "rusticata-macros", - "thiserror 1.0.68", + "thiserror 1.0.69", "time", ] [[package]] name = "xattr" -version = "0.2.3" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" +checksum = "e105d177a3871454f754b33bb0ee637ecaaac997446375fd3e5d43a2ed00c909" dependencies = [ "libc", + "linux-raw-sys", + "rustix", ] [[package]] @@ -13233,6 +13237,12 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" +[[package]] +name = "yansi" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" + [[package]] name = "yasna" version = "0.5.2" @@ -13244,9 +13254,9 @@ dependencies = [ [[package]] name = "yoke" -version = "0.7.4" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" +checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" dependencies = [ "serde", "stable_deref_trait", @@ -13256,54 +13266,55 @@ dependencies = [ [[package]] name = "yoke-derive" -version = "0.7.4" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" +checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", "synstructure", ] [[package]] name = "zerocopy" -version = "0.7.32" +version = "0.7.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" +checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" dependencies = [ + "byteorder", "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.7.32" +version = "0.7.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" +checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "zerofrom" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" +checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" dependencies = [ "zerofrom-derive", ] [[package]] name = "zerofrom-derive" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" +checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", "synstructure", ] @@ -13324,7 +13335,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -13346,7 +13357,7 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -13360,18 +13371,18 @@ dependencies = [ [[package]] name = "zstd-safe" -version = "7.1.0" +version = "7.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a" +checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059" dependencies = [ "zstd-sys", ] [[package]] name = "zstd-sys" -version = "2.0.10+zstd.1.5.6" +version = "2.0.13+zstd.1.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa" +checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" dependencies = [ "cc", "pkg-config", diff --git a/Cargo.Bazel.json.lock b/Cargo.Bazel.json.lock index cd26fde8e6d..0294d8305cb 100644 --- a/Cargo.Bazel.json.lock +++ b/Cargo.Bazel.json.lock @@ -1,5 +1,5 @@ { - "checksum": "af5e4debd1243293865e30a9b64a67f317d54d2087da3adf9fd816ffdd8b1262", + "checksum": "aa4a4a67b82376321d2ac77276ac7596aa559ae2b51e238ad8cdf6022007e175", "crates": { "abnf 0.12.0": { "name": "abnf", @@ -161,14 +161,14 @@ ], "license_file": null }, - "actix-codec 0.5.1": { + "actix-codec 0.5.2": { "name": "actix-codec", - "version": "0.5.1", + "version": "0.5.2", "package_url": "https://github.com/actix/actix-net", "repository": { "Http": { - "url": "https://static.crates.io/crates/actix-codec/0.5.1/download", - "sha256": "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8" + "url": "https://static.crates.io/crates/actix-codec/0.5.2/download", + "sha256": "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" } }, "targets": [ @@ -193,7 +193,7 @@ "deps": { "common": [ { - "id": "bitflags 1.3.2", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -213,11 +213,11 @@ "target": "memchr" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -231,8 +231,8 @@ ], "selects": {} }, - "edition": "2018", - "version": "0.5.1" + "edition": "2021", + "version": "0.5.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -285,7 +285,7 @@ "deps": { "common": [ { - "id": "actix-codec 0.5.1", + "id": "actix-codec 0.5.2", "target": "actix_codec" }, { @@ -309,7 +309,7 @@ "target": "base64" }, { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -321,15 +321,15 @@ "target": "bytes" }, { - "id": "bytestring 1.3.0", + "id": "bytestring 1.4.0", "target": "bytestring" }, { - "id": "encoding_rs 0.8.32", + "id": "encoding_rs 0.8.35", "target": "encoding_rs" }, { - "id": "flate2 1.0.31", + "id": "flate2 1.0.35", "target": "flate2" }, { @@ -345,15 +345,15 @@ "target": "http" }, { - "id": "httparse 1.8.0", + "id": "httparse 1.9.5", "target": "httparse" }, { - "id": "httpdate 1.0.2", + "id": "httpdate 1.0.3", "target": "httpdate" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { @@ -361,7 +361,7 @@ "target": "language_tags" }, { - "id": "local-channel 0.1.3", + "id": "local-channel 0.1.5", "target": "local_channel" }, { @@ -373,7 +373,7 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -389,7 +389,7 @@ "target": "smallvec" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -411,7 +411,7 @@ "proc_macro_deps": { "common": [ { - "id": "derive_more 0.99.17", + "id": "derive_more 0.99.18", "target": "derive_more" } ], @@ -426,14 +426,14 @@ ], "license_file": "LICENSE-APACHE" }, - "actix-macros 0.2.3": { + "actix-macros 0.2.4": { "name": "actix-macros", - "version": "0.2.3", + "version": "0.2.4", "package_url": "https://github.com/actix/actix-net.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/actix-macros/0.2.3/download", - "sha256": "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6" + "url": "https://static.crates.io/crates/actix-macros/0.2.4/download", + "sha256": "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" } }, "targets": [ @@ -458,18 +458,18 @@ "deps": { "common": [ { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 1.0.109", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, - "edition": "2018", - "version": "0.2.3" + "edition": "2021", + "version": "0.2.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -517,7 +517,7 @@ "deps": { "common": [ { - "id": "bytestring 1.3.0", + "id": "bytestring 1.4.0", "target": "bytestring" }, { @@ -529,7 +529,7 @@ "target": "http" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -601,7 +601,7 @@ "target": "futures_core" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -611,7 +611,7 @@ "proc_macro_deps": { "common": [ { - "id": "actix-macros 0.2.3", + "id": "actix-macros 0.2.4", "target": "actix_macros" } ], @@ -626,14 +626,14 @@ ], "license_file": "LICENSE-APACHE" }, - "actix-server 2.2.0": { + "actix-server 2.5.0": { "name": "actix-server", - "version": "2.2.0", - "package_url": "https://github.com/actix/actix-net.git", + "version": "2.5.0", + "package_url": "https://github.com/actix/actix-net/tree/master/actix-server", "repository": { "Http": { - "url": "https://static.crates.io/crates/actix-server/2.2.0/download", - "sha256": "3e8613a75dd50cc45f473cee3c34d59ed677c0f7b44480ce3b8247d7dc519327" + "url": "https://static.crates.io/crates/actix-server/2.5.0/download", + "sha256": "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894" } }, "targets": [ @@ -684,19 +684,15 @@ "target": "futures_util" }, { - "id": "mio 0.8.10", + "id": "mio 1.0.3", "target": "mio" }, { - "id": "num_cpus 1.16.0", - "target": "num_cpus" - }, - { - "id": "socket2 0.4.9", + "id": "socket2 0.5.8", "target": "socket2" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -706,8 +702,8 @@ ], "selects": {} }, - "edition": "2018", - "version": "2.2.0" + "edition": "2021", + "version": "2.5.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -752,7 +748,7 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], @@ -809,11 +805,11 @@ "deps": { "common": [ { - "id": "local-waker 0.1.3", + "id": "local-waker 0.1.4", "target": "local_waker" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], @@ -877,7 +873,7 @@ "deps": { "common": [ { - "id": "actix-codec 0.5.1", + "id": "actix-codec 0.5.2", "target": "actix_codec" }, { @@ -893,7 +889,7 @@ "target": "actix_rt" }, { - "id": "actix-server 2.2.0", + "id": "actix-server 2.5.0", "target": "actix_server" }, { @@ -913,7 +909,7 @@ "target": "bytes" }, { - "id": "bytestring 1.3.0", + "id": "bytestring 1.4.0", "target": "bytestring" }, { @@ -925,7 +921,7 @@ "target": "cookie" }, { - "id": "encoding_rs 0.8.32", + "id": "encoding_rs 0.8.35", "target": "encoding_rs" }, { @@ -937,11 +933,11 @@ "target": "futures_util" }, { - "id": "impl-more 0.1.6", + "id": "impl-more 0.1.9", "target": "impl_more" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { @@ -949,7 +945,7 @@ "target": "language_tags" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -957,15 +953,15 @@ "target": "mime" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -977,7 +973,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -989,15 +985,15 @@ "target": "smallvec" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" } ], @@ -1007,7 +1003,7 @@ "proc_macro_deps": { "common": [ { - "id": "actix-macros 0.2.3", + "id": "actix-macros 0.2.4", "target": "actix_macros" }, { @@ -1015,7 +1011,7 @@ "target": "actix_web_codegen" }, { - "id": "derive_more 0.99.17", + "id": "derive_more 0.99.18", "target": "derive_more" } ], @@ -1072,15 +1068,15 @@ "target": "actix_router" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -1150,14 +1146,14 @@ ], "license_file": "LICENSE" }, - "addr2line 0.20.0": { + "addr2line 0.24.2": { "name": "addr2line", - "version": "0.20.0", + "version": "0.24.2", "package_url": "https://github.com/gimli-rs/addr2line", "repository": { "Http": { - "url": "https://static.crates.io/crates/addr2line/0.20.0/download", - "sha256": "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" + "url": "https://static.crates.io/crates/addr2line/0.24.2/download", + "sha256": "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" } }, "targets": [ @@ -1182,14 +1178,14 @@ "deps": { "common": [ { - "id": "gimli 0.27.3", + "id": "gimli 0.31.1", "target": "gimli" } ], "selects": {} }, "edition": "2018", - "version": "0.20.0" + "version": "0.24.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -1198,20 +1194,20 @@ ], "license_file": "LICENSE-APACHE" }, - "adler 1.0.2": { - "name": "adler", - "version": "1.0.2", - "package_url": "https://github.com/jonas-schievink/adler.git", + "adler2 2.0.0": { + "name": "adler2", + "version": "2.0.0", + "package_url": "https://github.com/oyvindln/adler2", "repository": { "Http": { - "url": "https://static.crates.io/crates/adler/1.0.2/download", - "sha256": "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + "url": "https://static.crates.io/crates/adler2/2.0.0/download", + "sha256": "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" } }, "targets": [ { "Library": { - "crate_name": "adler", + "crate_name": "adler2", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -1222,13 +1218,13 @@ } } ], - "library_target_name": "adler", + "library_target_name": "adler2", "common_attrs": { "compile_data_glob": [ "**" ], - "edition": "2015", - "version": "1.0.2" + "edition": "2021", + "version": "2.0.0" }, "license": "0BSD OR MIT OR Apache-2.0", "license_ids": [ @@ -1387,13 +1383,13 @@ "selects": { "cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))": [ { - "id": "getrandom 0.2.10", + "id": "getrandom 0.2.15", "target": "getrandom" } ], "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ] @@ -1412,7 +1408,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.4", + "id": "version_check 0.9.5", "target": "version_check" } ], @@ -1487,18 +1483,18 @@ "target": "cfg_if" }, { - "id": "getrandom 0.2.10", + "id": "getrandom 0.2.15", "target": "getrandom" }, { - "id": "zerocopy 0.7.32", + "id": "zerocopy 0.7.35", "target": "zerocopy" } ], "selects": { "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ] @@ -1517,7 +1513,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.4", + "id": "version_check 0.9.5", "target": "version_check" } ], @@ -1531,14 +1527,14 @@ ], "license_file": "LICENSE-APACHE" }, - "aho-corasick 1.0.2": { + "aho-corasick 1.1.3": { "name": "aho-corasick", - "version": "1.0.2", + "version": "1.1.3", "package_url": "https://github.com/BurntSushi/aho-corasick", "repository": { "Http": { - "url": "https://static.crates.io/crates/aho-corasick/1.0.2/download", - "sha256": "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" + "url": "https://static.crates.io/crates/aho-corasick/1.1.3/download", + "sha256": "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" } }, "targets": [ @@ -1577,7 +1573,7 @@ "selects": {} }, "edition": "2021", - "version": "1.0.2" + "version": "1.1.3" }, "license": "Unlicense OR MIT", "license_ids": [ @@ -1586,14 +1582,14 @@ ], "license_file": "LICENSE-MIT" }, - "aide 0.13.4": { + "aide 0.13.5": { "name": "aide", - "version": "0.13.4", + "version": "0.13.5", "package_url": "https://github.com/tamasfe/aide", "repository": { "Http": { - "url": "https://static.crates.io/crates/aide/0.13.4/download", - "sha256": "7b0e3b97a21e41ec5c19bfd9b4fc1f7086be104f8b988681230247ffc91cc8ed" + "url": "https://static.crates.io/crates/aide/0.13.5/download", + "sha256": "5678d2978845ddb4bd736a026f467dd652d831e9e6254b0e41b07f7ee7523309" } }, "targets": [ @@ -1642,11 +1638,11 @@ "target": "http" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "schemars 0.8.16", + "id": "schemars 0.8.21", "target": "schemars" }, { @@ -1654,11 +1650,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -1677,7 +1673,7 @@ "selects": {} }, "edition": "2021", - "version": "0.13.4" + "version": "0.13.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -1941,7 +1937,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -2002,14 +1998,14 @@ ], "license_file": null }, - "anstream 0.6.15": { + "anstream 0.6.18": { "name": "anstream", - "version": "0.6.15", + "version": "0.6.18", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstream/0.6.15/download", - "sha256": "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" + "url": "https://static.crates.io/crates/anstream/0.6.18/download", + "sha256": "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" } }, "targets": [ @@ -2042,19 +2038,19 @@ "deps": { "common": [ { - "id": "anstyle 1.0.8", + "id": "anstyle 1.0.10", "target": "anstyle" }, { - "id": "anstyle-parse 0.2.1", + "id": "anstyle-parse 0.2.6", "target": "anstyle_parse" }, { - "id": "anstyle-query 1.0.0", + "id": "anstyle-query 1.1.2", "target": "anstyle_query" }, { - "id": "colorchoice 1.0.0", + "id": "colorchoice 1.0.3", "target": "colorchoice" }, { @@ -2062,33 +2058,33 @@ "target": "is_terminal_polyfill" }, { - "id": "utf8parse 0.2.1", + "id": "utf8parse 0.2.2", "target": "utf8parse" } ], "selects": { "aarch64-pc-windows-msvc": [ { - "id": "anstyle-wincon 3.0.1", + "id": "anstyle-wincon 3.0.7", "target": "anstyle_wincon" } ], "i686-pc-windows-msvc": [ { - "id": "anstyle-wincon 3.0.1", + "id": "anstyle-wincon 3.0.7", "target": "anstyle_wincon" } ], "x86_64-pc-windows-msvc": [ { - "id": "anstyle-wincon 3.0.1", + "id": "anstyle-wincon 3.0.7", "target": "anstyle_wincon" } ] } }, "edition": "2021", - "version": "0.6.15" + "version": "0.6.18" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2097,14 +2093,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle 1.0.8": { + "anstyle 1.0.10": { "name": "anstyle", - "version": "1.0.8", + "version": "1.0.10", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle/1.0.8/download", - "sha256": "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" + "url": "https://static.crates.io/crates/anstyle/1.0.10/download", + "sha256": "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" } }, "targets": [ @@ -2134,7 +2130,7 @@ "selects": {} }, "edition": "2021", - "version": "1.0.8" + "version": "1.0.10" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2143,14 +2139,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle-parse 0.2.1": { + "anstyle-parse 0.2.6": { "name": "anstyle-parse", - "version": "0.2.1", + "version": "0.2.6", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle-parse/0.2.1/download", - "sha256": "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" + "url": "https://static.crates.io/crates/anstyle-parse/0.2.6/download", + "sha256": "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" } }, "targets": [ @@ -2182,14 +2178,14 @@ "deps": { "common": [ { - "id": "utf8parse 0.2.1", + "id": "utf8parse 0.2.2", "target": "utf8parse" } ], "selects": {} }, "edition": "2021", - "version": "0.2.1" + "version": "0.2.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2198,14 +2194,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle-query 1.0.0": { + "anstyle-query 1.1.2": { "name": "anstyle-query", - "version": "1.0.0", - "package_url": "https://github.com/rust-cli/anstyle", + "version": "1.1.2", + "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle-query/1.0.0/download", - "sha256": "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" + "url": "https://static.crates.io/crates/anstyle-query/1.1.2/download", + "sha256": "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" } }, "targets": [ @@ -2232,14 +2228,14 @@ "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.48.0", + "id": "windows-sys 0.59.0", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "1.0.0" + "version": "1.1.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2248,14 +2244,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle-wincon 3.0.1": { + "anstyle-wincon 3.0.7": { "name": "anstyle-wincon", - "version": "3.0.1", + "version": "3.0.7", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle-wincon/3.0.1/download", - "sha256": "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" + "url": "https://static.crates.io/crates/anstyle-wincon/3.0.7/download", + "sha256": "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" } }, "targets": [ @@ -2280,21 +2276,25 @@ "deps": { "common": [ { - "id": "anstyle 1.0.8", + "id": "anstyle 1.0.10", "target": "anstyle" } ], "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.48.0", + "id": "once_cell 1.20.2", + "target": "once_cell" + }, + { + "id": "windows-sys 0.59.0", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "3.0.1" + "version": "3.0.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2303,14 +2303,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anyhow 1.0.93": { + "anyhow 1.0.95": { "name": "anyhow", - "version": "1.0.93", + "version": "1.0.95", "package_url": "https://github.com/dtolnay/anyhow", "repository": { "Http": { - "url": "https://static.crates.io/crates/anyhow/1.0.93/download", - "sha256": "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775" + "url": "https://static.crates.io/crates/anyhow/1.0.95/download", + "sha256": "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" } }, "targets": [ @@ -2354,14 +2354,14 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.0.93" + "version": "1.0.95" }, "build_script_attrs": { "compile_data_glob": [ @@ -2378,14 +2378,14 @@ ], "license_file": "LICENSE-APACHE" }, - "arbitrary 1.3.2": { + "arbitrary 1.4.1": { "name": "arbitrary", - "version": "1.3.2", + "version": "1.4.1", "package_url": "https://github.com/rust-fuzz/arbitrary/", "repository": { "Http": { - "url": "https://static.crates.io/crates/arbitrary/1.3.2/download", - "sha256": "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" + "url": "https://static.crates.io/crates/arbitrary/1.4.1/download", + "sha256": "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223" } }, "targets": [ @@ -2418,13 +2418,13 @@ "proc_macro_deps": { "common": [ { - "id": "derive_arbitrary 1.3.2", + "id": "derive_arbitrary 1.4.1", "target": "derive_arbitrary" } ], "selects": {} }, - "version": "1.3.2" + "version": "1.4.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2518,14 +2518,14 @@ ], "license_file": "LICENSE-APACHE" }, - "arrayvec 0.7.4": { + "arrayvec 0.7.6": { "name": "arrayvec", - "version": "0.7.4", + "version": "0.7.6", "package_url": "https://github.com/bluss/arrayvec", "repository": { "Http": { - "url": "https://static.crates.io/crates/arrayvec/0.7.4/download", - "sha256": "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" + "url": "https://static.crates.io/crates/arrayvec/0.7.6/download", + "sha256": "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" } }, "targets": [ @@ -2555,7 +2555,7 @@ "selects": {} }, "edition": "2018", - "version": "0.7.4" + "version": "0.7.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2682,7 +2682,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -2692,7 +2692,7 @@ "proc_macro_deps": { "common": [ { - "id": "askama_derive 0.12.2", + "id": "askama_derive 0.12.5", "target": "askama_derive" } ], @@ -2707,14 +2707,14 @@ ], "license_file": "LICENSE-APACHE" }, - "askama_derive 0.12.2": { + "askama_derive 0.12.5": { "name": "askama_derive", - "version": "0.12.2", + "version": "0.12.5", "package_url": "https://github.com/djc/askama", "repository": { "Http": { - "url": "https://static.crates.io/crates/askama_derive/0.12.2/download", - "sha256": "9a0fc7dcf8bd4ead96b1d36b41df47c14beedf7b0301fc543d8f2384e66a2ec0" + "url": "https://static.crates.io/crates/askama_derive/0.12.5/download", + "sha256": "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83" } }, "targets": [ @@ -2751,12 +2751,12 @@ "deps": { "common": [ { - "id": "askama_parser 0.1.1", + "id": "askama_parser 0.2.1", "target": "askama_parser", "alias": "parser" }, { - "id": "basic-toml 0.1.7", + "id": "basic-toml 0.1.9", "target": "basic_toml" }, { @@ -2764,15 +2764,15 @@ "target": "mime" }, { - "id": "mime_guess 2.0.4", + "id": "mime_guess 2.0.5", "target": "mime_guess" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -2780,14 +2780,14 @@ "target": "serde" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.12.2" + "version": "0.12.5" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -2841,14 +2841,14 @@ ], "license_file": "LICENSE-APACHE" }, - "askama_parser 0.1.1": { + "askama_parser 0.2.1": { "name": "askama_parser", - "version": "0.1.1", + "version": "0.2.1", "package_url": "https://github.com/djc/askama", "repository": { "Http": { - "url": "https://static.crates.io/crates/askama_parser/0.1.1/download", - "sha256": "c268a96e01a4c47c8c5c2472aaa570707e006a875ea63e819f75474ceedaf7b4" + "url": "https://static.crates.io/crates/askama_parser/0.2.1/download", + "sha256": "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0" } }, "targets": [ @@ -2880,23 +2880,23 @@ "selects": {} }, "edition": "2021", - "version": "0.1.1" + "version": "0.2.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null + "license_file": "LICENSE-APACHE" }, - "asn1-rs 0.6.1": { + "asn1-rs 0.6.2": { "name": "asn1-rs", - "version": "0.6.1", + "version": "0.6.2", "package_url": "https://github.com/rusticata/asn1-rs.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/asn1-rs/0.6.1/download", - "sha256": "22ad1373757efa0f70ec53939aabc7152e1591cb485208052993070ac8d2429d" + "url": "https://static.crates.io/crates/asn1-rs/0.6.2/download", + "sha256": "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" } }, "targets": [ @@ -2942,11 +2942,11 @@ "target": "rusticata_macros" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -2956,7 +2956,7 @@ "proc_macro_deps": { "common": [ { - "id": "asn1-rs-derive 0.5.0", + "id": "asn1-rs-derive 0.5.1", "target": "asn1_rs_derive" }, { @@ -2964,29 +2964,29 @@ "target": "asn1_rs_impl" }, { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], "selects": {} }, - "version": "0.6.1" + "version": "0.6.2" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "asn1-rs-derive 0.5.0": { + "asn1-rs-derive 0.5.1": { "name": "asn1-rs-derive", - "version": "0.5.0", + "version": "0.5.1", "package_url": "https://github.com/rusticata/asn1-rs.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/asn1-rs-derive/0.5.0/download", - "sha256": "7378575ff571966e99a744addeff0bff98b8ada0dedf1956d59e634db95eaac1" + "url": "https://static.crates.io/crates/asn1-rs-derive/0.5.1/download", + "sha256": "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" } }, "targets": [ @@ -3011,15 +3011,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" }, { @@ -3030,14 +3030,14 @@ "selects": {} }, "edition": "2018", - "version": "0.5.0" + "version": "0.5.1" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null + "license_file": "LICENSE-APACHE" }, "asn1-rs-impl 0.2.0": { "name": "asn1-rs-impl", @@ -3071,15 +3071,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -3131,7 +3131,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -3190,7 +3190,7 @@ "deps": { "common": [ { - "id": "anstyle 1.0.8", + "id": "anstyle 1.0.10", "target": "anstyle" }, { @@ -3198,7 +3198,7 @@ "target": "build_script_build" }, { - "id": "bstr 1.6.0", + "id": "bstr 1.11.3", "target": "bstr" }, { @@ -3206,15 +3206,15 @@ "target": "doc_comment" }, { - "id": "predicates 3.1.2", + "id": "predicates 3.1.3", "target": "predicates" }, { - "id": "predicates-core 1.0.6", + "id": "predicates-core 1.0.9", "target": "predicates_core" }, { - "id": "predicates-tree 1.0.9", + "id": "predicates-tree 1.0.12", "target": "predicates_tree" }, { @@ -3225,7 +3225,7 @@ "selects": { "cfg(any())": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] @@ -3387,7 +3387,7 @@ "target": "concurrent_queue" }, { - "id": "event-listener-strategy 0.5.2", + "id": "event-listener-strategy 0.5.3", "target": "event_listener_strategy" }, { @@ -3395,7 +3395,7 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], @@ -3411,14 +3411,14 @@ ], "license_file": "LICENSE-APACHE" }, - "async-compression 0.4.3": { + "async-compression 0.4.18": { "name": "async-compression", - "version": "0.4.3", + "version": "0.4.18", "package_url": "https://github.com/Nullus157/async-compression", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-compression/0.4.3/download", - "sha256": "bb42b2197bf15ccb092b62c74515dbd8b86d0effd934795f6687c93b6e679a2c" + "url": "https://static.crates.io/crates/async-compression/0.4.18/download", + "sha256": "df895a515f70646414f4b45c0b79082783b80552b373a68283012928df56f522" } }, "targets": [ @@ -3456,11 +3456,11 @@ "deps": { "common": [ { - "id": "brotli 3.3.4", + "id": "brotli 7.0.0", "target": "brotli" }, { - "id": "flate2 1.0.31", + "id": "flate2 1.0.35", "target": "flate2" }, { @@ -3472,27 +3472,27 @@ "target": "memchr" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { - "id": "zstd 0.12.4", + "id": "zstd 0.13.2", "target": "zstd", "alias": "libzstd" }, { - "id": "zstd-safe 6.0.5+zstd.1.5.4", + "id": "zstd-safe 7.2.1", "target": "zstd_safe" } ], "selects": {} }, "edition": "2018", - "version": "0.4.3" + "version": "0.4.18" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -3533,7 +3533,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -3545,11 +3545,11 @@ "target": "http" }, { - "id": "httparse 1.8.0", + "id": "httparse 1.9.5", "target": "httparse" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" } ], @@ -3565,14 +3565,14 @@ ], "license_file": null }, - "async-io 2.3.4": { + "async-io 2.4.0": { "name": "async-io", - "version": "2.3.4", + "version": "2.4.0", "package_url": "https://github.com/smol-rs/async-io", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-io/2.3.4/download", - "sha256": "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" + "url": "https://static.crates.io/crates/async-io/2.4.0/download", + "sha256": "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059" } }, "targets": [ @@ -3597,7 +3597,7 @@ "deps": { "common": [ { - "id": "async-lock 3.3.0", + "id": "async-lock 3.4.0", "target": "async_lock" }, { @@ -3613,23 +3613,23 @@ "target": "futures_io" }, { - "id": "futures-lite 2.0.0", + "id": "futures-lite 2.6.0", "target": "futures_lite" }, { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" }, { - "id": "polling 3.7.3", + "id": "polling 3.7.4", "target": "polling" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" }, { - "id": "slab 0.4.8", + "id": "slab 0.4.9", "target": "slab" }, { @@ -3647,7 +3647,7 @@ } }, "edition": "2021", - "version": "2.3.4" + "version": "2.4.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -3656,14 +3656,14 @@ ], "license_file": "LICENSE-APACHE" }, - "async-lock 3.3.0": { + "async-lock 3.4.0": { "name": "async-lock", - "version": "3.3.0", + "version": "3.4.0", "package_url": "https://github.com/smol-rs/async-lock", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-lock/3.3.0/download", - "sha256": "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" + "url": "https://static.crates.io/crates/async-lock/3.4.0/download", + "sha256": "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" } }, "targets": [ @@ -3695,22 +3695,22 @@ "deps": { "common": [ { - "id": "event-listener 4.0.3", + "id": "event-listener 5.4.0", "target": "event_listener" }, { - "id": "event-listener-strategy 0.4.0", + "id": "event-listener-strategy 0.5.3", "target": "event_listener_strategy" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], "selects": {} }, "edition": "2021", - "version": "3.3.0" + "version": "3.4.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -3751,7 +3751,7 @@ "deps": { "common": [ { - "id": "async-io 2.3.4", + "id": "async-io 2.4.0", "target": "async_io" }, { @@ -3759,7 +3759,7 @@ "target": "blocking" }, { - "id": "futures-lite 2.0.0", + "id": "futures-lite 2.6.0", "target": "futures_lite" } ], @@ -3775,14 +3775,14 @@ ], "license_file": "LICENSE-APACHE" }, - "async-recursion 1.0.5": { + "async-recursion 1.1.1": { "name": "async-recursion", - "version": "1.0.5", + "version": "1.1.1", "package_url": "https://github.com/dcchut/async-recursion", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-recursion/1.0.5/download", - "sha256": "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" + "url": "https://static.crates.io/crates/async-recursion/1.1.1/download", + "sha256": "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" } }, "targets": [ @@ -3807,22 +3807,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "1.0.5" + "version": "1.1.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -3874,11 +3874,11 @@ "target": "futures" }, { - "id": "pin-project 1.1.2", + "id": "pin-project 1.1.8", "target": "pin_project" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -3926,11 +3926,11 @@ "deps": { "common": [ { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -3982,7 +3982,7 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], @@ -4038,15 +4038,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -4107,14 +4107,14 @@ ], "license_file": "LICENSE-APACHE" }, - "async-trait 0.1.83": { + "async-trait 0.1.85": { "name": "async-trait", - "version": "0.1.83", + "version": "0.1.85", "package_url": "https://github.com/dtolnay/async-trait", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-trait/0.1.83/download", - "sha256": "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" + "url": "https://static.crates.io/crates/async-trait/0.1.85/download", + "sha256": "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056" } }, "targets": [ @@ -4139,22 +4139,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.1.83" + "version": "0.1.85" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4270,23 +4270,23 @@ "target": "http" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -4381,7 +4381,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -4402,14 +4402,14 @@ ], "license_file": "LICENSE" }, - "auto_impl 1.1.0": { + "auto_impl 1.2.1": { "name": "auto_impl", - "version": "1.1.0", + "version": "1.2.1", "package_url": "https://github.com/auto-impl-rs/auto_impl/", "repository": { "Http": { - "url": "https://static.crates.io/crates/auto_impl/1.1.0/download", - "sha256": "fee3da8ef1276b0bee5dd1c7258010d8fffd31801447323115a25560e1327b89" + "url": "https://static.crates.io/crates/auto_impl/1.2.1/download", + "sha256": "e12882f59de5360c748c4cbf569a042d5fb0eb515f7bea9c1f470b47f6ffbd73" } }, "targets": [ @@ -4434,26 +4434,22 @@ "deps": { "common": [ { - "id": "proc-macro-error 1.0.4", - "target": "proc_macro_error" - }, - { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 1.0.109", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.1.0" + "version": "1.2.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4494,7 +4490,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -4510,14 +4506,14 @@ ], "license_file": "LICENSE-APACHE" }, - "autocfg 1.1.0": { + "autocfg 1.4.0": { "name": "autocfg", - "version": "1.1.0", + "version": "1.4.0", "package_url": "https://github.com/cuviper/autocfg", "repository": { "Http": { - "url": "https://static.crates.io/crates/autocfg/1.1.0/download", - "sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" + "url": "https://static.crates.io/crates/autocfg/1.4.0/download", + "sha256": "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" } }, "targets": [ @@ -4540,7 +4536,7 @@ "**" ], "edition": "2015", - "version": "1.1.0" + "version": "1.4.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -4621,7 +4617,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -4629,11 +4625,11 @@ "target": "hyper_util" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "matchit 0.7.0", + "id": "matchit 0.7.3", "target": "matchit" }, { @@ -4649,7 +4645,7 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -4657,11 +4653,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "serde_path_to_error 0.1.14", + "id": "serde_path_to_error 0.1.16", "target": "serde_path_to_error" }, { @@ -4669,15 +4665,15 @@ "target": "serde_urlencoded" }, { - "id": "sync_wrapper 1.0.1", + "id": "sync_wrapper 1.0.2", "target": "sync_wrapper" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { - "id": "tower 0.5.1", + "id": "tower 0.5.2", "target": "tower" }, { @@ -4699,7 +4695,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" }, { @@ -4707,7 +4703,7 @@ "target": "axum_macros" }, { - "id": "rustversion 1.0.14", + "id": "rustversion 1.0.19", "target": "rustversion" } ], @@ -4783,11 +4779,11 @@ "target": "mime" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "sync_wrapper 1.0.1", + "id": "sync_wrapper 1.0.2", "target": "sync_wrapper" }, { @@ -4809,11 +4805,11 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" }, { - "id": "rustversion 1.0.14", + "id": "rustversion 1.0.19", "target": "rustversion" } ], @@ -4880,7 +4876,7 @@ "target": "bytes" }, { - "id": "fastrand 2.1.0", + "id": "fastrand 2.3.0", "target": "fastrand" }, { @@ -4912,7 +4908,7 @@ "target": "multer" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -4920,7 +4916,7 @@ "target": "serde" }, { - "id": "tower 0.5.1", + "id": "tower 0.5.2", "target": "tower" }, { @@ -4981,15 +4977,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -5070,7 +5066,7 @@ "target": "opentelemetry_sdk" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -5160,7 +5156,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -5168,7 +5164,7 @@ "target": "hyper_util" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -5180,7 +5176,7 @@ "target": "rustls_pemfile" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -5254,15 +5250,15 @@ "target": "futures_core" }, { - "id": "getrandom 0.2.10", + "id": "getrandom 0.2.15", "target": "getrandom" }, { - "id": "instant 0.1.12", + "id": "instant 0.1.13", "target": "instant" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -5270,7 +5266,7 @@ "target": "rand" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio", "alias": "tokio_1" } @@ -5287,14 +5283,14 @@ ], "license_file": "LICENSE-APACHE" }, - "backon 0.4.1": { + "backon 0.4.4": { "name": "backon", - "version": "0.4.1", - "package_url": null, + "version": "0.4.4", + "package_url": "https://github.com/Xuanwo/backon", "repository": { "Http": { - "url": "https://static.crates.io/crates/backon/0.4.1/download", - "sha256": "0c1a6197b2120bb2185a267f6515038558b019e92b832bb0320e96d66268dcf9" + "url": "https://static.crates.io/crates/backon/0.4.4/download", + "sha256": "d67782c3f868daa71d3533538e98a8e13713231969def7536e8039606fc46bf0" } }, "targets": [ @@ -5319,7 +5315,7 @@ "deps": { "common": [ { - "id": "fastrand 1.9.0", + "id": "fastrand 2.3.0", "target": "fastrand" }, { @@ -5327,18 +5323,18 @@ "target": "futures_core" }, { - "id": "pin-project 1.1.2", + "id": "pin-project 1.1.8", "target": "pin_project" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "0.4.1" + "version": "0.4.4" }, "license": "Apache-2.0", "license_ids": [ @@ -5346,14 +5342,14 @@ ], "license_file": "LICENSE" }, - "backtrace 0.3.68": { + "backtrace 0.3.74": { "name": "backtrace", - "version": "0.3.68", + "version": "0.3.74", "package_url": "https://github.com/rust-lang/backtrace-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/backtrace/0.3.68/download", - "sha256": "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" + "url": "https://static.crates.io/crates/backtrace/0.3.74/download", + "sha256": "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" } }, "targets": [ @@ -5368,18 +5364,6 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], "library_target_name": "backtrace", @@ -5396,56 +5380,44 @@ }, "deps": { "common": [ - { - "id": "addr2line 0.20.0", - "target": "addr2line" - }, - { - "id": "backtrace 0.3.68", - "target": "build_script_build" - }, { "id": "cfg-if 1.0.0", "target": "cfg_if" }, { - "id": "libc 0.2.158", - "target": "libc" - }, - { - "id": "miniz_oxide 0.7.1", - "target": "miniz_oxide" - }, - { - "id": "object 0.31.1", - "target": "object" - }, - { - "id": "rustc-demangle 0.1.23", + "id": "rustc-demangle 0.1.24", "target": "rustc_demangle" } ], - "selects": {} + "selects": { + "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))": [ + { + "id": "addr2line 0.24.2", + "target": "addr2line" + }, + { + "id": "libc 0.2.169", + "target": "libc" + }, + { + "id": "miniz_oxide 0.8.3", + "target": "miniz_oxide" + }, + { + "id": "object 0.36.7", + "target": "object" + } + ], + "cfg(windows)": [ + { + "id": "windows-targets 0.52.6", + "target": "windows_targets" + } + ] + } }, - "edition": "2018", - "version": "0.3.68" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cc 1.0.83", - "target": "cc" - } - ], - "selects": {} - } + "edition": "2021", + "version": "0.3.74" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -5682,14 +5654,14 @@ ], "license_file": "LICENSE-APACHE" }, - "base64 0.21.6": { + "base64 0.21.7": { "name": "base64", - "version": "0.21.6", + "version": "0.21.7", "package_url": "https://github.com/marshallpierce/rust-base64", "repository": { "Http": { - "url": "https://static.crates.io/crates/base64/0.21.6/download", - "sha256": "c79fed4cdb43e993fcdadc7e58a09fd0e3e649c4436fa11da71c9f1f3ee7feb9" + "url": "https://static.crates.io/crates/base64/0.21.7/download", + "sha256": "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" } }, "targets": [ @@ -5720,7 +5692,7 @@ "selects": {} }, "edition": "2018", - "version": "0.21.6" + "version": "0.21.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -5815,7 +5787,7 @@ "deps": { "common": [ { - "id": "base64 0.21.6", + "id": "base64 0.21.7", "target": "base64" } ], @@ -5875,14 +5847,14 @@ ], "license_file": "LICENSE-APACHE" }, - "basic-toml 0.1.7": { + "basic-toml 0.1.9": { "name": "basic-toml", - "version": "0.1.7", + "version": "0.1.9", "package_url": "https://github.com/dtolnay/basic-toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/basic-toml/0.1.7/download", - "sha256": "2f2139706359229bfa8f19142ac1155b4b80beafb7a60471ac5dd109d4a19778" + "url": "https://static.crates.io/crates/basic-toml/0.1.9/download", + "sha256": "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8" } }, "targets": [ @@ -5914,7 +5886,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.7" + "version": "0.1.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -6210,11 +6182,11 @@ "target": "cexpr" }, { - "id": "clang-sys 1.6.1", + "id": "clang-sys 1.8.1", "target": "clang_sys" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -6226,19 +6198,19 @@ "target": "peeking_take_while" }, { - "id": "prettyplease 0.2.15", + "id": "prettyplease 0.2.29", "target": "prettyplease" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -6250,7 +6222,7 @@ "target": "shlex" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -6269,11 +6241,11 @@ "link_deps": { "common": [ { - "id": "clang-sys 1.6.1", + "id": "clang-sys 1.8.1", "target": "clang_sys" }, { - "id": "prettyplease 0.2.15", + "id": "prettyplease 0.2.29", "target": "prettyplease" } ], @@ -6286,14 +6258,14 @@ ], "license_file": "LICENSE" }, - "bindgen 0.69.4": { + "bindgen 0.69.5": { "name": "bindgen", - "version": "0.69.4", + "version": "0.69.5", "package_url": "https://github.com/rust-lang/rust-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/bindgen/0.69.4/download", - "sha256": "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" + "url": "https://static.crates.io/crates/bindgen/0.69.5/download", + "sha256": "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" } }, "targets": [ @@ -6336,11 +6308,11 @@ "deps": { "common": [ { - "id": "bindgen 0.69.4", + "id": "bindgen 0.69.5", "target": "build_script_build" }, { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -6348,15 +6320,15 @@ "target": "cexpr" }, { - "id": "clang-sys 1.6.1", + "id": "clang-sys 1.8.1", "target": "clang_sys" }, { - "id": "itertools 0.12.0", + "id": "itertools 0.12.1", "target": "itertools" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -6364,15 +6336,15 @@ "target": "lazycell" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -6384,14 +6356,14 @@ "target": "shlex" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.69.4" + "version": "0.69.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -6403,7 +6375,7 @@ "link_deps": { "common": [ { - "id": "clang-sys 1.6.1", + "id": "clang-sys 1.8.1", "target": "clang_sys" } ], @@ -6457,7 +6429,7 @@ "deps": { "common": [ { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" } ], @@ -6471,7 +6443,7 @@ "target": "binread_derive" }, { - "id": "rustversion 1.0.14", + "id": "rustversion 1.0.19", "target": "rustversion" } ], @@ -6523,15 +6495,15 @@ "deps": { "common": [ { - "id": "either 1.8.1", + "id": "either 1.13.0", "target": "either" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -6550,14 +6522,14 @@ ], "license_file": null }, - "bip32 0.5.1": { + "bip32 0.5.2": { "name": "bip32", - "version": "0.5.1", + "version": "0.5.2", "package_url": "https://github.com/iqlusioninc/crates/tree/main/bip32", "repository": { "Http": { - "url": "https://static.crates.io/crates/bip32/0.5.1/download", - "sha256": "7e141fb0f8be1c7b45887af94c88b182472b57c96b56773250ae00cd6a14a164" + "url": "https://static.crates.io/crates/bip32/0.5.2/download", + "sha256": "aa13fae8b6255872fd86f7faf4b41168661d7d78609f7bfe6771b85c6739a15b" } }, "targets": [ @@ -6596,7 +6568,7 @@ "deps": { "common": [ { - "id": "bs58 0.5.0", + "id": "bs58 0.5.1", "target": "bs58" }, { @@ -6608,7 +6580,7 @@ "target": "k256" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -6639,7 +6611,7 @@ "selects": {} }, "edition": "2021", - "version": "0.5.1" + "version": "0.5.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -6673,6 +6645,54 @@ } ], "library_target_name": "bit_set", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "bit-vec 0.6.3", + "target": "bit_vec" + } + ], + "selects": {} + }, + "edition": "2015", + "version": "0.5.3" + }, + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "bit-set 0.8.0": { + "name": "bit-set", + "version": "0.8.0", + "package_url": "https://github.com/contain-rs/bit-set", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/bit-set/0.8.0/download", + "sha256": "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" + } + }, + "targets": [ + { + "Library": { + "crate_name": "bit_set", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "bit_set", "common_attrs": { "compile_data_glob": [ "**" @@ -6687,16 +6707,16 @@ "deps": { "common": [ { - "id": "bit-vec 0.6.3", + "id": "bit-vec 0.8.0", "target": "bit_vec" } ], "selects": {} }, "edition": "2015", - "version": "0.5.3" + "version": "0.8.0" }, - "license": "MIT/Apache-2.0", + "license": "Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" @@ -6749,6 +6769,52 @@ ], "license_file": "LICENSE-APACHE" }, + "bit-vec 0.8.0": { + "name": "bit-vec", + "version": "0.8.0", + "package_url": "https://github.com/contain-rs/bit-vec", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/bit-vec/0.8.0/download", + "sha256": "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" + } + }, + "targets": [ + { + "Library": { + "crate_name": "bit_vec", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "bit_vec", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "std" + ], + "selects": {} + }, + "edition": "2015", + "version": "0.8.0" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "bitcoin 0.28.2": { "name": "bitcoin", "version": "0.28.2", @@ -6819,14 +6885,14 @@ ], "license_file": "LICENSE" }, - "bitcoin 0.30.0": { + "bitcoin 0.30.2": { "name": "bitcoin", - "version": "0.30.0", + "version": "0.30.2", "package_url": "https://github.com/rust-bitcoin/rust-bitcoin/", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitcoin/0.30.0/download", - "sha256": "b36f4c848f6bd9ff208128f08751135846cc23ae57d66ab10a22efff1c675f3c" + "url": "https://static.crates.io/crates/bitcoin/0.30.2/download", + "sha256": "1945a5048598e4189e239d3f809b19bdad4845c4b2ba400d304d2dcf26d2c462" } }, "targets": [ @@ -6878,7 +6944,7 @@ "target": "bech32" }, { - "id": "bitcoin 0.30.0", + "id": "bitcoin 0.30.2", "target": "build_script_build" }, { @@ -6907,7 +6973,7 @@ "selects": {} }, "edition": "2018", - "version": "0.30.0" + "version": "0.30.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -6923,14 +6989,14 @@ ], "license_file": null }, - "bitcoin 0.32.2": { + "bitcoin 0.32.5": { "name": "bitcoin", - "version": "0.32.2", + "version": "0.32.5", "package_url": "https://github.com/rust-bitcoin/rust-bitcoin/", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitcoin/0.32.2/download", - "sha256": "ea507acc1cd80fc084ace38544bbcf7ced7c2aa65b653b102de0ce718df668f6" + "url": "https://static.crates.io/crates/bitcoin/0.32.5/download", + "sha256": "ce6bc65742dea50536e35ad42492b234c27904a27f0abdcbce605015cb4ea026" } }, "targets": [ @@ -6976,7 +7042,7 @@ "target": "bech32" }, { - "id": "bitcoin 0.32.2", + "id": "bitcoin 0.32.5", "target": "build_script_build" }, { @@ -6985,7 +7051,7 @@ "alias": "internals" }, { - "id": "bitcoin-io 0.1.2", + "id": "bitcoin-io 0.1.3", "target": "bitcoin_io", "alias": "io" }, @@ -7009,14 +7075,14 @@ "target": "hex_lit" }, { - "id": "secp256k1 0.29.0", + "id": "secp256k1 0.29.1", "target": "secp256k1" } ], "selects": {} }, "edition": "2021", - "version": "0.32.2" + "version": "0.32.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -7106,14 +7172,14 @@ ], "license_file": null }, - "bitcoin-io 0.1.2": { + "bitcoin-io 0.1.3": { "name": "bitcoin-io", - "version": "0.1.2", + "version": "0.1.3", "package_url": "https://github.com/rust-bitcoin/rust-bitcoin", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitcoin-io/0.1.2/download", - "sha256": "340e09e8399c7bd8912f495af6aa58bea0c9214773417ffaa8f6460f93aaee56" + "url": "https://static.crates.io/crates/bitcoin-io/0.1.3/download", + "sha256": "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf" } }, "targets": [ @@ -7128,6 +7194,18 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], "library_target_name": "bitcoin_io", @@ -7141,8 +7219,25 @@ ], "selects": {} }, + "deps": { + "common": [ + { + "id": "bitcoin-io 0.1.3", + "target": "build_script_build" + } + ], + "selects": {} + }, "edition": "2021", - "version": "0.1.2" + "version": "0.1.3" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] }, "license": "CC0-1.0", "license_ids": [ @@ -7433,7 +7528,7 @@ "deps": { "common": [ { - "id": "bitcoin-io 0.1.2", + "id": "bitcoin-io 0.1.3", "target": "bitcoin_io" }, { @@ -7493,7 +7588,7 @@ "target": "jsonrpc" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -7501,7 +7596,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -7556,7 +7651,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -7615,7 +7710,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -7628,15 +7723,15 @@ "alias": "bitcoincore_rpc" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "tempfile 3.12.0", + "id": "tempfile 3.15.0", "target": "tempfile" }, { - "id": "which 4.4.0", + "id": "which 4.4.2", "target": "which" } ], @@ -7655,7 +7750,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" } ], @@ -7713,14 +7808,14 @@ ], "license_file": "LICENSE-APACHE" }, - "bitflags 2.6.0": { + "bitflags 2.8.0": { "name": "bitflags", - "version": "2.6.0", + "version": "2.8.0", "package_url": "https://github.com/bitflags/bitflags", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitflags/2.6.0/download", - "sha256": "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" + "url": "https://static.crates.io/crates/bitflags/2.8.0/download", + "sha256": "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" } }, "targets": [ @@ -7749,7 +7844,7 @@ "selects": {} }, "edition": "2021", - "version": "2.6.0" + "version": "2.8.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -7957,7 +8052,7 @@ "target": "futures_io" }, { - "id": "futures-lite 2.0.0", + "id": "futures-lite 2.6.0", "target": "futures_lite" }, { @@ -7977,14 +8072,14 @@ ], "license_file": "LICENSE-APACHE" }, - "borsh 1.5.2": { + "borsh 1.5.4": { "name": "borsh", - "version": "1.5.2", + "version": "1.5.4", "package_url": "https://github.com/near/borsh-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/borsh/1.5.2/download", - "sha256": "f5327f6c99920069d1fe374aa743be1af0031dea9f250852cdf1ae6a0861ee24" + "url": "https://static.crates.io/crates/borsh/1.5.4/download", + "sha256": "9fb65153674e51d3a42c8f27b05b9508cea85edfaade8aa46bc8fc18cecdfef3" } }, "targets": [ @@ -8021,14 +8116,14 @@ "deps": { "common": [ { - "id": "borsh 1.5.2", + "id": "borsh 1.5.4", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.5.2" + "version": "1.5.4" }, "build_script_attrs": { "compile_data_glob": [ @@ -8054,14 +8149,14 @@ ], "license_file": null }, - "borsh-derive 1.5.2": { + "borsh-derive 1.5.4": { "name": "borsh-derive", - "version": "1.5.2", + "version": "1.5.4", "package_url": "https://github.com/near/borsh-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/borsh-derive/1.5.2/download", - "sha256": "10aedd8f1a81a8aafbfde924b0e3061cd6fedd6f6bbcfc6a76e6fd426d7bfe26" + "url": "https://static.crates.io/crates/borsh-derive/1.5.4/download", + "sha256": "a396e17ad94059c650db3d253bb6e25927f1eb462eede7e7a153bb6e75dce0a7" } }, "targets": [ @@ -8086,7 +8181,7 @@ "deps": { "common": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -8094,22 +8189,22 @@ "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "1.5.2" + "version": "1.5.4" }, "license": "Apache-2.0", "license_ids": [ @@ -8117,69 +8212,6 @@ ], "license_file": null }, - "brotli 3.3.4": { - "name": "brotli", - "version": "3.3.4", - "package_url": "https://github.com/dropbox/rust-brotli", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/brotli/3.3.4/download", - "sha256": "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" - } - }, - "targets": [ - { - "Library": { - "crate_name": "brotli", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "brotli", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc-stdlib", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "alloc-no-stdlib 2.0.4", - "target": "alloc_no_stdlib" - }, - { - "id": "alloc-stdlib 0.2.2", - "target": "alloc_stdlib" - }, - { - "id": "brotli-decompressor 2.3.4", - "target": "brotli_decompressor" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "3.3.4" - }, - "license": "BSD-3-Clause/MIT", - "license_ids": [ - "BSD-3-Clause", - "MIT" - ], - "license_file": "LICENSE" - }, "brotli 6.0.0": { "name": "brotli", "version": "6.0.0", @@ -8276,6 +8308,7 @@ "crate_features": { "common": [ "alloc-stdlib", + "default", "std" ], "selects": {} @@ -8307,65 +8340,6 @@ ], "license_file": "LICENSE.BSD-3-Clause" }, - "brotli-decompressor 2.3.4": { - "name": "brotli-decompressor", - "version": "2.3.4", - "package_url": "https://github.com/dropbox/rust-brotli-decompressor", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/brotli-decompressor/2.3.4/download", - "sha256": "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744" - } - }, - "targets": [ - { - "Library": { - "crate_name": "brotli_decompressor", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "brotli_decompressor", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc-stdlib", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "alloc-no-stdlib 2.0.4", - "target": "alloc_no_stdlib" - }, - { - "id": "alloc-stdlib 0.2.2", - "target": "alloc_stdlib" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "2.3.4" - }, - "license": "BSD-3-Clause/MIT", - "license_ids": [ - "BSD-3-Clause", - "MIT" - ], - "license_file": "LICENSE" - }, "brotli-decompressor 4.0.1": { "name": "brotli-decompressor", "version": "4.0.1", @@ -8426,14 +8400,14 @@ ], "license_file": "LICENSE" }, - "bs58 0.5.0": { + "bs58 0.5.1": { "name": "bs58", - "version": "0.5.0", + "version": "0.5.1", "package_url": "https://github.com/Nullus157/bs58-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/bs58/0.5.0/download", - "sha256": "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896" + "url": "https://static.crates.io/crates/bs58/0.5.1/download", + "sha256": "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" } }, "targets": [ @@ -8475,7 +8449,7 @@ "selects": {} }, "edition": "2021", - "version": "0.5.0" + "version": "0.5.1" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -8484,14 +8458,14 @@ ], "license_file": "LICENSE-APACHE" }, - "bstr 1.6.0": { + "bstr 1.11.3": { "name": "bstr", - "version": "1.6.0", + "version": "1.11.3", "package_url": "https://github.com/BurntSushi/bstr", "repository": { "Http": { - "url": "https://static.crates.io/crates/bstr/1.6.0/download", - "sha256": "6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05" + "url": "https://static.crates.io/crates/bstr/1.11.3/download", + "sha256": "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0" } }, "targets": [ @@ -8529,14 +8503,14 @@ "target": "memchr" }, { - "id": "regex-automata 0.3.3", + "id": "regex-automata 0.4.9", "target": "regex_automata" } ], "selects": {} }, "edition": "2021", - "version": "1.6.0" + "version": "1.11.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8593,7 +8567,7 @@ "target": "build_info_common" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" } ], @@ -8657,7 +8631,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -8677,23 +8651,23 @@ "target": "cargo_metadata" }, { - "id": "glob 0.3.1", + "id": "glob 0.3.2", "target": "glob" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "pretty_assertions 1.4.0", + "id": "pretty_assertions 1.4.1", "target": "pretty_assertions" }, { - "id": "rustc_version 0.4.0", + "id": "rustc_version 0.4.1", "target": "rustc_version" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -8756,7 +8730,7 @@ "deps": { "common": [ { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -8770,7 +8744,7 @@ "proc_macro_deps": { "common": [ { - "id": "derive_more 0.99.17", + "id": "derive_more 0.99.18", "target": "derive_more" } ], @@ -8827,7 +8801,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -8855,15 +8829,15 @@ "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -8951,14 +8925,14 @@ ], "license_file": "LICENSE-APACHE" }, - "by_address 1.1.0": { + "by_address 1.2.1": { "name": "by_address", - "version": "1.1.0", + "version": "1.2.1", "package_url": "https://github.com/mbrubeck/by_address", "repository": { "Http": { - "url": "https://static.crates.io/crates/by_address/1.1.0/download", - "sha256": "bf8dba2868114ed769a1f2590fc9ae5eb331175b44313b6c9b922f8f7ca813d0" + "url": "https://static.crates.io/crates/by_address/1.2.1/download", + "sha256": "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06" } }, "targets": [ @@ -8980,10 +8954,10 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "1.1.0" + "edition": "2021", + "version": "1.2.1" }, - "license": "MIT / Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -9080,7 +9054,7 @@ "target": "serde" }, { - "id": "utf8-width 0.1.6", + "id": "utf8-width 0.1.7", "target": "utf8_width" } ], @@ -9095,14 +9069,14 @@ ], "license_file": "LICENSE" }, - "bytecheck 0.6.11": { + "bytecheck 0.6.12": { "name": "bytecheck", - "version": "0.6.11", + "version": "0.6.12", "package_url": "https://github.com/djkoloski/bytecheck", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytecheck/0.6.11/download", - "sha256": "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627" + "url": "https://static.crates.io/crates/bytecheck/0.6.12/download", + "sha256": "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" } }, "targets": [ @@ -9139,7 +9113,7 @@ "deps": { "common": [ { - "id": "bytecheck 0.6.11", + "id": "bytecheck 0.6.12", "target": "build_script_build" }, { @@ -9153,13 +9127,13 @@ "proc_macro_deps": { "common": [ { - "id": "bytecheck_derive 0.6.11", + "id": "bytecheck_derive 0.6.12", "target": "bytecheck_derive" } ], "selects": {} }, - "version": "0.6.11" + "version": "0.6.12" }, "build_script_attrs": { "compile_data_glob": [ @@ -9175,14 +9149,14 @@ ], "license_file": "LICENSE" }, - "bytecheck_derive 0.6.11": { + "bytecheck_derive 0.6.12": { "name": "bytecheck_derive", - "version": "0.6.11", + "version": "0.6.12", "package_url": "https://github.com/djkoloski/bytecheck", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytecheck_derive/0.6.11/download", - "sha256": "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61" + "url": "https://static.crates.io/crates/bytecheck_derive/0.6.12/download", + "sha256": "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" } }, "targets": [ @@ -9207,11 +9181,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -9222,7 +9196,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.11" + "version": "0.6.12" }, "license": "MIT", "license_ids": [ @@ -9230,14 +9204,14 @@ ], "license_file": "LICENSE" }, - "bytemuck 1.13.1": { + "bytemuck 1.21.0": { "name": "bytemuck", - "version": "1.13.1", + "version": "1.21.0", "package_url": "https://github.com/Lokathor/bytemuck", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytemuck/1.13.1/download", - "sha256": "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" + "url": "https://static.crates.io/crates/bytemuck/1.21.0/download", + "sha256": "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3" } }, "targets": [ @@ -9260,7 +9234,7 @@ "**" ], "edition": "2018", - "version": "1.13.1" + "version": "1.21.0" }, "license": "Zlib OR Apache-2.0 OR MIT", "license_ids": [ @@ -9416,14 +9390,14 @@ ], "license_file": "LICENSE" }, - "bytestring 1.3.0": { + "bytestring 1.4.0": { "name": "bytestring", - "version": "1.3.0", - "package_url": "https://github.com/actix/actix-net.git", + "version": "1.4.0", + "package_url": "https://github.com/actix/actix-net", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytestring/1.3.0/download", - "sha256": "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae" + "url": "https://static.crates.io/crates/bytestring/1.4.0/download", + "sha256": "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f" } }, "targets": [ @@ -9454,8 +9428,8 @@ ], "selects": {} }, - "edition": "2018", - "version": "1.3.0" + "edition": "2021", + "version": "1.4.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -9512,7 +9486,7 @@ "target": "build_script_build" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -9531,11 +9505,11 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" } ], @@ -9589,14 +9563,14 @@ ], "license_file": null }, - "cached 0.49.2": { + "cached 0.49.3": { "name": "cached", - "version": "0.49.2", + "version": "0.49.3", "package_url": "https://github.com/jaemk/cached", "repository": { "Http": { - "url": "https://static.crates.io/crates/cached/0.49.2/download", - "sha256": "f251fd1e72720ca07bf5d8e310f54a193fd053479a1f6342c6663ee4fa01cf96" + "url": "https://static.crates.io/crates/cached/0.49.3/download", + "sha256": "8e8e463fceca5674287f32d252fb1d94083758b8709c160efae66d263e5f4eba" } }, "targets": [ @@ -9625,22 +9599,22 @@ "target": "hashbrown" }, { - "id": "instant 0.1.12", + "id": "instant 0.1.13", "target": "instant" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], "selects": {} }, "edition": "2018", - "version": "0.49.2" + "version": "0.49.3" }, "license": "MIT", "license_ids": [ @@ -9694,15 +9668,15 @@ "target": "hashbrown" }, { - "id": "instant 0.1.12", + "id": "instant 0.1.13", "target": "instant" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -9771,11 +9745,11 @@ "target": "hashbrown" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -9839,15 +9813,15 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -9900,14 +9874,14 @@ ], "license_file": "LICENSE" }, - "camino 1.1.6": { + "camino 1.1.9": { "name": "camino", - "version": "1.1.6", + "version": "1.1.9", "package_url": "https://github.com/camino-rs/camino", "repository": { "Http": { - "url": "https://static.crates.io/crates/camino/1.1.6/download", - "sha256": "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" + "url": "https://static.crates.io/crates/camino/1.1.9/download", + "sha256": "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" } }, "targets": [ @@ -9951,7 +9925,7 @@ "deps": { "common": [ { - "id": "camino 1.1.6", + "id": "camino 1.1.9", "target": "build_script_build" }, { @@ -9962,7 +9936,7 @@ "selects": {} }, "edition": "2018", - "version": "1.1.6" + "version": "1.1.9" }, "build_script_attrs": { "compile_data_glob": [ @@ -10027,19 +10001,19 @@ "target": "canbench_rs" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "clap 4.5.20", + "id": "clap 4.5.26", "target": "clap" }, { - "id": "colored 2.0.4", + "id": "colored 2.2.0", "target": "colored" }, { - "id": "flate2 1.0.31", + "id": "flate2 1.0.35", "target": "flate2" }, { @@ -10055,7 +10029,7 @@ "target": "reqwest" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -10071,7 +10045,7 @@ "target": "sha256" }, { - "id": "tempfile 3.12.0", + "id": "tempfile 3.15.0", "target": "tempfile" }, { @@ -10122,7 +10096,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -10186,11 +10160,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -10209,14 +10183,14 @@ ], "license_file": null }, - "candid 0.10.10": { + "candid 0.10.12": { "name": "candid", - "version": "0.10.10", + "version": "0.10.12", "package_url": "https://github.com/dfinity/candid", "repository": { "Http": { - "url": "https://static.crates.io/crates/candid/0.10.10/download", - "sha256": "6c30ee7f886f296b6422c0ff017e89dd4f831521dfdcc76f3f71aae1ce817222" + "url": "https://static.crates.io/crates/candid/0.10.12/download", + "sha256": "51e129c4051c57daf943586e01ef72faae48b04a8f692d5f646febf17a264c38" } }, "targets": [ @@ -10252,7 +10226,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -10284,7 +10258,7 @@ "target": "num_traits" }, { - "id": "pretty 0.12.1", + "id": "pretty 0.12.3", "target": "pretty" }, { @@ -10296,14 +10270,14 @@ "target": "serde_bytes" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], "selects": { "cfg(not(target_arch = \"wasm32\"))": [ { - "id": "stacker 0.1.15", + "id": "stacker 0.1.17", "target": "stacker" } ] @@ -10323,7 +10297,7 @@ ], "selects": {} }, - "version": "0.10.10" + "version": "0.10.12" }, "license": "Apache-2.0", "license_ids": [ @@ -10363,19 +10337,19 @@ "deps": { "common": [ { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -10390,14 +10364,14 @@ ], "license_file": "LICENSE" }, - "candid_parser 0.1.2": { + "candid_parser 0.1.4": { "name": "candid_parser", - "version": "0.1.2", + "version": "0.1.4", "package_url": "https://github.com/dfinity/candid", "repository": { "Http": { - "url": "https://static.crates.io/crates/candid_parser/0.1.2/download", - "sha256": "36381de3ba8a312deb028552c0d63f7c7fe6e204f44bae4c58a3643308cfa9d5" + "url": "https://static.crates.io/crates/candid_parser/0.1.4/download", + "sha256": "48a3da76f989cd350b7342c64c6c6008341bb6186f6832ef04e56dc50ba0fd76" } }, "targets": [ @@ -10434,15 +10408,15 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "candid_parser 0.1.2", + "id": "candid_parser 0.1.4", "target": "build_script_build" }, { @@ -10458,7 +10432,7 @@ "target": "hex" }, { - "id": "lalrpop-util 0.20.0", + "id": "lalrpop-util 0.20.2", "target": "lalrpop_util" }, { @@ -10470,18 +10444,18 @@ "target": "num_bigint" }, { - "id": "pretty 0.12.1", + "id": "pretty 0.12.3", "target": "pretty" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], "selects": {} }, "edition": "2021", - "version": "0.1.2" + "version": "0.1.4" }, "build_script_attrs": { "compile_data_glob": [ @@ -10493,7 +10467,7 @@ "deps": { "common": [ { - "id": "lalrpop 0.20.0", + "id": "lalrpop 0.20.2", "target": "lalrpop" } ], @@ -10506,14 +10480,14 @@ ], "license_file": "LICENSE" }, - "cargo-platform 0.1.3": { + "cargo-platform 0.1.9": { "name": "cargo-platform", - "version": "0.1.3", + "version": "0.1.9", "package_url": "https://github.com/rust-lang/cargo", "repository": { "Http": { - "url": "https://static.crates.io/crates/cargo-platform/0.1.3/download", - "sha256": "2cfa25e60aea747ec7e1124f238816749faa93759c6ff5b31f1ccdda137f4479" + "url": "https://static.crates.io/crates/cargo-platform/0.1.9/download", + "sha256": "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" } }, "targets": [ @@ -10545,7 +10519,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.3" + "version": "0.1.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -10592,15 +10566,15 @@ "deps": { "common": [ { - "id": "camino 1.1.6", + "id": "camino 1.1.9", "target": "camino" }, { - "id": "cargo-platform 0.1.3", + "id": "cargo-platform 0.1.9", "target": "cargo_platform" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -10608,7 +10582,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -10662,14 +10636,14 @@ ], "license_file": "LICENSE-APACHE" }, - "cc 1.0.83": { + "cc 1.2.9": { "name": "cc", - "version": "1.0.83", + "version": "1.2.9", "package_url": "https://github.com/rust-lang/cc-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/cc/1.0.83/download", - "sha256": "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0", + "url": "https://static.crates.io/crates/cc/1.2.9/download", + "sha256": "c8293772165d9345bdaaa39b45b2109591e63fe5e6fbc23c6ff930a048aa310b", "patch_args": [ "-p1" ], @@ -10701,160 +10675,189 @@ "common": [], "selects": { "aarch64-apple-darwin": [ - "jobserver", "parallel" ], "aarch64-pc-windows-msvc": [ - "jobserver", "parallel" ], "aarch64-unknown-linux-gnu": [ - "jobserver", "parallel" ], "aarch64-unknown-nixos-gnu": [ - "jobserver", "parallel" ], "arm-unknown-linux-gnueabi": [ - "jobserver", "parallel" ], "i686-pc-windows-msvc": [ - "jobserver", "parallel" ], "i686-unknown-linux-gnu": [ - "jobserver", "parallel" ], "powerpc-unknown-linux-gnu": [ - "jobserver", "parallel" ], "s390x-unknown-linux-gnu": [ - "jobserver", "parallel" ], "x86_64-apple-darwin": [ - "jobserver", "parallel" ], "x86_64-pc-windows-msvc": [ - "jobserver", "parallel" ], "x86_64-unknown-freebsd": [ - "jobserver", "parallel" ], "x86_64-unknown-linux-gnu": [ - "jobserver", "parallel" ], "x86_64-unknown-nixos-gnu": [ - "jobserver", "parallel" ] } }, "deps": { - "common": [], + "common": [ + { + "id": "shlex 1.3.0", + "target": "shlex" + } + ], "selects": { "aarch64-apple-darwin": [ { - "id": "jobserver 0.1.26", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "aarch64-pc-windows-msvc": [ { - "id": "jobserver 0.1.26", + "id": "jobserver 0.1.32", "target": "jobserver" } ], "aarch64-unknown-linux-gnu": [ { - "id": "jobserver 0.1.26", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "jobserver 0.1.26", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "arm-unknown-linux-gnueabi": [ { - "id": "jobserver 0.1.26", + "id": "jobserver 0.1.32", "target": "jobserver" - } - ], - "cfg(unix)": [ + }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-pc-windows-msvc": [ { - "id": "jobserver 0.1.26", + "id": "jobserver 0.1.32", "target": "jobserver" } ], "i686-unknown-linux-gnu": [ { - "id": "jobserver 0.1.26", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "powerpc-unknown-linux-gnu": [ { - "id": "jobserver 0.1.26", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "s390x-unknown-linux-gnu": [ { - "id": "jobserver 0.1.26", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "x86_64-apple-darwin": [ { - "id": "jobserver 0.1.26", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "x86_64-pc-windows-msvc": [ { - "id": "jobserver 0.1.26", + "id": "jobserver 0.1.32", "target": "jobserver" } ], "x86_64-unknown-freebsd": [ { - "id": "jobserver 0.1.26", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "x86_64-unknown-linux-gnu": [ { - "id": "jobserver 0.1.26", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "jobserver 0.1.26", + "id": "jobserver 0.1.32", "target": "jobserver" + }, + { + "id": "libc 0.2.169", + "target": "libc" } ] } }, "edition": "2018", - "version": "1.0.83" + "version": "1.2.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -10931,11 +10934,11 @@ "target": "base64_url" }, { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { - "id": "ciborium 0.2.1", + "id": "ciborium 0.2.2", "target": "ciborium" }, { @@ -10947,7 +10950,7 @@ "target": "codespan_reporting" }, { - "id": "data-encoding 2.4.0", + "id": "data-encoding 2.7.0", "target": "data_encoding" }, { @@ -10963,23 +10966,23 @@ "target": "lexical_core" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "pest_meta 2.7.1", + "id": "pest_meta 2.7.15", "target": "pest_meta" }, { - "id": "pest_vm 2.7.1", + "id": "pest_vm 2.7.15", "target": "pest_vm" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { - "id": "regex-syntax 0.7.4", + "id": "regex-syntax 0.7.5", "target": "regex_syntax" }, { @@ -10987,7 +10990,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -11150,17 +11153,7 @@ "target": "serde_wasm_bindgen" }, { - "id": "wasm-bindgen 0.2.95", - "target": "wasm_bindgen" - } - ], - "wasm32-wasi": [ - { - "id": "serde-wasm-bindgen 0.5.0", - "target": "serde_wasm_bindgen" - }, - { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], @@ -11170,7 +11163,7 @@ "target": "serde_wasm_bindgen" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], @@ -11234,7 +11227,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], @@ -11500,7 +11493,7 @@ "selects": { "cfg(any(target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.9", + "id": "cpufeatures 0.2.16", "target": "cpufeatures" } ] @@ -11589,14 +11582,14 @@ ], "license_file": "LICENSE-APACHE" }, - "chrono 0.4.38": { + "chrono 0.4.39": { "name": "chrono", - "version": "0.4.38", + "version": "0.4.39", "package_url": "https://github.com/chronotope/chrono", "repository": { "Http": { - "url": "https://static.crates.io/crates/chrono/0.4.38/download", - "sha256": "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" + "url": "https://static.crates.io/crates/chrono/0.4.39/download", + "sha256": "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825" } }, "targets": [ @@ -11651,19 +11644,19 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "aarch64-apple-ios": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "aarch64-apple-ios-sim": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], @@ -11673,7 +11666,7 @@ "target": "android_tzdata" }, { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], @@ -11685,31 +11678,31 @@ ], "aarch64-unknown-fuchsia": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "aarch64-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "arm-unknown-linux-gnueabi": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], @@ -11719,19 +11712,19 @@ "target": "android_tzdata" }, { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "i686-apple-darwin": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], @@ -11741,7 +11734,7 @@ "target": "android_tzdata" }, { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], @@ -11753,47 +11746,47 @@ ], "i686-unknown-freebsd": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "i686-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "powerpc-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "s390x-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "wasm32-unknown-unknown": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], "x86_64-apple-darwin": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "x86_64-apple-ios": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], @@ -11803,7 +11796,7 @@ "target": "android_tzdata" }, { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], @@ -11815,32 +11808,32 @@ ], "x86_64-unknown-freebsd": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "x86_64-unknown-fuchsia": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "x86_64-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "iana-time-zone 0.1.59", + "id": "iana-time-zone 0.1.61", "target": "iana_time_zone" } ] } }, "edition": "2021", - "version": "0.4.38" + "version": "0.4.39" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -11849,14 +11842,14 @@ ], "license_file": "LICENSE.txt" }, - "ciborium 0.2.1": { + "ciborium 0.2.2": { "name": "ciborium", - "version": "0.2.1", + "version": "0.2.2", "package_url": "https://github.com/enarx/ciborium", "repository": { "Http": { - "url": "https://static.crates.io/crates/ciborium/0.2.1/download", - "sha256": "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" + "url": "https://static.crates.io/crates/ciborium/0.2.2/download", + "sha256": "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" } }, "targets": [ @@ -11888,11 +11881,11 @@ "deps": { "common": [ { - "id": "ciborium-io 0.2.1", + "id": "ciborium-io 0.2.2", "target": "ciborium_io" }, { - "id": "ciborium-ll 0.2.1", + "id": "ciborium-ll 0.2.2", "target": "ciborium_ll" }, { @@ -11903,7 +11896,7 @@ "selects": {} }, "edition": "2021", - "version": "0.2.1" + "version": "0.2.2" }, "license": "Apache-2.0", "license_ids": [ @@ -11911,14 +11904,14 @@ ], "license_file": "LICENSE" }, - "ciborium-io 0.2.1": { + "ciborium-io 0.2.2": { "name": "ciborium-io", - "version": "0.2.1", + "version": "0.2.2", "package_url": "https://github.com/enarx/ciborium", "repository": { "Http": { - "url": "https://static.crates.io/crates/ciborium-io/0.2.1/download", - "sha256": "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" + "url": "https://static.crates.io/crates/ciborium-io/0.2.2/download", + "sha256": "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" } }, "targets": [ @@ -11948,7 +11941,7 @@ "selects": {} }, "edition": "2021", - "version": "0.2.1" + "version": "0.2.2" }, "license": "Apache-2.0", "license_ids": [ @@ -11956,14 +11949,14 @@ ], "license_file": "LICENSE" }, - "ciborium-ll 0.2.1": { + "ciborium-ll 0.2.2": { "name": "ciborium-ll", - "version": "0.2.1", + "version": "0.2.2", "package_url": "https://github.com/enarx/ciborium", "repository": { "Http": { - "url": "https://static.crates.io/crates/ciborium-ll/0.2.1/download", - "sha256": "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" + "url": "https://static.crates.io/crates/ciborium-ll/0.2.2/download", + "sha256": "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" } }, "targets": [ @@ -11988,18 +11981,18 @@ "deps": { "common": [ { - "id": "ciborium-io 0.2.1", + "id": "ciborium-io 0.2.2", "target": "ciborium_io" }, { - "id": "half 1.8.2", + "id": "half 2.4.1", "target": "half" } ], "selects": {} }, "edition": "2021", - "version": "0.2.1" + "version": "0.2.2" }, "license": "Apache-2.0", "license_ids": [ @@ -12114,14 +12107,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clang-sys 1.6.1": { + "clang-sys 1.8.1": { "name": "clang-sys", - "version": "1.6.1", + "version": "1.8.1", "package_url": "https://github.com/KyleMayes/clang-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/clang-sys/1.6.1/download", - "sha256": "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" + "url": "https://static.crates.io/crates/clang-sys/1.8.1/download", + "sha256": "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" } }, "targets": [ @@ -12173,26 +12166,26 @@ "deps": { "common": [ { - "id": "clang-sys 1.6.1", + "id": "clang-sys 1.8.1", "target": "build_script_build" }, { - "id": "glob 0.3.1", + "id": "glob 0.3.2", "target": "glob" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "libloading 0.7.4", + "id": "libloading 0.8.6", "target": "libloading" } ], "selects": {} }, - "edition": "2015", - "version": "1.6.1" + "edition": "2021", + "version": "1.8.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -12204,7 +12197,7 @@ "deps": { "common": [ { - "id": "glob 0.3.1", + "id": "glob 0.3.2", "target": "glob" } ], @@ -12281,7 +12274,7 @@ "target": "indexmap" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -12293,7 +12286,7 @@ "target": "termcolor" }, { - "id": "textwrap 0.16.0", + "id": "textwrap 0.16.1", "target": "textwrap" } ], @@ -12318,14 +12311,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap 4.5.20": { + "clap 4.5.26": { "name": "clap", - "version": "4.5.20", + "version": "4.5.26", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap/4.5.20/download", - "sha256": "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" + "url": "https://static.crates.io/crates/clap/4.5.26/download", + "sha256": "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783" } }, "targets": [ @@ -12366,7 +12359,7 @@ "deps": { "common": [ { - "id": "clap_builder 4.5.20", + "id": "clap_builder 4.5.26", "target": "clap_builder" } ], @@ -12376,13 +12369,13 @@ "proc_macro_deps": { "common": [ { - "id": "clap_derive 4.5.18", + "id": "clap_derive 4.5.24", "target": "clap_derive" } ], "selects": {} }, - "version": "4.5.20" + "version": "4.5.26" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -12391,14 +12384,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_builder 4.5.20": { + "clap_builder 4.5.26": { "name": "clap_builder", - "version": "4.5.20", + "version": "4.5.26", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_builder/4.5.20/download", - "sha256": "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" + "url": "https://static.crates.io/crates/clap_builder/4.5.26/download", + "sha256": "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121" } }, "targets": [ @@ -12437,15 +12430,15 @@ "deps": { "common": [ { - "id": "anstream 0.6.15", + "id": "anstream 0.6.18", "target": "anstream" }, { - "id": "anstyle 1.0.8", + "id": "anstyle 1.0.10", "target": "anstyle" }, { - "id": "clap_lex 0.7.2", + "id": "clap_lex 0.7.4", "target": "clap_lex" }, { @@ -12456,7 +12449,7 @@ "selects": {} }, "edition": "2021", - "version": "4.5.20" + "version": "4.5.26" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -12511,11 +12504,11 @@ "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -12535,14 +12528,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_derive 4.5.18": { + "clap_derive 4.5.24": { "name": "clap_derive", - "version": "4.5.18", + "version": "4.5.24", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_derive/4.5.18/download", - "sha256": "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" + "url": "https://static.crates.io/crates/clap_derive/4.5.24/download", + "sha256": "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c" } }, "targets": [ @@ -12577,22 +12570,22 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "4.5.18" + "version": "4.5.24" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -12633,7 +12626,7 @@ "deps": { "common": [ { - "id": "os_str_bytes 6.5.1", + "id": "os_str_bytes 6.6.1", "target": "os_str_bytes" } ], @@ -12649,14 +12642,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_lex 0.7.2": { + "clap_lex 0.7.4": { "name": "clap_lex", - "version": "0.7.2", + "version": "0.7.4", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_lex/0.7.2/download", - "sha256": "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" + "url": "https://static.crates.io/crates/clap_lex/0.7.4/download", + "sha256": "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" } }, "targets": [ @@ -12679,7 +12672,7 @@ "**" ], "edition": "2021", - "version": "0.7.2" + "version": "0.7.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -12720,11 +12713,11 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -12826,7 +12819,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { @@ -12846,7 +12839,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -12858,15 +12851,15 @@ "target": "serde_with" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" }, { - "id": "uuid 1.11.0", + "id": "uuid 1.12.0", "target": "uuid" } ], @@ -12956,7 +12949,7 @@ "target": "termcolor" }, { - "id": "unicode-width 0.1.10", + "id": "unicode-width 0.1.14", "target": "unicode_width" } ], @@ -12971,14 +12964,14 @@ ], "license_file": null }, - "colorchoice 1.0.0": { + "colorchoice 1.0.3": { "name": "colorchoice", - "version": "1.0.0", - "package_url": "https://github.com/rust-cli/anstyle", + "version": "1.0.3", + "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/colorchoice/1.0.0/download", - "sha256": "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" + "url": "https://static.crates.io/crates/colorchoice/1.0.3/download", + "sha256": "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" } }, "targets": [ @@ -13001,7 +12994,7 @@ "**" ], "edition": "2021", - "version": "1.0.0" + "version": "1.0.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13010,14 +13003,14 @@ ], "license_file": "LICENSE-APACHE" }, - "colored 2.0.4": { + "colored 2.2.0": { "name": "colored", - "version": "2.0.4", + "version": "2.2.0", "package_url": "https://github.com/mackwic/colored", "repository": { "Http": { - "url": "https://static.crates.io/crates/colored/2.0.4/download", - "sha256": "2674ec482fbc38012cf31e6c42ba0177b431a0cb6f15fe40efa5aab1bda516f6" + "url": "https://static.crates.io/crates/colored/2.2.0/download", + "sha256": "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c" } }, "targets": [ @@ -13042,25 +13035,21 @@ "deps": { "common": [ { - "id": "is-terminal 0.4.9", - "target": "is_terminal" - }, - { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" } ], "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.48.0", + "id": "windows-sys 0.59.0", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "2.0.4" + "version": "2.2.0" }, "license": "MPL-2.0", "license_ids": [ @@ -13128,14 +13117,14 @@ ], "license_file": "LICENSE" }, - "comparable 0.5.4": { + "comparable 0.5.5": { "name": "comparable", - "version": "0.5.4", + "version": "0.5.5", "package_url": "https://github.com/jwiegley/comparable", "repository": { "Http": { - "url": "https://static.crates.io/crates/comparable/0.5.4/download", - "sha256": "eb513ee8037bf08c5270ecefa48da249f4c58e57a71ccfce0a5b0877d2a20eb2" + "url": "https://static.crates.io/crates/comparable/0.5.5/download", + "sha256": "8606f9aa5b5a2df738584b139c79413d0c1545ed0ffd16e76e0944d1de7388c0" } }, "targets": [ @@ -13167,7 +13156,7 @@ "deps": { "common": [ { - "id": "pretty_assertions 1.4.0", + "id": "pretty_assertions 1.4.1", "target": "pretty_assertions" }, { @@ -13181,17 +13170,17 @@ "proc_macro_deps": { "common": [ { - "id": "comparable_derive 0.5.4", + "id": "comparable_derive 0.5.5", "target": "comparable_derive" }, { - "id": "comparable_helper 0.5.4", + "id": "comparable_helper 0.5.5", "target": "comparable_helper" } ], "selects": {} }, - "version": "0.5.4" + "version": "0.5.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13200,14 +13189,14 @@ ], "license_file": "LICENSE-APACHE" }, - "comparable_derive 0.5.4": { + "comparable_derive 0.5.5": { "name": "comparable_derive", - "version": "0.5.4", + "version": "0.5.5", "package_url": "https://github.com/jwiegley/comparable", "repository": { "Http": { - "url": "https://static.crates.io/crates/comparable_derive/0.5.4/download", - "sha256": "a54b9c40054eb8999c5d1d36fdc90e4e5f7ff0d1d9621706f360b3cbc8beb828" + "url": "https://static.crates.io/crates/comparable_derive/0.5.5/download", + "sha256": "41f36ea7383b9a2a9ae0a4e225d8a9c1c3aeadde78c59cdc35bad5c02b4dad01" } }, "targets": [ @@ -13236,11 +13225,11 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -13251,7 +13240,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.4" + "version": "0.5.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13260,14 +13249,14 @@ ], "license_file": "LICENSE-APACHE" }, - "comparable_helper 0.5.4": { + "comparable_helper 0.5.5": { "name": "comparable_helper", - "version": "0.5.4", + "version": "0.5.5", "package_url": "https://github.com/jwiegley/comparable", "repository": { "Http": { - "url": "https://static.crates.io/crates/comparable_helper/0.5.4/download", - "sha256": "fb5437e327e861081c91270becff184859f706e3e50f5301a9d4dc8eb50752c3" + "url": "https://static.crates.io/crates/comparable_helper/0.5.5/download", + "sha256": "71c9b60259084f32c14d32476f3a299b4997e3c186e1473bd972ff8a8c83d1b4" } }, "targets": [ @@ -13296,11 +13285,11 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -13311,7 +13300,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.4" + "version": "0.5.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13359,7 +13348,7 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" } ], @@ -13418,15 +13407,15 @@ "deps": { "common": [ { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -13434,14 +13423,14 @@ "target": "terminal_size" }, { - "id": "unicode-width 0.1.10", + "id": "unicode-width 0.1.14", "target": "unicode_width" } ], "selects": { "aarch64-pc-windows-msvc": [ { - "id": "winapi-util 0.1.5", + "id": "winapi-util 0.1.9", "target": "winapi_util" } ], @@ -13463,13 +13452,13 @@ ], "i686-pc-windows-msvc": [ { - "id": "winapi-util 0.1.5", + "id": "winapi-util 0.1.9", "target": "winapi_util" } ], "x86_64-pc-windows-msvc": [ { - "id": "winapi-util 0.1.5", + "id": "winapi-util 0.1.9", "target": "winapi_util" } ] @@ -13484,14 +13473,14 @@ ], "license_file": "LICENSE" }, - "console 0.15.7": { + "console 0.15.10": { "name": "console", - "version": "0.15.7", + "version": "0.15.10", "package_url": "https://github.com/console-rs/console", "repository": { "Http": { - "url": "https://static.crates.io/crates/console/0.15.7/download", - "sha256": "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" + "url": "https://static.crates.io/crates/console/0.15.10/download", + "sha256": "ea3c6ecd8059b57859df5c69830340ed3c41d30e3da0c1cbed90a96ac853041b" } }, "targets": [ @@ -13523,33 +13512,33 @@ "deps": { "common": [ { - "id": "lazy_static 1.4.0", - "target": "lazy_static" + "id": "libc 0.2.169", + "target": "libc" }, { - "id": "libc 0.2.158", - "target": "libc" + "id": "once_cell 1.20.2", + "target": "once_cell" }, { - "id": "unicode-width 0.1.10", + "id": "unicode-width 0.2.0", "target": "unicode_width" } ], "selects": { "cfg(windows)": [ { - "id": "encode_unicode 0.3.6", + "id": "encode_unicode 1.0.0", "target": "encode_unicode" }, { - "id": "windows-sys 0.45.0", + "id": "windows-sys 0.59.0", "target": "windows_sys" } ] } }, "edition": "2018", - "version": "0.15.7" + "version": "0.15.10" }, "license": "MIT", "license_ids": [ @@ -13593,7 +13582,7 @@ "target": "cfg_if" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], @@ -13609,14 +13598,82 @@ ], "license_file": "LICENSE-APACHE" }, - "const-oid 0.9.4": { + "const-hex 1.14.0": { + "name": "const-hex", + "version": "1.14.0", + "package_url": "https://github.com/danipopes/const-hex", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/const-hex/1.14.0/download", + "sha256": "4b0485bab839b018a8f1723fc5391819fea5f8f0f32288ef8a735fd096b6160c" + } + }, + "targets": [ + { + "Library": { + "crate_name": "const_hex", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "const_hex", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc", + "default", + "hex", + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "cfg-if 1.0.0", + "target": "cfg_if" + }, + { + "id": "hex 0.4.3", + "target": "hex" + } + ], + "selects": { + "cfg(any(target_arch = \"x86\", target_arch = \"x86_64\"))": [ + { + "id": "cpufeatures 0.2.16", + "target": "cpufeatures" + } + ] + } + }, + "edition": "2021", + "version": "1.14.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "const-oid 0.9.6": { "name": "const-oid", - "version": "0.9.4", + "version": "0.9.6", "package_url": "https://github.com/RustCrypto/formats/tree/master/const-oid", "repository": { "Http": { - "url": "https://static.crates.io/crates/const-oid/0.9.4/download", - "sha256": "795bc6e66a8e340f075fcf6227e417a2dc976b92b91f3cdc778bb858778b6747" + "url": "https://static.crates.io/crates/const-oid/0.9.6/download", + "sha256": "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" } }, "targets": [ @@ -13646,7 +13703,7 @@ "selects": {} }, "edition": "2021", - "version": "0.9.4" + "version": "0.9.6" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -13725,7 +13782,7 @@ "deps": { "common": [ { - "id": "unicode-segmentation 1.10.1", + "id": "unicode-segmentation 1.12.0", "target": "unicode_segmentation" } ], @@ -13799,7 +13856,7 @@ "target": "percent_encoding" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -13818,7 +13875,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.4", + "id": "version_check 0.9.5", "target": "version_check" } ], @@ -13875,7 +13932,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -13891,6 +13948,65 @@ ], "license_file": "LICENSE-APACHE" }, + "core-foundation 0.10.0": { + "name": "core-foundation", + "version": "0.10.0", + "package_url": "https://github.com/servo/core-foundation-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/core-foundation/0.10.0/download", + "sha256": "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" + } + }, + "targets": [ + { + "Library": { + "crate_name": "core_foundation", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "core_foundation", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "link" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "core-foundation-sys 0.8.7", + "target": "core_foundation_sys" + }, + { + "id": "libc 0.2.169", + "target": "libc" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.10.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "core-foundation-sys 0.8.7": { "name": "core-foundation-sys", "version": "0.8.7", @@ -13981,7 +14097,7 @@ "target": "jsonrpc" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -13989,7 +14105,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -14036,7 +14152,7 @@ "deps": { "common": [ { - "id": "bitcoin 0.30.0", + "id": "bitcoin 0.30.2", "target": "bitcoin" }, { @@ -14048,7 +14164,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -14118,14 +14234,14 @@ ], "license_file": "LICENSE-APACHE" }, - "cpufeatures 0.2.9": { + "cpufeatures 0.2.16": { "name": "cpufeatures", - "version": "0.2.9", + "version": "0.2.16", "package_url": "https://github.com/RustCrypto/utils", "repository": { "Http": { - "url": "https://static.crates.io/crates/cpufeatures/0.2.9/download", - "sha256": "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" + "url": "https://static.crates.io/crates/cpufeatures/0.2.16/download", + "sha256": "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3" } }, "targets": [ @@ -14152,26 +14268,32 @@ "selects": { "aarch64-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", + "target": "libc" + } + ], + "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))": [ + { + "id": "libc 0.2.169", "target": "libc" } ] } }, "edition": "2018", - "version": "0.2.9" + "version": "0.2.16" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -14180,14 +14302,14 @@ ], "license_file": "LICENSE-APACHE" }, - "cranelift-bforest 0.115.0": { + "cranelift-bforest 0.115.1": { "name": "cranelift-bforest", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-bforest/0.115.0/download", - "sha256": "ac89549be94911dd0e839b4a7db99e9ed29c17517e1c026f61066884c168aa3c" + "url": "https://static.crates.io/crates/cranelift-bforest/0.115.1/download", + "sha256": "88c1d02b72b6c411c0a2e92b25ed791ad5d071184193c08a34aa0fdcdf000b72" } }, "targets": [ @@ -14212,14 +14334,14 @@ "deps": { "common": [ { - "id": "cranelift-entity 0.115.0", + "id": "cranelift-entity 0.115.1", "target": "cranelift_entity" } ], "selects": {} }, "edition": "2021", - "version": "0.115.0" + "version": "0.115.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14227,14 +14349,14 @@ ], "license_file": "LICENSE" }, - "cranelift-bitset 0.115.0": { + "cranelift-bitset 0.115.1": { "name": "cranelift-bitset", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-bitset/0.115.0/download", - "sha256": "b9bd49369f76c77e34e641af85d0956869237832c118964d08bf5f51f210875a" + "url": "https://static.crates.io/crates/cranelift-bitset/0.115.1/download", + "sha256": "720b93bd86ebbb23ebfb2db1ed44d54b2ecbdbb2d034d485bc64aa605ee787ab" } }, "targets": [ @@ -14281,7 +14403,7 @@ ], "selects": {} }, - "version": "0.115.0" + "version": "0.115.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14289,14 +14411,14 @@ ], "license_file": null }, - "cranelift-codegen 0.115.0": { + "cranelift-codegen 0.115.1": { "name": "cranelift-codegen", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-codegen/0.115.0/download", - "sha256": "fd96ce9cf8efebd7f5ab8ced5a0ce44250280bbae9f593d74a6d7effc3582a35" + "url": "https://static.crates.io/crates/cranelift-codegen/0.115.1/download", + "sha256": "aed3d2d9914d30b460eedd7fd507720203023997bef71452ce84873f9c93537c" } }, "targets": [ @@ -14347,27 +14469,27 @@ "target": "bumpalo" }, { - "id": "cranelift-bforest 0.115.0", + "id": "cranelift-bforest 0.115.1", "target": "cranelift_bforest" }, { - "id": "cranelift-bitset 0.115.0", + "id": "cranelift-bitset 0.115.1", "target": "cranelift_bitset" }, { - "id": "cranelift-codegen 0.115.0", + "id": "cranelift-codegen 0.115.1", "target": "build_script_build" }, { - "id": "cranelift-codegen-shared 0.115.0", + "id": "cranelift-codegen-shared 0.115.1", "target": "cranelift_codegen_shared" }, { - "id": "cranelift-control 0.115.0", + "id": "cranelift-control 0.115.1", "target": "cranelift_control" }, { - "id": "cranelift-entity 0.115.0", + "id": "cranelift-entity 0.115.1", "target": "cranelift_entity" }, { @@ -14379,7 +14501,7 @@ "target": "hashbrown" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -14387,7 +14509,7 @@ "target": "regalloc2" }, { - "id": "rustc-hash 2.0.0", + "id": "rustc-hash 2.1.0", "target": "rustc_hash" }, { @@ -14402,7 +14524,7 @@ "selects": {} }, "edition": "2021", - "version": "0.115.0" + "version": "0.115.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -14414,11 +14536,11 @@ "deps": { "common": [ { - "id": "cranelift-codegen-meta 0.115.0", + "id": "cranelift-codegen-meta 0.115.1", "target": "cranelift_codegen_meta" }, { - "id": "cranelift-isle 0.115.0", + "id": "cranelift-isle 0.115.1", "target": "cranelift_isle" } ], @@ -14431,14 +14553,14 @@ ], "license_file": "LICENSE" }, - "cranelift-codegen-meta 0.115.0": { + "cranelift-codegen-meta 0.115.1": { "name": "cranelift-codegen-meta", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-codegen-meta/0.115.0/download", - "sha256": "5a68e358827afe4bfb6239fcbf6fbd5ac56206ece8a99c8f5f9bbd518773281a", + "url": "https://static.crates.io/crates/cranelift-codegen-meta/0.115.1/download", + "sha256": "888c188d32263ec9e048873ff0b68c700933600d553f4412417916828be25f8e", "patch_args": [ "-p4" ], @@ -14469,14 +14591,14 @@ "deps": { "common": [ { - "id": "cranelift-codegen-shared 0.115.0", + "id": "cranelift-codegen-shared 0.115.1", "target": "cranelift_codegen_shared" } ], "selects": {} }, "edition": "2021", - "version": "0.115.0" + "version": "0.115.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14484,14 +14606,14 @@ ], "license_file": "LICENSE" }, - "cranelift-codegen-shared 0.115.0": { + "cranelift-codegen-shared 0.115.1": { "name": "cranelift-codegen-shared", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-codegen-shared/0.115.0/download", - "sha256": "e184c9767afbe73d50c55ec29abcf4c32f9baf0d9d22b86d58c4d55e06dee181" + "url": "https://static.crates.io/crates/cranelift-codegen-shared/0.115.1/download", + "sha256": "4ddd5f4114d04ce7e073dd74e2ad16541fc61970726fcc8b2d5644a154ee4127" } }, "targets": [ @@ -14514,7 +14636,7 @@ "**" ], "edition": "2021", - "version": "0.115.0" + "version": "0.115.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14522,14 +14644,14 @@ ], "license_file": "LICENSE" }, - "cranelift-control 0.115.0": { + "cranelift-control 0.115.1": { "name": "cranelift-control", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-control/0.115.0/download", - "sha256": "5cc7664f2a66f053e33f149e952bb5971d138e3af637f5097727ed6dc0ed95dd" + "url": "https://static.crates.io/crates/cranelift-control/0.115.1/download", + "sha256": "92cc4c98d6a4256a1600d93ccd3536f3e77da9b4ca2c279de786ac22876e67d6" } }, "targets": [ @@ -14561,14 +14683,14 @@ "deps": { "common": [ { - "id": "arbitrary 1.3.2", + "id": "arbitrary 1.4.1", "target": "arbitrary" } ], "selects": {} }, "edition": "2021", - "version": "0.115.0" + "version": "0.115.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14576,14 +14698,14 @@ ], "license_file": "LICENSE" }, - "cranelift-entity 0.115.0": { + "cranelift-entity 0.115.1": { "name": "cranelift-entity", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-entity/0.115.0/download", - "sha256": "118597e3a9cf86c3556fa579a7a23b955fa18231651a52a77a2475d305a9cf84" + "url": "https://static.crates.io/crates/cranelift-entity/0.115.1/download", + "sha256": "760af4b5e051b5f82097a27274b917e3751736369fa73660513488248d27f23d" } }, "targets": [ @@ -14616,7 +14738,7 @@ "deps": { "common": [ { - "id": "cranelift-bitset 0.115.0", + "id": "cranelift-bitset 0.115.1", "target": "cranelift_bitset" }, { @@ -14636,7 +14758,7 @@ ], "selects": {} }, - "version": "0.115.0" + "version": "0.115.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14644,14 +14766,14 @@ ], "license_file": "LICENSE" }, - "cranelift-frontend 0.115.0": { + "cranelift-frontend 0.115.1": { "name": "cranelift-frontend", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-frontend/0.115.0/download", - "sha256": "7638ea1efb069a0aa18d8ee67401b6b0d19f6bfe5de5e9ede348bfc80bb0d8c7" + "url": "https://static.crates.io/crates/cranelift-frontend/0.115.1/download", + "sha256": "c0bf77ec0f470621655ec7539860b5c620d4f91326654ab21b075b83900f8831" } }, "targets": [ @@ -14683,11 +14805,11 @@ "deps": { "common": [ { - "id": "cranelift-codegen 0.115.0", + "id": "cranelift-codegen 0.115.1", "target": "cranelift_codegen" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -14702,7 +14824,7 @@ "selects": {} }, "edition": "2021", - "version": "0.115.0" + "version": "0.115.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14710,14 +14832,14 @@ ], "license_file": "LICENSE" }, - "cranelift-isle 0.115.0": { + "cranelift-isle 0.115.1": { "name": "cranelift-isle", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime/tree/main/cranelift/isle", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-isle/0.115.0/download", - "sha256": "15c53e1152a0b01c4ed2b1e0535602b8e86458777dd9d18b28732b16325c7dc0", + "url": "https://static.crates.io/crates/cranelift-isle/0.115.1/download", + "sha256": "4b665d0a6932c421620be184f9fc7f7adaf1b0bc2fa77bb7ac5177c49abf645b", "patch_args": [ "-p4" ], @@ -14766,14 +14888,14 @@ "deps": { "common": [ { - "id": "cranelift-isle 0.115.0", + "id": "cranelift-isle 0.115.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.115.0" + "version": "0.115.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -14789,14 +14911,14 @@ ], "license_file": null }, - "cranelift-native 0.115.0": { + "cranelift-native 0.115.1": { "name": "cranelift-native", - "version": "0.115.0", + "version": "0.115.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-native/0.115.0/download", - "sha256": "7b7d8f895444fa52dd7bdd0bed11bf007a7fb43af65a6deac8fcc4094c6372f7" + "url": "https://static.crates.io/crates/cranelift-native/0.115.1/download", + "sha256": "bb2e75d1bd43dfec10924798f15e6474f1dbf63b0024506551aa19394dbe72ab" } }, "targets": [ @@ -14828,7 +14950,7 @@ "deps": { "common": [ { - "id": "cranelift-codegen 0.115.0", + "id": "cranelift-codegen 0.115.1", "target": "cranelift_codegen" }, { @@ -14839,14 +14961,14 @@ "selects": { "cfg(any(target_arch = \"s390x\", target_arch = \"riscv64\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] } }, "edition": "2021", - "version": "0.115.0" + "version": "0.115.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14854,14 +14976,14 @@ ], "license_file": "LICENSE" }, - "crc32fast 1.3.2": { + "crc32fast 1.4.2": { "name": "crc32fast", - "version": "1.3.2", + "version": "1.4.2", "package_url": "https://github.com/srijs/rust-crc32fast", "repository": { "Http": { - "url": "https://static.crates.io/crates/crc32fast/1.3.2/download", - "sha256": "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" + "url": "https://static.crates.io/crates/crc32fast/1.4.2/download", + "sha256": "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" } }, "targets": [ @@ -14876,18 +14998,6 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], "library_target_name": "crc32fast", @@ -14907,24 +15017,12 @@ { "id": "cfg-if 1.0.0", "target": "cfg_if" - }, - { - "id": "crc32fast 1.3.2", - "target": "build_script_build" } ], "selects": {} }, "edition": "2015", - "version": "1.3.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] + "version": "1.4.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -14987,11 +15085,11 @@ "target": "cast" }, { - "id": "ciborium 0.2.1", + "id": "ciborium 0.2.2", "target": "ciborium" }, { - "id": "clap 4.5.20", + "id": "clap 4.5.26", "target": "clap" }, { @@ -15003,7 +15101,7 @@ "target": "futures" }, { - "id": "is-terminal 0.4.9", + "id": "is-terminal 0.4.13", "target": "is_terminal" }, { @@ -15015,15 +15113,15 @@ "target": "num_traits" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "oorandom 11.1.3", + "id": "oorandom 11.1.4", "target": "oorandom" }, { - "id": "plotters 0.3.5", + "id": "plotters 0.3.7", "target": "plotters" }, { @@ -15031,7 +15129,7 @@ "target": "rayon" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -15039,7 +15137,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -15047,11 +15145,11 @@ "target": "tinytemplate" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { - "id": "walkdir 2.3.3", + "id": "walkdir 2.5.0", "target": "walkdir" } ], @@ -15172,11 +15270,11 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { - "id": "crossbeam-deque 0.8.5", + "id": "crossbeam-deque 0.8.6", "target": "crossbeam_deque" }, { @@ -15184,11 +15282,11 @@ "target": "crossbeam_epoch" }, { - "id": "crossbeam-queue 0.3.11", + "id": "crossbeam-queue 0.3.12", "target": "crossbeam_queue" }, { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" } ], @@ -15204,14 +15302,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crossbeam-channel 0.5.13": { + "crossbeam-channel 0.5.14": { "name": "crossbeam-channel", - "version": "0.5.13", + "version": "0.5.14", "package_url": "https://github.com/crossbeam-rs/crossbeam", "repository": { "Http": { - "url": "https://static.crates.io/crates/crossbeam-channel/0.5.13/download", - "sha256": "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" + "url": "https://static.crates.io/crates/crossbeam-channel/0.5.14/download", + "sha256": "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471" } }, "targets": [ @@ -15243,14 +15341,14 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" } ], "selects": {} }, "edition": "2021", - "version": "0.5.13" + "version": "0.5.14" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15259,14 +15357,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crossbeam-deque 0.8.5": { + "crossbeam-deque 0.8.6": { "name": "crossbeam-deque", - "version": "0.8.5", + "version": "0.8.6", "package_url": "https://github.com/crossbeam-rs/crossbeam", "repository": { "Http": { - "url": "https://static.crates.io/crates/crossbeam-deque/0.8.5/download", - "sha256": "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" + "url": "https://static.crates.io/crates/crossbeam-deque/0.8.6/download", + "sha256": "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" } }, "targets": [ @@ -15302,14 +15400,14 @@ "target": "crossbeam_epoch" }, { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" } ], "selects": {} }, "edition": "2021", - "version": "0.8.5" + "version": "0.8.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15358,7 +15456,7 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" } ], @@ -15374,14 +15472,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crossbeam-queue 0.3.11": { + "crossbeam-queue 0.3.12": { "name": "crossbeam-queue", - "version": "0.3.11", + "version": "0.3.12", "package_url": "https://github.com/crossbeam-rs/crossbeam", "repository": { "Http": { - "url": "https://static.crates.io/crates/crossbeam-queue/0.3.11/download", - "sha256": "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" + "url": "https://static.crates.io/crates/crossbeam-queue/0.3.12/download", + "sha256": "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" } }, "targets": [ @@ -15413,14 +15511,14 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" } ], "selects": {} }, "edition": "2021", - "version": "0.3.11" + "version": "0.3.12" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15429,14 +15527,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crossbeam-utils 0.8.19": { + "crossbeam-utils 0.8.21": { "name": "crossbeam-utils", - "version": "0.8.19", + "version": "0.8.21", "package_url": "https://github.com/crossbeam-rs/crossbeam", "repository": { "Http": { - "url": "https://static.crates.io/crates/crossbeam-utils/0.8.19/download", - "sha256": "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" + "url": "https://static.crates.io/crates/crossbeam-utils/0.8.21/download", + "sha256": "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" } }, "targets": [ @@ -15480,14 +15578,14 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.8.19" + "version": "0.8.21" }, "build_script_attrs": { "compile_data_glob": [ @@ -15545,18 +15643,18 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15564,13 +15662,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "aarch64-apple-ios": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15578,13 +15676,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "aarch64-apple-ios-sim": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15592,13 +15690,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "aarch64-linux-android": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15606,7 +15704,7 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], @@ -15622,7 +15720,7 @@ ], "aarch64-unknown-fuchsia": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15630,13 +15728,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "aarch64-unknown-linux-gnu": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15644,13 +15742,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15658,13 +15756,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15672,13 +15770,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "arm-unknown-linux-gnueabi": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15686,13 +15784,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "armv7-linux-androideabi": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15700,13 +15798,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15714,19 +15812,19 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-apple-darwin": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15734,13 +15832,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "i686-linux-android": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15748,7 +15846,7 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], @@ -15764,7 +15862,7 @@ ], "i686-unknown-freebsd": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15772,13 +15870,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "i686-unknown-linux-gnu": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15786,13 +15884,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "powerpc-unknown-linux-gnu": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15800,13 +15898,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "s390x-unknown-linux-gnu": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15814,13 +15912,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "x86_64-apple-darwin": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15828,13 +15926,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "x86_64-apple-ios": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15842,13 +15940,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "x86_64-linux-android": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15856,7 +15954,7 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], @@ -15872,7 +15970,7 @@ ], "x86_64-unknown-freebsd": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15880,13 +15978,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "x86_64-unknown-fuchsia": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15894,13 +15992,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "x86_64-unknown-linux-gnu": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15908,13 +16006,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio" }, { @@ -15922,7 +16020,7 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.3", + "id": "signal-hook-mio 0.2.4", "target": "signal_hook_mio" } ] @@ -16062,14 +16160,14 @@ ], "license_file": null }, - "crypto-bigint 0.5.2": { + "crypto-bigint 0.5.5": { "name": "crypto-bigint", - "version": "0.5.2", + "version": "0.5.5", "package_url": "https://github.com/RustCrypto/crypto-bigint", "repository": { "Http": { - "url": "https://static.crates.io/crates/crypto-bigint/0.5.2/download", - "sha256": "cf4c2f4e1afd912bc40bfd6fed5d9dc1f288e0ba01bfcc835cc5bc3eb13efe15" + "url": "https://static.crates.io/crates/crypto-bigint/0.5.5/download", + "sha256": "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" } }, "targets": [ @@ -16121,7 +16219,7 @@ "selects": {} }, "edition": "2021", - "version": "0.5.2" + "version": "0.5.5" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -16226,15 +16324,15 @@ "deps": { "common": [ { - "id": "dtoa-short 0.3.4", + "id": "dtoa-short 0.3.5", "target": "dtoa_short" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "phf 0.11.2", + "id": "phf 0.11.3", "target": "phf" }, { @@ -16294,11 +16392,11 @@ "deps": { "common": [ { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -16313,14 +16411,14 @@ ], "license_file": "LICENSE" }, - "csv 1.2.2": { + "csv 1.3.1": { "name": "csv", - "version": "1.2.2", + "version": "1.3.1", "package_url": "https://github.com/BurntSushi/rust-csv", "repository": { "Http": { - "url": "https://static.crates.io/crates/csv/1.2.2/download", - "sha256": "626ae34994d3d8d668f4269922248239db4ae42d538b14c398b74a52208e8086" + "url": "https://static.crates.io/crates/csv/1.3.1/download", + "sha256": "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf" } }, "targets": [ @@ -16345,15 +16443,15 @@ "deps": { "common": [ { - "id": "csv-core 0.1.10", + "id": "csv-core 0.1.11", "target": "csv_core" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "ryu 1.0.15", + "id": "ryu 1.0.18", "target": "ryu" }, { @@ -16364,7 +16462,7 @@ "selects": {} }, "edition": "2021", - "version": "1.2.2" + "version": "1.3.1" }, "license": "Unlicense/MIT", "license_ids": [ @@ -16373,14 +16471,14 @@ ], "license_file": "LICENSE-MIT" }, - "csv-core 0.1.10": { + "csv-core 0.1.11": { "name": "csv-core", - "version": "0.1.10", + "version": "0.1.11", "package_url": "https://github.com/BurntSushi/rust-csv", "repository": { "Http": { - "url": "https://static.crates.io/crates/csv-core/0.1.10/download", - "sha256": "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" + "url": "https://static.crates.io/crates/csv-core/0.1.11/download", + "sha256": "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" } }, "targets": [ @@ -16418,7 +16516,7 @@ "selects": {} }, "edition": "2018", - "version": "0.1.10" + "version": "0.1.11" }, "license": "Unlicense/MIT", "license_ids": [ @@ -16576,13 +16674,13 @@ "selects": { "cfg(curve25519_dalek_backend = \"fiat\")": [ { - "id": "fiat-crypto 0.2.6", + "id": "fiat-crypto 0.2.9", "target": "fiat_crypto" } ], "cfg(target_arch = \"x86_64\")": [ { - "id": "cpufeatures 0.2.9", + "id": "cpufeatures 0.2.16", "target": "cpufeatures" } ] @@ -16619,7 +16717,7 @@ "deps": { "common": [ { - "id": "rustc_version 0.4.0", + "id": "rustc_version 0.4.1", "target": "rustc_version" } ], @@ -16664,15 +16762,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -16979,11 +17077,11 @@ "target": "ident_case" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -17053,11 +17151,11 @@ "target": "ident_case" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -17065,7 +17163,7 @@ "target": "strsim" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -17116,7 +17214,7 @@ "target": "darling_core" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -17171,11 +17269,11 @@ "target": "darling_core" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -17190,14 +17288,14 @@ ], "license_file": "LICENSE" }, - "dary_heap 0.3.6": { + "dary_heap 0.3.7": { "name": "dary_heap", - "version": "0.3.6", + "version": "0.3.7", "package_url": "https://github.com/hanmertens/dary_heap", "repository": { "Http": { - "url": "https://static.crates.io/crates/dary_heap/0.3.6/download", - "sha256": "7762d17f1241643615821a8455a0b2c3e803784b058693d990b11f2dce25a0ca" + "url": "https://static.crates.io/crates/dary_heap/0.3.7/download", + "sha256": "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728" } }, "targets": [ @@ -17220,7 +17318,7 @@ "**" ], "edition": "2018", - "version": "0.3.6" + "version": "0.3.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -17229,14 +17327,14 @@ ], "license_file": "LICENSE-APACHE" }, - "dashmap 5.5.0": { + "dashmap 5.5.3": { "name": "dashmap", - "version": "5.5.0", + "version": "5.5.3", "package_url": "https://github.com/xacrimon/dashmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/dashmap/5.5.0/download", - "sha256": "6943ae99c34386c84a470c499d3414f66502a41340aa895406e0d2e4a207b91d" + "url": "https://static.crates.io/crates/dashmap/5.5.3/download", + "sha256": "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" } }, "targets": [ @@ -17269,22 +17367,22 @@ "target": "hashbrown" }, { - "id": "lock_api 0.4.10", + "id": "lock_api 0.4.12", "target": "lock_api" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "parking_lot_core 0.9.8", + "id": "parking_lot_core 0.9.10", "target": "parking_lot_core" } ], "selects": {} }, "edition": "2018", - "version": "5.5.0" + "version": "5.5.3" }, "license": "MIT", "license_ids": [ @@ -17328,7 +17426,7 @@ "target": "cfg_if" }, { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" }, { @@ -17336,15 +17434,15 @@ "target": "hashbrown" }, { - "id": "lock_api 0.4.10", + "id": "lock_api 0.4.12", "target": "lock_api" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "parking_lot_core 0.9.8", + "id": "parking_lot_core 0.9.10", "target": "parking_lot_core" } ], @@ -17359,14 +17457,14 @@ ], "license_file": "LICENSE" }, - "data-encoding 2.4.0": { + "data-encoding 2.7.0": { "name": "data-encoding", - "version": "2.4.0", + "version": "2.7.0", "package_url": "https://github.com/ia0/data-encoding", "repository": { "Http": { - "url": "https://static.crates.io/crates/data-encoding/2.4.0/download", - "sha256": "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" + "url": "https://static.crates.io/crates/data-encoding/2.7.0/download", + "sha256": "0e60eed09d8c01d3cee5b7d30acb059b76614c918fa0f992e0dd6eeb10daad6f" } }, "targets": [ @@ -17397,7 +17495,7 @@ "selects": {} }, "edition": "2018", - "version": "2.4.0" + "version": "2.7.0" }, "license": "MIT", "license_ids": [ @@ -17437,7 +17535,7 @@ "deps": { "common": [ { - "id": "uuid 1.11.0", + "id": "uuid 1.12.0", "target": "uuid" } ], @@ -17452,14 +17550,14 @@ ], "license_file": "LICENSE" }, - "der 0.7.7": { + "der 0.7.9": { "name": "der", - "version": "0.7.7", + "version": "0.7.9", "package_url": "https://github.com/RustCrypto/formats/tree/master/der", "repository": { "Http": { - "url": "https://static.crates.io/crates/der/0.7.7/download", - "sha256": "0c7ed52955ce76b1554f509074bb357d3fb8ac9b51288a65a3fd480d1dfba946" + "url": "https://static.crates.io/crates/der/0.7.9/download", + "sha256": "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" } }, "targets": [ @@ -17496,11 +17594,11 @@ "deps": { "common": [ { - "id": "const-oid 0.9.4", + "id": "const-oid 0.9.6", "target": "const_oid" }, { - "id": "flagset 0.4.3", + "id": "flagset 0.4.6", "target": "flagset" }, { @@ -17518,13 +17616,13 @@ "proc_macro_deps": { "common": [ { - "id": "der_derive 0.7.2", + "id": "der_derive 0.7.3", "target": "der_derive" } ], "selects": {} }, - "version": "0.7.7" + "version": "0.7.9" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -17574,7 +17672,7 @@ "deps": { "common": [ { - "id": "asn1-rs 0.6.1", + "id": "asn1-rs 0.6.2", "target": "asn1_rs" }, { @@ -17600,7 +17698,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], @@ -17615,14 +17713,14 @@ ], "license_file": "LICENSE-APACHE" }, - "der_derive 0.7.2": { + "der_derive 0.7.3": { "name": "der_derive", - "version": "0.7.2", + "version": "0.7.3", "package_url": "https://github.com/RustCrypto/formats/tree/master/der/derive", "repository": { "Http": { - "url": "https://static.crates.io/crates/der_derive/0.7.2/download", - "sha256": "5fe87ce4529967e0ba1dcf8450bab64d97dfd5010a6256187ffe2e43e6f0e049" + "url": "https://static.crates.io/crates/der_derive/0.7.3/download", + "sha256": "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18" } }, "targets": [ @@ -17647,22 +17745,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.7.2" + "version": "0.7.3" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -17766,15 +17864,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -17789,14 +17887,14 @@ ], "license_file": "LICENSE" }, - "derive_arbitrary 1.3.2": { + "derive_arbitrary 1.4.1": { "name": "derive_arbitrary", - "version": "1.3.2", + "version": "1.4.1", "package_url": "https://github.com/rust-fuzz/arbitrary", "repository": { "Http": { - "url": "https://static.crates.io/crates/derive_arbitrary/1.3.2/download", - "sha256": "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" + "url": "https://static.crates.io/crates/derive_arbitrary/1.4.1/download", + "sha256": "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" } }, "targets": [ @@ -17821,22 +17919,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.3.2" + "version": "1.4.1" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -17845,14 +17943,14 @@ ], "license_file": "LICENSE-APACHE" }, - "derive_more 0.99.17": { + "derive_more 0.99.18": { "name": "derive_more", - "version": "0.99.17", + "version": "0.99.18", "package_url": "https://github.com/JelteF/derive_more", "repository": { "Http": { - "url": "https://static.crates.io/crates/derive_more/0.99.17/download", - "sha256": "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" + "url": "https://static.crates.io/crates/derive_more/0.99.18/download", + "sha256": "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" } }, "targets": [ @@ -17912,22 +18010,137 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 1.0.109", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.99.17" + "version": "0.99.18" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, + "derive_more 1.0.0": { + "name": "derive_more", + "version": "1.0.0", + "package_url": "https://github.com/JelteF/derive_more", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/derive_more/1.0.0/download", + "sha256": "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" + } + }, + "targets": [ + { + "Library": { + "crate_name": "derive_more", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "derive_more", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "from" + ], + "selects": {} + }, + "edition": "2021", + "proc_macro_deps": { + "common": [ + { + "id": "derive_more-impl 1.0.0", + "target": "derive_more_impl" + } + ], + "selects": {} + }, + "version": "1.0.0" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, + "derive_more-impl 1.0.0": { + "name": "derive_more-impl", + "version": "1.0.0", + "package_url": "https://github.com/JelteF/derive_more", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/derive_more-impl/1.0.0/download", + "sha256": "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "derive_more_impl", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "derive_more_impl", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "from" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "proc-macro2 1.0.93", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.38", + "target": "quote" + }, + { + "id": "syn 2.0.96", + "target": "syn" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "1.0.0" }, "license": "MIT", "license_ids": [ @@ -18117,7 +18330,7 @@ "target": "block_buffer" }, { - "id": "const-oid 0.9.4", + "id": "const-oid 0.9.6", "target": "const_oid" }, { @@ -18180,15 +18393,15 @@ "target": "addr" }, { - "id": "aide 0.13.4", + "id": "aide 0.13.5", "target": "aide" }, { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "arbitrary 1.3.2", + "id": "arbitrary 1.4.1", "target": "arbitrary" }, { @@ -18196,7 +18409,7 @@ "target": "arc_swap" }, { - "id": "arrayvec 0.7.4", + "id": "arrayvec 0.7.6", "target": "arrayvec" }, { @@ -18240,7 +18453,7 @@ "target": "backoff" }, { - "id": "backon 0.4.1", + "id": "backon 0.4.4", "target": "backon" }, { @@ -18264,7 +18477,7 @@ "target": "bindgen" }, { - "id": "bip32 0.5.1", + "id": "bip32 0.5.2", "target": "bip32" }, { @@ -18276,7 +18489,7 @@ "target": "bitcoin" }, { - "id": "bitcoin 0.32.2", + "id": "bitcoin 0.32.5", "target": "bitcoin", "alias": "bitcoin_0_32" }, @@ -18293,7 +18506,7 @@ "target": "bitflags" }, { - "id": "bs58 0.5.0", + "id": "bs58 0.5.1", "target": "bs58" }, { @@ -18305,7 +18518,7 @@ "target": "build_info_build" }, { - "id": "by_address 1.1.0", + "id": "by_address 1.2.1", "target": "by_address" }, { @@ -18321,7 +18534,7 @@ "target": "bytes" }, { - "id": "cached 0.49.2", + "id": "cached 0.49.3", "target": "cached" }, { @@ -18333,11 +18546,11 @@ "target": "canbench_rs" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "candid_parser 0.1.2", + "id": "candid_parser 0.1.4", "target": "candid_parser" }, { @@ -18345,7 +18558,7 @@ "target": "cargo_metadata" }, { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { @@ -18361,11 +18574,11 @@ "target": "chacha20poly1305" }, { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { - "id": "ciborium 0.2.1", + "id": "ciborium 0.2.2", "target": "ciborium" }, { @@ -18373,7 +18586,7 @@ "target": "cidr" }, { - "id": "clap 4.5.20", + "id": "clap 4.5.26", "target": "clap" }, { @@ -18381,11 +18594,11 @@ "target": "cloudflare" }, { - "id": "colored 2.0.4", + "id": "colored 2.2.0", "target": "colored" }, { - "id": "comparable 0.5.4", + "id": "comparable 0.5.5", "target": "comparable" }, { @@ -18397,7 +18610,7 @@ "target": "convert_case" }, { - "id": "crc32fast 1.3.2", + "id": "crc32fast 1.4.2", "target": "crc32fast" }, { @@ -18409,11 +18622,11 @@ "target": "crossbeam" }, { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { - "id": "csv 1.2.2", + "id": "csv 1.3.1", "target": "csv" }, { @@ -18429,11 +18642,11 @@ "target": "cvt" }, { - "id": "dashmap 5.5.0", + "id": "dashmap 5.5.3", "target": "dashmap" }, { - "id": "dyn-clone 1.0.14", + "id": "dyn-clone 1.0.17", "target": "dyn_clone" }, { @@ -18445,19 +18658,19 @@ "target": "env_file_reader" }, { - "id": "erased-serde 0.3.28", + "id": "erased-serde 0.3.31", "target": "erased_serde" }, { - "id": "escargot 0.5.7", + "id": "escargot 0.5.13", "target": "escargot" }, { - "id": "ethers-core 2.0.8", + "id": "ethers-core 2.0.14", "target": "ethers_core" }, { - "id": "ethnum 1.3.2", + "id": "ethnum 1.5.0", "target": "ethnum" }, { @@ -18469,7 +18682,7 @@ "target": "exec" }, { - "id": "eyre 0.6.8", + "id": "eyre 0.6.12", "target": "eyre" }, { @@ -18477,7 +18690,7 @@ "target": "ff" }, { - "id": "flate2 1.0.31", + "id": "flate2 1.0.35", "target": "flate2" }, { @@ -18485,7 +18698,7 @@ "target": "form_urlencoded" }, { - "id": "fqdn 0.3.11", + "id": "fqdn 0.3.12", "target": "fqdn" }, { @@ -18505,7 +18718,7 @@ "target": "get_if_addrs" }, { - "id": "getrandom 0.2.10", + "id": "getrandom 0.2.15", "target": "getrandom" }, { @@ -18513,7 +18726,7 @@ "target": "group" }, { - "id": "hashlink 0.8.3", + "id": "hashlink 0.8.4", "target": "hashlink" }, { @@ -18553,11 +18766,11 @@ "target": "humantime_serde" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { @@ -18633,7 +18846,7 @@ "target": "ic_sha3" }, { - "id": "ic-stable-structures 0.6.5", + "id": "ic-stable-structures 0.6.7", "target": "ic_stable_structures" }, { @@ -18645,7 +18858,7 @@ "target": "ic_transport_types" }, { - "id": "ic-utils 0.39.0", + "id": "ic-utils 0.39.2", "target": "ic_utils" }, { @@ -18653,7 +18866,7 @@ "target": "ic_verify_bls_signature" }, { - "id": "ic-wasm 0.8.4", + "id": "ic-wasm 0.8.6", "target": "ic_wasm" }, { @@ -18685,19 +18898,19 @@ "target": "idna" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "indicatif 0.17.5", + "id": "indicatif 0.17.9", "target": "indicatif" }, { - "id": "inferno 0.12.0", + "id": "inferno 0.12.1", "target": "inferno" }, { - "id": "insta 1.31.0", + "id": "insta 1.42.0", "target": "insta" }, { @@ -18717,7 +18930,7 @@ "target": "isocountry" }, { - "id": "itertools 0.12.0", + "id": "itertools 0.12.1", "target": "itertools" }, { @@ -18741,7 +18954,7 @@ "target": "kube" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -18749,7 +18962,7 @@ "target": "leb128" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -18757,7 +18970,7 @@ "target": "libflate" }, { - "id": "libfuzzer-sys 0.4.7", + "id": "libfuzzer-sys 0.4.8", "target": "libfuzzer_sys" }, { @@ -18777,7 +18990,7 @@ "target": "lmdb_sys" }, { - "id": "local-ip-address 0.5.6", + "id": "local-ip-address 0.5.7", "target": "local_ip_address" }, { @@ -18809,15 +19022,15 @@ "target": "minicbor" }, { - "id": "mockall 0.13.0", + "id": "mockall 0.13.1", "target": "mockall" }, { - "id": "mockito 1.2.0", + "id": "mockito 1.6.1", "target": "mockito" }, { - "id": "moka 0.12.8", + "id": "moka 0.12.10", "target": "moka" }, { @@ -18853,7 +19066,7 @@ "target": "num_cpus" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -18866,7 +19079,7 @@ "alias": "opentelemetry_0_20_0" }, { - "id": "opentelemetry 0.27.0", + "id": "opentelemetry 0.27.1", "target": "opentelemetry" }, { @@ -18890,11 +19103,11 @@ "target": "pairing" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { - "id": "pcre2 0.2.6", + "id": "pcre2 0.2.9", "target": "pcre2" }, { @@ -18902,11 +19115,11 @@ "target": "pem" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "ping 0.5.0", + "id": "ping 0.5.2", "target": "ping" }, { @@ -18914,7 +19127,7 @@ "target": "pkcs8" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" }, { @@ -18922,7 +19135,7 @@ "target": "pprof" }, { - "id": "predicates 3.1.2", + "id": "predicates 3.1.3", "target": "predicates" }, { @@ -18930,15 +19143,15 @@ "target": "pretty_bytes" }, { - "id": "pretty_assertions 1.4.0", + "id": "pretty_assertions 1.4.1", "target": "pretty_assertions" }, { - "id": "priority-queue 1.3.2", + "id": "priority-queue 1.4.0", "target": "priority_queue" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { @@ -18950,24 +19163,24 @@ "target": "prometheus" }, { - "id": "prometheus-parse 0.2.4", + "id": "prometheus-parse 0.2.5", "target": "prometheus_parse" }, { - "id": "proptest 1.5.0", + "id": "proptest 1.6.0", "target": "proptest" }, { - "id": "prost 0.12.2", + "id": "prost 0.12.6", "target": "prost", "alias": "prost_0_12_0" }, { - "id": "prost 0.13.3", + "id": "prost 0.13.4", "target": "prost" }, { - "id": "prost-build 0.13.3", + "id": "prost-build 0.13.4", "target": "prost_build" }, { @@ -18975,7 +19188,7 @@ "target": "protobuf" }, { - "id": "publicsuffix 2.2.3", + "id": "publicsuffix 2.3.0", "target": "publicsuffix" }, { @@ -18983,15 +19196,15 @@ "target": "quickcheck" }, { - "id": "quinn 0.11.5", + "id": "quinn 0.11.6", "target": "quinn" }, { - "id": "quinn-udp 0.5.5", + "id": "quinn-udp 0.5.9", "target": "quinn_udp" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -19019,23 +19232,23 @@ "target": "rayon" }, { - "id": "rcgen 0.13.1", + "id": "rcgen 0.13.2", "target": "rcgen" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { - "id": "reqwest 0.12.9", + "id": "reqwest 0.12.12", "target": "reqwest" }, { - "id": "rgb 0.8.37", + "id": "rgb 0.8.50", "target": "rgb" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { @@ -19055,7 +19268,7 @@ "target": "rolling_file" }, { - "id": "rsa 0.9.6", + "id": "rsa 0.9.7", "target": "rsa" }, { @@ -19063,7 +19276,7 @@ "target": "rstest" }, { - "id": "rusb 0.9.3", + "id": "rusb 0.9.4", "target": "rusb" }, { @@ -19075,7 +19288,7 @@ "target": "rust_decimal" }, { - "id": "rustc-demangle 0.1.23", + "id": "rustc-demangle 0.1.24", "target": "rustc_demangle" }, { @@ -19083,7 +19296,7 @@ "target": "rustc_hash" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { @@ -19095,7 +19308,7 @@ "target": "rusty_fork" }, { - "id": "schemars 0.8.16", + "id": "schemars 0.8.21", "target": "schemars" }, { @@ -19115,7 +19328,7 @@ "target": "secp256k1" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -19135,7 +19348,7 @@ "target": "serde_cbor" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -19167,7 +19380,7 @@ "target": "signature" }, { - "id": "simple_asn1 0.6.2", + "id": "simple_asn1 0.6.3", "target": "simple_asn1" }, { @@ -19199,7 +19412,7 @@ "target": "slog_term" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { @@ -19215,7 +19428,7 @@ "target": "strum" }, { - "id": "stubborn-io 0.3.2", + "id": "stubborn-io 0.3.5", "target": "stubborn_io" }, { @@ -19227,7 +19440,7 @@ "target": "syn" }, { - "id": "tar 0.4.39", + "id": "tar 0.4.43", "target": "tar" }, { @@ -19235,7 +19448,7 @@ "target": "tarpc" }, { - "id": "tempfile 3.12.0", + "id": "tempfile 3.15.0", "target": "tempfile" }, { @@ -19243,11 +19456,11 @@ "target": "tester" }, { - "id": "textplots 0.8.4", + "id": "textplots 0.8.6", "target": "textplots" }, { - "id": "thiserror 2.0.3", + "id": "thiserror 2.0.11", "target": "thiserror" }, { @@ -19267,11 +19480,11 @@ "target": "tikv_jemallocator" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -19283,7 +19496,7 @@ "target": "tokio_metrics" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -19319,7 +19532,7 @@ "target": "tonic_build" }, { - "id": "tower 0.5.1", + "id": "tower 0.5.2", "target": "tower" }, { @@ -19335,7 +19548,7 @@ "target": "tower_test" }, { - "id": "tower_governor 0.4.2", + "id": "tower_governor 0.4.3", "target": "tower_governor" }, { @@ -19375,11 +19588,11 @@ "target": "turmoil" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" }, { - "id": "uuid 1.11.0", + "id": "uuid 1.12.0", "target": "uuid" }, { @@ -19387,7 +19600,7 @@ "target": "vsock" }, { - "id": "walkdir 2.3.3", + "id": "walkdir 2.5.0", "target": "walkdir" }, { @@ -19395,7 +19608,7 @@ "target": "warp" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" }, { @@ -19415,11 +19628,11 @@ "target": "wasmprinter" }, { - "id": "wasmtime 28.0.0", + "id": "wasmtime 28.0.1", "target": "wasmtime" }, { - "id": "wasmtime-environ 28.0.0", + "id": "wasmtime-environ 28.0.1", "target": "wasmtime_environ" }, { @@ -19427,7 +19640,7 @@ "target": "wast" }, { - "id": "wat 1.212.0", + "id": "wat 1.223.0", "target": "wat" }, { @@ -19435,7 +19648,7 @@ "target": "wee_alloc" }, { - "id": "which 4.4.0", + "id": "which 4.4.2", "target": "which" }, { @@ -19473,15 +19686,15 @@ "proc_macro_deps": { "common": [ { - "id": "async-recursion 1.0.5", + "id": "async-recursion 1.1.1", "target": "async_recursion" }, { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" }, { - "id": "educe 0.4.22", + "id": "educe 0.4.23", "target": "educe" }, { @@ -19501,7 +19714,7 @@ "target": "paste" }, { - "id": "proptest-derive 0.5.0", + "id": "proptest-derive 0.5.1", "target": "proptest_derive" }, { @@ -19509,7 +19722,7 @@ "target": "rust_decimal_macros" }, { - "id": "rustversion 1.0.14", + "id": "rustversion 1.0.19", "target": "rustversion" }, { @@ -19667,13 +19880,13 @@ "selects": { "cfg(target_os = \"redox\")": [ { - "id": "redox_users 0.4.3", + "id": "redox_users 0.4.6", "target": "redox_users" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -19729,13 +19942,13 @@ "selects": { "cfg(target_os = \"redox\")": [ { - "id": "redox_users 0.4.3", + "id": "redox_users 0.4.6", "target": "redox_users" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -19757,14 +19970,14 @@ ], "license_file": "LICENSE-APACHE" }, - "displaydoc 0.2.4": { + "displaydoc 0.2.5": { "name": "displaydoc", - "version": "0.2.4", + "version": "0.2.5", "package_url": "https://github.com/yaahc/displaydoc", "repository": { "Http": { - "url": "https://static.crates.io/crates/displaydoc/0.2.4/download", - "sha256": "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" + "url": "https://static.crates.io/crates/displaydoc/0.2.5/download", + "sha256": "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" } }, "targets": [ @@ -19796,22 +20009,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, - "edition": "2018", - "version": "0.2.4" + "edition": "2021", + "version": "0.2.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -19964,7 +20177,7 @@ "deps": { "common": [ { - "id": "colored 2.0.4", + "id": "colored 2.2.0", "target": "colored" }, { @@ -20023,14 +20236,14 @@ ], "license_file": "LICENSE-APACHE" }, - "dtoa-short 0.3.4": { + "dtoa-short 0.3.5": { "name": "dtoa-short", - "version": "0.3.4", + "version": "0.3.5", "package_url": "https://github.com/upsuper/dtoa-short", "repository": { "Http": { - "url": "https://static.crates.io/crates/dtoa-short/0.3.4/download", - "sha256": "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74" + "url": "https://static.crates.io/crates/dtoa-short/0.3.5/download", + "sha256": "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" } }, "targets": [ @@ -20062,7 +20275,7 @@ "selects": {} }, "edition": "2015", - "version": "0.3.4" + "version": "0.3.5" }, "license": "MPL-2.0", "license_ids": [ @@ -20121,14 +20334,14 @@ "license_ids": [], "license_file": "LICENSE" }, - "dyn-clone 1.0.14": { + "dyn-clone 1.0.17": { "name": "dyn-clone", - "version": "1.0.14", + "version": "1.0.17", "package_url": "https://github.com/dtolnay/dyn-clone", "repository": { "Http": { - "url": "https://static.crates.io/crates/dyn-clone/1.0.14/download", - "sha256": "23d2f3407d9a573d666de4b5bdf10569d73ca9478087346697dcbae6244bfbcd" + "url": "https://static.crates.io/crates/dyn-clone/1.0.17/download", + "sha256": "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" } }, "targets": [ @@ -20151,7 +20364,7 @@ "**" ], "edition": "2018", - "version": "1.0.14" + "version": "1.0.17" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -20210,7 +20423,7 @@ "deps": { "common": [ { - "id": "der 0.7.7", + "id": "der 0.7.9", "target": "der" }, { @@ -20369,7 +20582,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -20482,14 +20695,14 @@ ], "license_file": "LICENSE" }, - "educe 0.4.22": { + "educe 0.4.23": { "name": "educe", - "version": "0.4.22", + "version": "0.4.23", "package_url": "https://github.com/magiclen/educe", "repository": { "Http": { - "url": "https://static.crates.io/crates/educe/0.4.22/download", - "sha256": "079044df30bb07de7d846d41a184c4b00e66ebdac93ee459253474f3a47e50ae" + "url": "https://static.crates.io/crates/educe/0.4.23/download", + "sha256": "0f0042ff8246a363dbe77d2ceedb073339e85a804b9a47636c6e016a9a32c05f" } }, "targets": [ @@ -20531,11 +20744,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -20549,13 +20762,13 @@ "proc_macro_deps": { "common": [ { - "id": "enum-ordinalize 3.1.13", + "id": "enum-ordinalize 3.1.15", "target": "enum_ordinalize" } ], "selects": {} }, - "version": "0.4.22" + "version": "0.4.23" }, "license": "MIT", "license_ids": [ @@ -20563,14 +20776,14 @@ ], "license_file": "LICENSE" }, - "ego-tree 0.6.2": { + "ego-tree 0.6.3": { "name": "ego-tree", - "version": "0.6.2", - "package_url": "https://github.com/programble/ego-tree", + "version": "0.6.3", + "package_url": "https://github.com/rust-scraper/ego-tree", "repository": { "Http": { - "url": "https://static.crates.io/crates/ego-tree/0.6.2/download", - "sha256": "3a68a4904193147e0a8dec3314640e6db742afd5f6e634f428a6af230d9b3591" + "url": "https://static.crates.io/crates/ego-tree/0.6.3/download", + "sha256": "12a0bb14ac04a9fcf170d0bbbef949b44cc492f4452bd20c095636956f653642" } }, "targets": [ @@ -20593,7 +20806,7 @@ "**" ], "edition": "2015", - "version": "0.6.2" + "version": "0.6.3" }, "license": "ISC", "license_ids": [ @@ -20601,14 +20814,14 @@ ], "license_file": "LICENSE" }, - "either 1.8.1": { + "either 1.13.0": { "name": "either", - "version": "1.8.1", - "package_url": "https://github.com/bluss/either", + "version": "1.13.0", + "package_url": "https://github.com/rayon-rs/either", "repository": { "Http": { - "url": "https://static.crates.io/crates/either/1.8.1/download", - "sha256": "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" + "url": "https://static.crates.io/crates/either/1.13.0/download", + "sha256": "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" } }, "targets": [ @@ -20638,7 +20851,7 @@ "selects": {} }, "edition": "2018", - "version": "1.8.1" + "version": "1.13.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -20699,7 +20912,7 @@ "target": "base16ct" }, { - "id": "crypto-bigint 0.5.2", + "id": "crypto-bigint 0.5.5", "target": "crypto_bigint" }, { @@ -20784,12 +20997,6 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "alloc" - ], - "selects": {} - }, "edition": "2021", "version": "0.4.0" }, @@ -20800,14 +21007,53 @@ ], "license_file": "LICENSE-APACHE" }, - "ena 0.14.2": { + "embedded-io 0.6.1": { + "name": "embedded-io", + "version": "0.6.1", + "package_url": "https://github.com/rust-embedded/embedded-hal", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/embedded-io/0.6.1/download", + "sha256": "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" + } + }, + "targets": [ + { + "Library": { + "crate_name": "embedded_io", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "embedded_io", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2021", + "version": "0.6.1" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "ena 0.14.3": { "name": "ena", - "version": "0.14.2", + "version": "0.14.3", "package_url": "https://github.com/rust-lang/ena", "repository": { "Http": { - "url": "https://static.crates.io/crates/ena/0.14.2/download", - "sha256": "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1" + "url": "https://static.crates.io/crates/ena/0.14.3/download", + "sha256": "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5" } }, "targets": [ @@ -20832,14 +21078,14 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" } ], "selects": {} }, "edition": "2015", - "version": "0.14.2" + "version": "0.14.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -20894,14 +21140,60 @@ ], "license_file": "LICENSE-APACHE" }, - "encoding_rs 0.8.32": { + "encode_unicode 1.0.0": { + "name": "encode_unicode", + "version": "1.0.0", + "package_url": "https://github.com/tormol/encode_unicode", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/encode_unicode/1.0.0/download", + "sha256": "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" + } + }, + "targets": [ + { + "Library": { + "crate_name": "encode_unicode", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "encode_unicode", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "std" + ], + "selects": {} + }, + "edition": "2021", + "version": "1.0.0" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "encoding_rs 0.8.35": { "name": "encoding_rs", - "version": "0.8.32", + "version": "0.8.35", "package_url": "https://github.com/hsivonen/encoding_rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/encoding_rs/0.8.32/download", - "sha256": "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" + "url": "https://static.crates.io/crates/encoding_rs/0.8.35/download", + "sha256": "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" } }, "targets": [ @@ -20940,7 +21232,7 @@ "selects": {} }, "edition": "2018", - "version": "0.8.32" + "version": "0.8.35" }, "license": "(Apache-2.0 OR MIT) AND BSD-3-Clause", "license_ids": [ @@ -20986,11 +21278,11 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -21010,14 +21302,14 @@ ], "license_file": "LICENSE-APACHE" }, - "enum-as-inner 0.6.0": { + "enum-as-inner 0.6.1": { "name": "enum-as-inner", - "version": "0.6.0", + "version": "0.6.1", "package_url": "https://github.com/bluejekyll/enum-as-inner", "repository": { "Http": { - "url": "https://static.crates.io/crates/enum-as-inner/0.6.0/download", - "sha256": "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" + "url": "https://static.crates.io/crates/enum-as-inner/0.6.1/download", + "sha256": "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" } }, "targets": [ @@ -21042,26 +21334,26 @@ "deps": { "common": [ { - "id": "heck 0.4.1", + "id": "heck 0.5.0", "target": "heck" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.6.0" + "version": "0.6.1" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -21070,14 +21362,14 @@ ], "license_file": "LICENSE-APACHE" }, - "enum-ordinalize 3.1.13": { + "enum-ordinalize 3.1.15": { "name": "enum-ordinalize", - "version": "3.1.13", + "version": "3.1.15", "package_url": "https://github.com/magiclen/enum-ordinalize", "repository": { "Http": { - "url": "https://static.crates.io/crates/enum-ordinalize/3.1.13/download", - "sha256": "e4f76552f53cefc9a7f64987c3701b99d982f7690606fd67de1d09712fbf52f1" + "url": "https://static.crates.io/crates/enum-ordinalize/3.1.15/download", + "sha256": "1bf1fa3f06bbff1ea5b1a9c7b14aa992a39657db60a2759457328d7e058f49ee" } }, "targets": [ @@ -21110,22 +21402,22 @@ "target": "num_traits" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "3.1.13" + "version": "3.1.15" }, "license": "MIT", "license_ids": [ @@ -21217,14 +21509,14 @@ ], "license_file": "LICENSE" }, - "env_filter 0.1.2": { + "env_filter 0.1.3": { "name": "env_filter", - "version": "0.1.2", + "version": "0.1.3", "package_url": "https://github.com/rust-cli/env_logger", "repository": { "Http": { - "url": "https://static.crates.io/crates/env_filter/0.1.2/download", - "sha256": "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" + "url": "https://static.crates.io/crates/env_filter/0.1.3/download", + "sha256": "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" } }, "targets": [ @@ -21249,14 +21541,14 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" } ], "selects": {} }, "edition": "2021", - "version": "0.1.2" + "version": "0.1.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -21303,11 +21595,11 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], @@ -21323,14 +21615,14 @@ ], "license_file": "LICENSE-APACHE" }, - "env_logger 0.11.2": { + "env_logger 0.11.6": { "name": "env_logger", - "version": "0.11.2", + "version": "0.11.6", "package_url": "https://github.com/rust-cli/env_logger", "repository": { "Http": { - "url": "https://static.crates.io/crates/env_logger/0.11.2/download", - "sha256": "6c012a26a7f605efc424dd53697843a72be7dc86ad2d01f7814337794a12231d" + "url": "https://static.crates.io/crates/env_logger/0.11.6/download", + "sha256": "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0" } }, "targets": [ @@ -21355,18 +21647,18 @@ "deps": { "common": [ { - "id": "env_filter 0.1.2", + "id": "env_filter 0.1.3", "target": "env_filter" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" } ], "selects": {} }, "edition": "2021", - "version": "0.11.2" + "version": "0.11.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -21454,15 +21746,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -21516,14 +21808,14 @@ ], "license_file": "LICENSE-APACHE" }, - "erased-serde 0.3.28": { + "erased-serde 0.3.31": { "name": "erased-serde", - "version": "0.3.28", + "version": "0.3.31", "package_url": "https://github.com/dtolnay/erased-serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/erased-serde/0.3.28/download", - "sha256": "da96524cc884f6558f1769b6c46686af2fe8e8b4cd253bd5a3cdba8181b8e070" + "url": "https://static.crates.io/crates/erased-serde/0.3.31/download", + "sha256": "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c" } }, "targets": [ @@ -21538,18 +21830,6 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], "library_target_name": "erased_serde", @@ -21566,10 +21846,6 @@ }, "deps": { "common": [ - { - "id": "erased-serde 0.3.28", - "target": "build_script_build" - }, { "id": "serde 1.0.217", "target": "serde" @@ -21578,15 +21854,7 @@ "selects": {} }, "edition": "2021", - "version": "0.3.28" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] + "version": "0.3.31" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -21642,19 +21910,19 @@ ], "cfg(target_os = \"hermit\")": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -21676,14 +21944,14 @@ ], "license_file": "LICENSE-APACHE" }, - "errno 0.3.8": { + "errno 0.3.10": { "name": "errno", - "version": "0.3.8", + "version": "0.3.10", "package_url": "https://github.com/lambda-fairy/rust-errno", "repository": { "Http": { - "url": "https://static.crates.io/crates/errno/0.3.8/download", - "sha256": "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" + "url": "https://static.crates.io/crates/errno/0.3.10/download", + "sha256": "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" } }, "targets": [ @@ -21716,32 +21984,32 @@ "selects": { "cfg(target_os = \"hermit\")": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(windows)": [ { - "id": "windows-sys 0.52.0", + "id": "windows-sys 0.59.0", "target": "windows_sys" } ] } }, "edition": "2018", - "version": "0.3.8" + "version": "0.3.10" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -21798,7 +22066,7 @@ "target": "build_script_build" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -21817,7 +22085,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -21830,14 +22098,14 @@ ], "license_file": "LICENSE" }, - "escargot 0.5.7": { + "escargot 0.5.13": { "name": "escargot", - "version": "0.5.7", + "version": "0.5.13", "package_url": "https://github.com/crate-ci/escargot.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/escargot/0.5.7/download", - "sha256": "f5584ba17d7ab26a8a7284f13e5bd196294dd2f2d79773cff29b9e9edef601a6" + "url": "https://static.crates.io/crates/escargot/0.5.13/download", + "sha256": "05a3ac187a16b5382fef8c69fd1bad123c67b7cf3932240a2d43dcdd32cded88" } }, "targets": [ @@ -21880,15 +22148,15 @@ "deps": { "common": [ { - "id": "escargot 0.5.7", + "id": "escargot 0.5.13", "target": "build_script_build" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -21896,14 +22164,14 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], "selects": {} }, - "edition": "2018", - "version": "0.5.7" + "edition": "2021", + "version": "0.5.13" }, "build_script_attrs": { "compile_data_glob": [ @@ -21974,11 +22242,11 @@ "target": "hex" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -21986,7 +22254,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -21994,7 +22262,7 @@ "target": "sha3" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -22078,7 +22346,7 @@ "target": "impl_serde" }, { - "id": "scale-info 2.9.0", + "id": "scale-info 2.11.6", "target": "scale_info" }, { @@ -22165,11 +22433,11 @@ "target": "impl_serde" }, { - "id": "primitive-types 0.12.1", + "id": "primitive-types 0.12.2", "target": "primitive_types" }, { - "id": "scale-info 2.9.0", + "id": "scale-info 2.11.6", "target": "scale_info" }, { @@ -22190,14 +22458,14 @@ ], "license_file": null }, - "ethers-core 2.0.8": { + "ethers-core 2.0.14": { "name": "ethers-core", - "version": "2.0.8", + "version": "2.0.14", "package_url": "https://github.com/gakonst/ethers-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ethers-core/2.0.8/download", - "sha256": "60ca2514feb98918a0a31de7e1983c29f2267ebf61b2dc5d4294f91e5b866623" + "url": "https://static.crates.io/crates/ethers-core/2.0.14/download", + "sha256": "82d80cc6ad30b14a48ab786523af33b37f28a8623fc06afd55324816ef18fb1f" } }, "targets": [ @@ -22222,7 +22490,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.4", + "id": "arrayvec 0.7.6", "target": "arrayvec" }, { @@ -22230,9 +22498,14 @@ "target": "bytes" }, { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, + { + "id": "const-hex 1.14.0", + "target": "const_hex", + "alias": "hex" + }, { "id": "elliptic-curve 0.13.8", "target": "elliptic_curve" @@ -22245,16 +22518,12 @@ "id": "generic-array 0.14.7", "target": "generic_array" }, - { - "id": "hex 0.4.3", - "target": "hex" - }, { "id": "k256 0.13.4", "target": "k256" }, { - "id": "num_enum 0.6.1", + "id": "num_enum 0.7.3", "target": "num_enum" }, { @@ -22274,15 +22543,15 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "strum 0.25.0", + "id": "strum 0.26.3", "target": "strum" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -22290,21 +22559,21 @@ "target": "tiny_keccak" }, { - "id": "unicode-xid 0.2.4", + "id": "unicode-xid 0.2.6", "target": "unicode_xid" } ], "selects": { "cfg(not(target_arch = \"wasm32\"))": [ { - "id": "tempfile 3.12.0", + "id": "tempfile 3.15.0", "target": "tempfile" } ] } }, "edition": "2021", - "version": "2.0.8" + "version": "2.0.14" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -22313,14 +22582,14 @@ ], "license_file": null }, - "ethnum 1.3.2": { + "ethnum 1.5.0": { "name": "ethnum", - "version": "1.3.2", + "version": "1.5.0", "package_url": "https://github.com/nlordell/ethnum-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ethnum/1.3.2/download", - "sha256": "0198b9d0078e0f30dedc7acbb21c974e838fc8fae3ee170128658a98cb2c1c04" + "url": "https://static.crates.io/crates/ethnum/1.5.0/download", + "sha256": "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c" } }, "targets": [ @@ -22358,7 +22627,7 @@ "selects": {} }, "edition": "2021", - "version": "1.3.2" + "version": "1.5.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -22406,266 +22675,14 @@ ], "license_file": "LICENSE-APACHE" }, - "event-listener 4.0.3": { - "name": "event-listener", - "version": "4.0.3", - "package_url": "https://github.com/smol-rs/event-listener", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/event-listener/4.0.3/download", - "sha256": "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" - } - }, - "targets": [ - { - "Library": { - "crate_name": "event_listener", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "event_listener", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "parking", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "concurrent-queue 2.5.0", - "target": "concurrent_queue" - }, - { - "id": "pin-project-lite 0.2.13", - "target": "pin_project_lite" - } - ], - "selects": { - "aarch64-apple-darwin": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "aarch64-apple-ios": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "aarch64-apple-ios-sim": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "aarch64-linux-android": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "aarch64-pc-windows-msvc": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "aarch64-unknown-fuchsia": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "aarch64-unknown-linux-gnu": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "aarch64-unknown-nixos-gnu": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "aarch64-unknown-nto-qnx710": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "arm-unknown-linux-gnueabi": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "armv7-linux-androideabi": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "armv7-unknown-linux-gnueabi": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "i686-apple-darwin": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "i686-linux-android": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "i686-pc-windows-msvc": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "i686-unknown-freebsd": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "i686-unknown-linux-gnu": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "powerpc-unknown-linux-gnu": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "riscv32imc-unknown-none-elf": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "riscv64gc-unknown-none-elf": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "s390x-unknown-linux-gnu": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "thumbv7em-none-eabi": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "thumbv8m.main-none-eabi": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "x86_64-apple-darwin": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "x86_64-apple-ios": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "x86_64-linux-android": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "x86_64-pc-windows-msvc": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "x86_64-unknown-freebsd": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "x86_64-unknown-fuchsia": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "x86_64-unknown-linux-gnu": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ], - "x86_64-unknown-none": [ - { - "id": "parking 2.1.0", - "target": "parking" - } - ] - } - }, - "edition": "2021", - "version": "4.0.3" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "event-listener 5.3.1": { + "event-listener 5.4.0": { "name": "event-listener", - "version": "5.3.1", + "version": "5.4.0", "package_url": "https://github.com/smol-rs/event-listener", "repository": { "Http": { - "url": "https://static.crates.io/crates/event-listener/5.3.1/download", - "sha256": "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" + "url": "https://static.crates.io/crates/event-listener/5.4.0/download", + "sha256": "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" } }, "targets": [ @@ -22702,207 +22719,207 @@ "target": "concurrent_queue" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "aarch64-apple-ios": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "aarch64-apple-ios-sim": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "aarch64-linux-android": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "aarch64-pc-windows-msvc": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "aarch64-unknown-fuchsia": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "aarch64-unknown-linux-gnu": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "arm-unknown-linux-gnueabi": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "armv7-linux-androideabi": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "i686-apple-darwin": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "i686-linux-android": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "i686-pc-windows-msvc": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "i686-unknown-freebsd": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "i686-unknown-linux-gnu": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "powerpc-unknown-linux-gnu": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "riscv32imc-unknown-none-elf": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "riscv64gc-unknown-none-elf": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "s390x-unknown-linux-gnu": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "thumbv7em-none-eabi": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "thumbv8m.main-none-eabi": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-apple-darwin": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-apple-ios": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-linux-android": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-pc-windows-msvc": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-unknown-freebsd": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-unknown-fuchsia": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-unknown-linux-gnu": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ], "x86_64-unknown-none": [ { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" } ] } }, "edition": "2021", - "version": "5.3.1" + "version": "5.4.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -22911,72 +22928,14 @@ ], "license_file": "LICENSE-APACHE" }, - "event-listener-strategy 0.4.0": { + "event-listener-strategy 0.5.3": { "name": "event-listener-strategy", - "version": "0.4.0", - "package_url": "https://github.com/smol-rs/event-listener", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/event-listener-strategy/0.4.0/download", - "sha256": "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" - } - }, - "targets": [ - { - "Library": { - "crate_name": "event_listener_strategy", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "event_listener_strategy", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "event-listener 4.0.3", - "target": "event_listener" - }, - { - "id": "pin-project-lite 0.2.13", - "target": "pin_project_lite" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.4.0" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "event-listener-strategy 0.5.2": { - "name": "event-listener-strategy", - "version": "0.5.2", + "version": "0.5.3", "package_url": "https://github.com/smol-rs/event-listener-strategy", "repository": { "Http": { - "url": "https://static.crates.io/crates/event-listener-strategy/0.5.2/download", - "sha256": "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" + "url": "https://static.crates.io/crates/event-listener-strategy/0.5.3/download", + "sha256": "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2" } }, "targets": [ @@ -23007,18 +22966,18 @@ "deps": { "common": [ { - "id": "event-listener 5.3.1", + "id": "event-listener 5.4.0", "target": "event_listener" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], "selects": {} }, "edition": "2021", - "version": "0.5.2" + "version": "0.5.3" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -23059,7 +23018,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -23083,11 +23042,11 @@ "target": "strum" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" } ], @@ -23138,7 +23097,7 @@ "target": "errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -23192,14 +23151,14 @@ ], "license_file": "LICENSE" }, - "eyre 0.6.8": { + "eyre 0.6.12": { "name": "eyre", - "version": "0.6.8", - "package_url": "https://github.com/yaahc/eyre", + "version": "0.6.12", + "package_url": "https://github.com/eyre-rs/eyre", "repository": { "Http": { - "url": "https://static.crates.io/crates/eyre/0.6.8/download", - "sha256": "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb" + "url": "https://static.crates.io/crates/eyre/0.6.12/download", + "sha256": "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec" } }, "targets": [ @@ -23244,7 +23203,7 @@ "deps": { "common": [ { - "id": "eyre 0.6.8", + "id": "eyre 0.6.12", "target": "build_script_build" }, { @@ -23252,14 +23211,14 @@ "target": "indenter" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "selects": {} }, "edition": "2018", - "version": "0.6.8" + "version": "0.6.12" }, "build_script_attrs": { "compile_data_glob": [ @@ -23400,64 +23359,14 @@ ], "license_file": "LICENSE-APACHE" }, - "fastrand 1.9.0": { - "name": "fastrand", - "version": "1.9.0", - "package_url": "https://github.com/smol-rs/fastrand", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/fastrand/1.9.0/download", - "sha256": "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" - } - }, - "targets": [ - { - "Library": { - "crate_name": "fastrand", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "fastrand", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [], - "selects": { - "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ - { - "id": "instant 0.1.12", - "target": "instant" - } - ] - } - }, - "edition": "2018", - "version": "1.9.0" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "fastrand 2.1.0": { + "fastrand 2.3.0": { "name": "fastrand", - "version": "2.1.0", + "version": "2.3.0", "package_url": "https://github.com/smol-rs/fastrand", "repository": { "Http": { - "url": "https://static.crates.io/crates/fastrand/2.1.0/download", - "sha256": "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" + "url": "https://static.crates.io/crates/fastrand/2.3.0/download", + "sha256": "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" } }, "targets": [ @@ -23488,7 +23397,7 @@ "selects": {} }, "edition": "2018", - "version": "2.1.0" + "version": "2.3.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -23614,14 +23523,14 @@ ], "license_file": "LICENSE-APACHE" }, - "fiat-crypto 0.2.6": { + "fiat-crypto 0.2.9": { "name": "fiat-crypto", - "version": "0.2.6", + "version": "0.2.9", "package_url": "https://github.com/mit-plv/fiat-crypto", "repository": { "Http": { - "url": "https://static.crates.io/crates/fiat-crypto/0.2.6/download", - "sha256": "1676f435fc1dadde4d03e43f5d62b259e1ce5f40bd4ffb21db2b42ebe59c1382" + "url": "https://static.crates.io/crates/fiat-crypto/0.2.9/download", + "sha256": "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" } }, "targets": [ @@ -23644,7 +23553,7 @@ "**" ], "edition": "2018", - "version": "0.2.6" + "version": "0.2.9" }, "license": "MIT OR Apache-2.0 OR BSD-1-Clause", "license_ids": [ @@ -23654,14 +23563,14 @@ ], "license_file": "LICENSE-APACHE" }, - "filetime 0.2.21": { + "filetime 0.2.25": { "name": "filetime", - "version": "0.2.21", + "version": "0.2.25", "package_url": "https://github.com/alexcrichton/filetime", "repository": { "Http": { - "url": "https://static.crates.io/crates/filetime/0.2.21/download", - "sha256": "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153" + "url": "https://static.crates.io/crates/filetime/0.2.25/download", + "sha256": "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" } }, "targets": [ @@ -23693,26 +23602,26 @@ "selects": { "cfg(target_os = \"redox\")": [ { - "id": "redox_syscall 0.2.16", - "target": "syscall" + "id": "libredox 0.1.3", + "target": "libredox" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(windows)": [ { - "id": "windows-sys 0.48.0", + "id": "windows-sys 0.59.0", "target": "windows_sys" } ] } }, "edition": "2018", - "version": "0.2.21" + "version": "0.2.25" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -23769,14 +23678,14 @@ "target": "build_script_build" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "selects": { "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" } ], @@ -23801,7 +23710,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -23923,14 +23832,14 @@ ], "license_file": "LICENSE-APACHE" }, - "flagset 0.4.3": { + "flagset 0.4.6": { "name": "flagset", - "version": "0.4.3", + "version": "0.4.6", "package_url": "https://github.com/enarx/flagset", "repository": { "Http": { - "url": "https://static.crates.io/crates/flagset/0.4.3/download", - "sha256": "cda653ca797810c02f7ca4b804b40b8b95ae046eb989d356bce17919a8c25499" + "url": "https://static.crates.io/crates/flagset/0.4.6/download", + "sha256": "b3ea1ec5f8307826a5b71094dd91fc04d4ae75d5709b20ad351c7fb4815c86ec" } }, "targets": [ @@ -23952,8 +23861,8 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "0.4.3" + "edition": "2021", + "version": "0.4.6" }, "license": "Apache-2.0", "license_ids": [ @@ -23961,14 +23870,14 @@ ], "license_file": "LICENSE" }, - "flate2 1.0.31": { + "flate2 1.0.35": { "name": "flate2", - "version": "1.0.31", + "version": "1.0.35", "package_url": "https://github.com/rust-lang/flate2-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/flate2/1.0.31/download", - "sha256": "7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920" + "url": "https://static.crates.io/crates/flate2/1.0.35/download", + "sha256": "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c" } }, "targets": [ @@ -24002,18 +23911,18 @@ "deps": { "common": [ { - "id": "crc32fast 1.3.2", + "id": "crc32fast 1.4.2", "target": "crc32fast" }, { - "id": "miniz_oxide 0.7.1", + "id": "miniz_oxide 0.8.3", "target": "miniz_oxide" } ], "selects": {} }, "edition": "2018", - "version": "1.0.31" + "version": "1.0.35" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -24022,14 +23931,14 @@ ], "license_file": "LICENSE-APACHE" }, - "float-cmp 0.9.0": { + "float-cmp 0.10.0": { "name": "float-cmp", - "version": "0.9.0", + "version": "0.10.0", "package_url": "https://github.com/mikedilger/float-cmp", "repository": { "Http": { - "url": "https://static.crates.io/crates/float-cmp/0.9.0/download", - "sha256": "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" + "url": "https://static.crates.io/crates/float-cmp/0.10.0/download", + "sha256": "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8" } }, "targets": [ @@ -24069,7 +23978,7 @@ "selects": {} }, "edition": "2018", - "version": "0.9.0" + "version": "0.10.0" }, "license": "MIT", "license_ids": [ @@ -24253,7 +24162,7 @@ "target": "nonempty" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -24268,14 +24177,14 @@ ], "license_file": "LICENSE.txt" }, - "fqdn 0.3.11": { + "fqdn 0.3.12": { "name": "fqdn", - "version": "0.3.11", + "version": "0.3.12", "package_url": "https://github.com/Orange-OpenSource/fqdn", "repository": { "Http": { - "url": "https://static.crates.io/crates/fqdn/0.3.11/download", - "sha256": "08b1eaa7dfddeab6036292995620bf0435712e619db6d7690605897e76975eb0" + "url": "https://static.crates.io/crates/fqdn/0.3.12/download", + "sha256": "eb540cf7bc4fe6df9d8f7f0c974cfd0dce8ed4e9e8884e73433b503ee78b4e7d" } }, "targets": [ @@ -24305,7 +24214,7 @@ "selects": {} }, "edition": "2021", - "version": "0.3.11" + "version": "0.3.12" }, "license": "MIT", "license_ids": [ @@ -24313,14 +24222,14 @@ ], "license_file": null }, - "fqdn 0.4.1": { + "fqdn 0.4.4": { "name": "fqdn", - "version": "0.4.1", + "version": "0.4.4", "package_url": "https://github.com/Orange-OpenSource/fqdn", "repository": { "Http": { - "url": "https://static.crates.io/crates/fqdn/0.4.1/download", - "sha256": "5eeee501d87b436020fcd3065cc981b5e4d22f2066735268b36b9d513d23e553" + "url": "https://static.crates.io/crates/fqdn/0.4.4/download", + "sha256": "8f66e93156d144bd3a9a970033d04c6fbfb4b641275d8eaa3ff83f5b9c232496" } }, "targets": [ @@ -24350,7 +24259,7 @@ "selects": {} }, "edition": "2021", - "version": "0.4.1" + "version": "0.4.4" }, "license": "MIT", "license_ids": [ @@ -24544,7 +24453,7 @@ "target": "mac" }, { - "id": "new_debug_unreachable 1.0.4", + "id": "new_debug_unreachable 1.0.6", "target": "debug_unreachable" } ], @@ -24861,14 +24770,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-lite 2.0.0": { + "futures-lite 2.6.0": { "name": "futures-lite", - "version": "2.0.0", + "version": "2.6.0", "package_url": "https://github.com/smol-rs/futures-lite", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-lite/2.0.0/download", - "sha256": "9c1155db57329dca6d018b61e76b1488ce9a2e5e44028cac420a5898f4fcef63" + "url": "https://static.crates.io/crates/futures-lite/2.6.0/download", + "sha256": "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" } }, "targets": [ @@ -24896,18 +24805,16 @@ "default", "fastrand", "futures-io", - "memchr", "parking", "race", - "std", - "waker-fn" + "std" ], "selects": {} }, "deps": { "common": [ { - "id": "fastrand 2.1.0", + "id": "fastrand 2.3.0", "target": "fastrand" }, { @@ -24919,26 +24826,18 @@ "target": "futures_io" }, { - "id": "memchr 2.7.4", - "target": "memchr" - }, - { - "id": "parking 2.1.0", + "id": "parking 2.2.1", "target": "parking" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" - }, - { - "id": "waker-fn 1.1.0", - "target": "waker_fn" } ], "selects": {} }, - "edition": "2018", - "version": "2.0.0" + "edition": "2021", + "version": "2.6.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -24979,15 +24878,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -25046,11 +24945,11 @@ "target": "futures_io" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" } @@ -25160,14 +25059,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-timer 3.0.2": { + "futures-timer 3.0.3": { "name": "futures-timer", - "version": "3.0.2", + "version": "3.0.3", "package_url": "https://github.com/async-rs/futures-timer", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-timer/3.0.2/download", - "sha256": "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" + "url": "https://static.crates.io/crates/futures-timer/3.0.3/download", + "sha256": "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" } }, "targets": [ @@ -25190,7 +25089,7 @@ "**" ], "edition": "2018", - "version": "3.0.2" + "version": "3.0.3" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -25274,7 +25173,7 @@ "target": "memchr" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -25282,7 +25181,7 @@ "target": "pin_utils" }, { - "id": "slab 0.4.8", + "id": "slab 0.4.9", "target": "slab" } ], @@ -25394,6 +25293,104 @@ ], "license_file": "LICENSE-APACHE" }, + "generator 0.8.4": { + "name": "generator", + "version": "0.8.4", + "package_url": "https://github.com/Xudong-Huang/generator-rs.git", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/generator/0.8.4/download", + "sha256": "cc6bd114ceda131d3b1d665eba35788690ad37f5916457286b32ab6fd3c438dd" + } + }, + "targets": [ + { + "Library": { + "crate_name": "generator", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "generator", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "cfg-if 1.0.0", + "target": "cfg_if" + }, + { + "id": "generator 0.8.4", + "target": "build_script_build" + }, + { + "id": "log 0.4.25", + "target": "log" + } + ], + "selects": { + "cfg(unix)": [ + { + "id": "libc 0.2.169", + "target": "libc" + } + ], + "cfg(windows)": [ + { + "id": "windows 0.58.0", + "target": "windows" + } + ] + } + }, + "edition": "2021", + "version": "0.8.4" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ], + "proc_macro_deps": { + "common": [ + { + "id": "rustversion 1.0.19", + "target": "rustversion" + } + ], + "selects": {} + } + }, + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "generic-array 0.14.7": { "name": "generic-array", "version": "0.14.7", @@ -25472,7 +25469,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.4", + "id": "version_check 0.9.5", "target": "version_check" } ], @@ -25521,7 +25518,7 @@ "target": "c_linked_list" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -25598,7 +25595,7 @@ "target": "build_script_build" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -25664,7 +25661,7 @@ "deps": { "common": [ { - "id": "unicode-width 0.1.10", + "id": "unicode-width 0.1.14", "target": "unicode_width" } ], @@ -25680,14 +25677,14 @@ ], "license_file": "LICENSE-APACHE" }, - "getrandom 0.2.10": { + "getrandom 0.2.15": { "name": "getrandom", - "version": "0.2.10", + "version": "0.2.15", "package_url": "https://github.com/rust-random/getrandom", "repository": { "Http": { - "url": "https://static.crates.io/crates/getrandom/0.2.10/download", - "sha256": "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" + "url": "https://static.crates.io/crates/getrandom/0.2.15/download", + "sha256": "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" } }, "targets": [ @@ -25714,7 +25711,13 @@ "custom", "std" ], - "selects": {} + "selects": { + "wasm32-unknown-unknown": [ + "js", + "js-sys", + "wasm-bindgen" + ] + } }, "deps": { "common": [ @@ -25732,14 +25735,24 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } + ], + "wasm32-unknown-unknown": [ + { + "id": "js-sys 0.3.77", + "target": "js_sys" + }, + { + "id": "wasm-bindgen 0.2.100", + "target": "wasm_bindgen" + } ] } }, "edition": "2018", - "version": "0.2.10" + "version": "0.2.15" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -25818,52 +25831,6 @@ ], "license_file": "LICENSE-APACHE" }, - "gimli 0.27.3": { - "name": "gimli", - "version": "0.27.3", - "package_url": "https://github.com/gimli-rs/gimli", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/gimli/0.27.3/download", - "sha256": "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" - } - }, - "targets": [ - { - "Library": { - "crate_name": "gimli", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "gimli", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "read", - "read-core" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.27.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "gimli 0.31.1": { "name": "gimli", "version": "0.31.1", @@ -25905,7 +25872,7 @@ "deps": { "common": [ { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" } ], @@ -25921,14 +25888,14 @@ ], "license_file": "LICENSE-APACHE" }, - "glob 0.3.1": { + "glob 0.3.2": { "name": "glob", - "version": "0.3.1", + "version": "0.3.2", "package_url": "https://github.com/rust-lang/glob", "repository": { "Http": { - "url": "https://static.crates.io/crates/glob/0.3.1/download", - "sha256": "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" + "url": "https://static.crates.io/crates/glob/0.3.2/download", + "sha256": "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" } }, "targets": [ @@ -25951,7 +25918,7 @@ "**" ], "edition": "2015", - "version": "0.3.1" + "version": "0.3.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -25960,14 +25927,14 @@ ], "license_file": "LICENSE-APACHE" }, - "governor 0.6.0": { + "governor 0.6.3": { "name": "governor", - "version": "0.6.0", - "package_url": "https://github.com/antifuchs/governor.git", + "version": "0.6.3", + "package_url": "https://github.com/boinkor-net/governor.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/governor/0.6.0/download", - "sha256": "821239e5672ff23e2a7060901fa622950bbd80b649cdaadd78d1c1767ed14eb4" + "url": "https://static.crates.io/crates/governor/0.6.3/download", + "sha256": "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b" } }, "targets": [ @@ -26009,7 +25976,7 @@ "target": "cfg_if" }, { - "id": "dashmap 5.5.0", + "id": "dashmap 5.5.3", "target": "dashmap" }, { @@ -26017,7 +25984,7 @@ "target": "futures" }, { - "id": "futures-timer 3.0.2", + "id": "futures-timer 3.0.3", "target": "futures_timer" }, { @@ -26029,11 +25996,15 @@ "target": "nonzero_ext" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { - "id": "quanta 0.11.1", + "id": "portable-atomic 1.10.0", + "target": "portable_atomic" + }, + { + "id": "quanta 0.12.5", "target": "quanta" }, { @@ -26043,12 +26014,16 @@ { "id": "smallvec 1.13.2", "target": "smallvec" + }, + { + "id": "spinning_top 0.3.0", + "target": "spinning_top" } ], "selects": {} }, "edition": "2018", - "version": "0.6.0" + "version": "0.6.3" }, "license": "MIT", "license_ids": [ @@ -26181,15 +26156,15 @@ "target": "http" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "slab 0.4.8", + "id": "slab 0.4.9", "target": "slab" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -26212,14 +26187,14 @@ ], "license_file": "LICENSE" }, - "h2 0.4.4": { + "h2 0.4.7": { "name": "h2", - "version": "0.4.4", + "version": "0.4.7", "package_url": "https://github.com/hyperium/h2", "repository": { "Http": { - "url": "https://static.crates.io/crates/h2/0.4.4/download", - "sha256": "816ec7294445779408f36fe57bc5b7fc1cf59664059096c65f905c1c61f58069" + "url": "https://static.crates.io/crates/h2/0.4.7/download", + "sha256": "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e" } }, "targets": [ @@ -26243,6 +26218,10 @@ ], "deps": { "common": [ + { + "id": "atomic-waker 1.1.2", + "target": "atomic_waker" + }, { "id": "bytes 1.9.0", "target": "bytes" @@ -26259,24 +26238,20 @@ "id": "futures-sink 0.3.31", "target": "futures_sink" }, - { - "id": "futures-util 0.3.31", - "target": "futures_util" - }, { "id": "http 1.2.0", "target": "http" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "slab 0.4.8", + "id": "slab 0.4.9", "target": "slab" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -26291,7 +26266,7 @@ "selects": {} }, "edition": "2021", - "version": "0.4.4" + "version": "0.4.7" }, "license": "MIT", "license_ids": [ @@ -26299,14 +26274,14 @@ ], "license_file": "LICENSE" }, - "half 1.8.2": { + "half 1.8.3": { "name": "half", - "version": "1.8.2", + "version": "1.8.3", "package_url": "https://github.com/starkat99/half-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/half/1.8.2/download", - "sha256": "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" + "url": "https://static.crates.io/crates/half/1.8.3/download", + "sha256": "1b43ede17f21864e81be2fa654110bf1e793774238d86ef8555c37e6519c0403" } }, "targets": [ @@ -26329,7 +26304,62 @@ "**" ], "edition": "2018", - "version": "1.8.2" + "version": "1.8.3" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE" + }, + "half 2.4.1": { + "name": "half", + "version": "2.4.1", + "package_url": "https://github.com/starkat99/half-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/half/2.4.1/download", + "sha256": "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" + } + }, + "targets": [ + { + "Library": { + "crate_name": "half", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "half", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "cfg-if 1.0.0", + "target": "cfg_if" + } + ], + "selects": { + "cfg(target_arch = \"spirv\")": [ + { + "id": "crunchy 0.2.2", + "target": "crunchy" + } + ] + } + }, + "edition": "2021", + "version": "2.4.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -26504,14 +26534,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hashlink 0.8.3": { + "hashlink 0.8.4": { "name": "hashlink", - "version": "0.8.3", + "version": "0.8.4", "package_url": "https://github.com/kyren/hashlink", "repository": { "Http": { - "url": "https://static.crates.io/crates/hashlink/0.8.3/download", - "sha256": "312f66718a2d7789ffef4f4b7b213138ed9f1eb3aa1d0d82fc99f88fb3ffd26f" + "url": "https://static.crates.io/crates/hashlink/0.8.4/download", + "sha256": "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" } }, "targets": [ @@ -26543,7 +26573,7 @@ "selects": {} }, "edition": "2018", - "version": "0.8.3" + "version": "0.8.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -26552,14 +26582,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hdrhistogram 7.5.2": { + "hdrhistogram 7.5.4": { "name": "hdrhistogram", - "version": "7.5.2", + "version": "7.5.4", "package_url": "https://github.com/HdrHistogram/HdrHistogram_rust.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/hdrhistogram/7.5.2/download", - "sha256": "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8" + "url": "https://static.crates.io/crates/hdrhistogram/7.5.4/download", + "sha256": "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d" } }, "targets": [ @@ -26595,7 +26625,7 @@ "selects": {} }, "edition": "2018", - "version": "7.5.2" + "version": "7.5.4" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -26604,14 +26634,14 @@ ], "license_file": "LICENSE-APACHE" }, - "headers 0.3.8": { + "headers 0.3.9": { "name": "headers", - "version": "0.3.8", + "version": "0.3.9", "package_url": "https://github.com/hyperium/headers", "repository": { "Http": { - "url": "https://static.crates.io/crates/headers/0.3.8/download", - "sha256": "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" + "url": "https://static.crates.io/crates/headers/0.3.9/download", + "sha256": "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" } }, "targets": [ @@ -26636,13 +26666,9 @@ "deps": { "common": [ { - "id": "base64 0.13.1", + "id": "base64 0.21.7", "target": "base64" }, - { - "id": "bitflags 1.3.2", - "target": "bitflags" - }, { "id": "bytes 1.9.0", "target": "bytes" @@ -26656,7 +26682,7 @@ "target": "http" }, { - "id": "httpdate 1.0.2", + "id": "httpdate 1.0.3", "target": "httpdate" }, { @@ -26671,7 +26697,7 @@ "selects": {} }, "edition": "2015", - "version": "0.3.8" + "version": "0.3.9" }, "license": "MIT", "license_ids": [ @@ -26711,7 +26737,7 @@ "deps": { "common": [ { - "id": "base64 0.21.6", + "id": "base64 0.21.7", "target": "base64" }, { @@ -26727,7 +26753,7 @@ "target": "http" }, { - "id": "httpdate 1.0.2", + "id": "httpdate 1.0.3", "target": "httpdate" }, { @@ -26876,7 +26902,7 @@ "deps": { "common": [ { - "id": "unicode-segmentation 1.10.1", + "id": "unicode-segmentation 1.12.0", "target": "unicode_segmentation" } ], @@ -27008,7 +27034,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -27197,7 +27223,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.4", + "id": "arrayvec 0.7.6", "target": "arrayvec" } ], @@ -27356,14 +27382,14 @@ ], "license_file": null }, - "hickory-proto 0.24.1": { + "hickory-proto 0.24.2": { "name": "hickory-proto", - "version": "0.24.1", + "version": "0.24.2", "package_url": "https://github.com/hickory-dns/hickory-dns", "repository": { "Http": { - "url": "https://static.crates.io/crates/hickory-proto/0.24.1/download", - "sha256": "07698b8420e2f0d6447a436ba999ec85d8fbf2a398bbd737b82cac4a2e96e512" + "url": "https://static.crates.io/crates/hickory-proto/0.24.2/download", + "sha256": "447afdcdb8afb9d0a852af6dc65d9b285ce720ed7a59e42a8bf2e931c67bc1b5" } }, "targets": [ @@ -27418,7 +27444,7 @@ "target": "cfg_if" }, { - "id": "data-encoding 2.4.0", + "id": "data-encoding 2.7.0", "target": "data_encoding" }, { @@ -27442,7 +27468,7 @@ "target": "http" }, { - "id": "idna 0.4.0", + "id": "idna 1.0.3", "target": "idna" }, { @@ -27450,7 +27476,7 @@ "target": "ipnet" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -27466,19 +27492,19 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tinyvec 1.6.0", + "id": "tinyvec 1.8.1", "target": "tinyvec" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -27490,11 +27516,11 @@ "target": "tracing" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], @@ -27504,17 +27530,17 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" }, { - "id": "enum-as-inner 0.6.0", + "id": "enum-as-inner 0.6.1", "target": "enum_as_inner" } ], "selects": {} }, - "version": "0.24.1" + "version": "0.24.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -27523,14 +27549,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hickory-resolver 0.24.1": { + "hickory-resolver 0.24.2": { "name": "hickory-resolver", - "version": "0.24.1", + "version": "0.24.2", "package_url": "https://github.com/hickory-dns/hickory-dns", "repository": { "Http": { - "url": "https://static.crates.io/crates/hickory-resolver/0.24.1/download", - "sha256": "28757f23aa75c98f254cf0405e6d8c25b831b32921b050a66692427679b1f243" + "url": "https://static.crates.io/crates/hickory-resolver/0.24.2/download", + "sha256": "0a2e2aba9c389ce5267d31cf1e4dace82390ae276b0b364ea55630b1fa1b44b4" } }, "targets": [ @@ -27583,7 +27609,7 @@ "target": "futures_util" }, { - "id": "hickory-proto 0.24.1", + "id": "hickory-proto 0.24.2", "target": "hickory_proto" }, { @@ -27591,11 +27617,11 @@ "target": "lru_cache" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { @@ -27615,11 +27641,11 @@ "target": "smallvec" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -27631,7 +27657,7 @@ "target": "tracing" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], @@ -27657,7 +27683,7 @@ } }, "edition": "2021", - "version": "0.24.1" + "version": "0.24.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -27768,14 +27794,14 @@ ], "license_file": "LICENSE-APACHE" }, - "home 0.5.9": { + "home 0.5.11": { "name": "home", - "version": "0.5.9", + "version": "0.5.11", "package_url": "https://github.com/rust-lang/cargo", "repository": { "Http": { - "url": "https://static.crates.io/crates/home/0.5.9/download", - "sha256": "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" + "url": "https://static.crates.io/crates/home/0.5.11/download", + "sha256": "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" } }, "targets": [ @@ -27802,14 +27828,14 @@ "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.52.0", + "id": "windows-sys 0.59.0", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "0.5.9" + "version": "0.5.11" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -27863,7 +27889,7 @@ "selects": { "cfg(any(unix, target_os = \"redox\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -27932,7 +27958,7 @@ "target": "build_script_build" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -27959,11 +27985,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -28021,7 +28047,7 @@ "target": "fnv" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" } ], @@ -28084,7 +28110,7 @@ "target": "fnv" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" } ], @@ -28140,7 +28166,7 @@ "target": "http" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], @@ -28254,7 +28280,7 @@ "target": "http_body" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], @@ -28269,14 +28295,14 @@ ], "license_file": "LICENSE" }, - "httparse 1.8.0": { + "httparse 1.9.5": { "name": "httparse", - "version": "1.8.0", + "version": "1.9.5", "package_url": "https://github.com/seanmonstar/httparse", "repository": { "Http": { - "url": "https://static.crates.io/crates/httparse/1.8.0/download", - "sha256": "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" + "url": "https://static.crates.io/crates/httparse/1.9.5/download", + "sha256": "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" } }, "targets": [ @@ -28320,14 +28346,14 @@ "deps": { "common": [ { - "id": "httparse 1.8.0", + "id": "httparse 1.9.5", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.8.0" + "version": "1.9.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -28337,21 +28363,21 @@ "**" ] }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "httpdate 1.0.2": { + "httpdate 1.0.3": { "name": "httpdate", - "version": "1.0.2", + "version": "1.0.3", "package_url": "https://github.com/pyfisch/httpdate", "repository": { "Http": { - "url": "https://static.crates.io/crates/httpdate/1.0.2/download", - "sha256": "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" + "url": "https://static.crates.io/crates/httpdate/1.0.3/download", + "sha256": "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" } }, "targets": [ @@ -28373,10 +28399,10 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "1.0.2" + "edition": "2021", + "version": "1.0.3" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -28415,7 +28441,7 @@ "deps": { "common": [ { - "id": "libm 0.2.7", + "id": "libm 0.2.11", "target": "libm" } ], @@ -28522,14 +28548,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hyper 0.14.27": { + "hyper 0.14.32": { "name": "hyper", - "version": "0.14.27", + "version": "0.14.32", "package_url": "https://github.com/hyperium/hyper", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper/0.14.27/download", - "sha256": "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" + "url": "https://static.crates.io/crates/hyper/0.14.32/download", + "sha256": "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" } }, "targets": [ @@ -28555,7 +28581,6 @@ "common": [ "client", "default", - "full", "h2", "http1", "http2", @@ -28598,27 +28623,27 @@ "target": "http_body" }, { - "id": "httparse 1.8.0", + "id": "httparse 1.9.5", "target": "httparse" }, { - "id": "httpdate 1.0.2", + "id": "httpdate 1.0.3", "target": "httpdate" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "socket2 0.4.9", + "id": "socket2 0.5.8", "target": "socket2" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -28637,7 +28662,7 @@ "selects": {} }, "edition": "2018", - "version": "0.14.27" + "version": "0.14.32" }, "license": "MIT", "license_ids": [ @@ -28645,14 +28670,14 @@ ], "license_file": "LICENSE" }, - "hyper 1.5.1": { + "hyper 1.5.2": { "name": "hyper", - "version": "1.5.1", + "version": "1.5.2", "package_url": "https://github.com/hyperium/hyper", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper/1.5.1/download", - "sha256": "97818827ef4f364230e16705d4706e2897df2bb60617d6ca15d598025a3c481f" + "url": "https://static.crates.io/crates/hyper/1.5.2/download", + "sha256": "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0" } }, "targets": [ @@ -28700,7 +28725,7 @@ "target": "futures_util" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { @@ -28712,19 +28737,19 @@ "target": "http_body" }, { - "id": "httparse 1.8.0", + "id": "httparse 1.9.5", "target": "httparse" }, { - "id": "httpdate 1.0.2", + "id": "httpdate 1.0.3", "target": "httpdate" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -28732,7 +28757,7 @@ "target": "smallvec" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -28743,7 +28768,7 @@ "selects": {} }, "edition": "2021", - "version": "1.5.1" + "version": "1.5.2" }, "license": "MIT", "license_ids": [ @@ -28799,7 +28824,7 @@ "target": "http" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -28807,11 +28832,11 @@ "target": "hyper_util" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -28884,11 +28909,11 @@ "target": "http" }, { - "id": "hyper 0.14.27", + "id": "hyper 0.14.32", "target": "hyper" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -28900,7 +28925,7 @@ "target": "rustls_native_certs" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -28921,14 +28946,14 @@ ], "license_file": "LICENSE" }, - "hyper-rustls 0.27.3": { + "hyper-rustls 0.27.5": { "name": "hyper-rustls", - "version": "0.27.3", + "version": "0.27.5", "package_url": "https://github.com/rustls/hyper-rustls", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper-rustls/0.27.3/download", - "sha256": "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" + "url": "https://static.crates.io/crates/hyper-rustls/0.27.5/download", + "sha256": "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2" } }, "targets": [ @@ -29103,7 +29128,7 @@ "target": "http" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -29111,28 +29136,28 @@ "target": "hyper_util" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -29143,200 +29168,200 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "aarch64-apple-ios": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "aarch64-apple-ios-sim": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "aarch64-linux-android": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "aarch64-pc-windows-msvc": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "aarch64-unknown-fuchsia": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "aarch64-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "arm-unknown-linux-gnueabi": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "armv7-linux-androideabi": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "i686-apple-darwin": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "i686-linux-android": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "i686-pc-windows-msvc": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "i686-unknown-freebsd": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "i686-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "powerpc-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "riscv32imc-unknown-none-elf": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "riscv64gc-unknown-none-elf": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "s390x-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "thumbv7em-none-eabi": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "thumbv8m.main-none-eabi": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-apple-darwin": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-apple-ios": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-linux-android": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-pc-windows-msvc": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-unknown-freebsd": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-unknown-fuchsia": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "x86_64-unknown-none": [ { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ] } }, "edition": "2021", - "version": "0.27.3" + "version": "0.27.5" }, "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ @@ -29386,7 +29411,7 @@ "target": "http" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -29394,11 +29419,11 @@ "target": "hyper_util" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -29418,14 +29443,14 @@ ], "license_file": "LICENSE-APACHE.md" }, - "hyper-timeout 0.5.1": { + "hyper-timeout 0.5.2": { "name": "hyper-timeout", - "version": "0.5.1", + "version": "0.5.2", "package_url": "https://github.com/hjr3/hyper-timeout", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper-timeout/0.5.1/download", - "sha256": "3203a961e5c83b6f5498933e78b6b263e208c197b63e9c6c53cc82ffd3f63793" + "url": "https://static.crates.io/crates/hyper-timeout/0.5.2/download", + "sha256": "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" } }, "targets": [ @@ -29450,7 +29475,7 @@ "deps": { "common": [ { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -29458,11 +29483,11 @@ "target": "hyper_util" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -29473,7 +29498,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.1" + "version": "0.5.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -29550,19 +29575,19 @@ "target": "http_body" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -29585,14 +29610,14 @@ ], "license_file": "LICENSE" }, - "iana-time-zone 0.1.59": { + "iana-time-zone 0.1.61": { "name": "iana-time-zone", - "version": "0.1.59", + "version": "0.1.61", "package_url": "https://github.com/strawlab/iana-time-zone", "repository": { "Http": { - "url": "https://static.crates.io/crates/iana-time-zone/0.1.59/download", - "sha256": "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539" + "url": "https://static.crates.io/crates/iana-time-zone/0.1.61/download", + "sha256": "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" } }, "targets": [ @@ -29623,22 +29648,22 @@ "deps": { "common": [], "selects": { - "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ - { - "id": "core-foundation-sys 0.8.7", - "target": "core_foundation_sys" - } - ], - "cfg(target_arch = \"wasm32\")": [ + "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], + "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ + { + "id": "core-foundation-sys 0.8.7", + "target": "core_foundation_sys" + } + ], "cfg(target_os = \"android\")": [ { "id": "android_system_properties 0.1.5", @@ -29660,7 +29685,7 @@ } }, "edition": "2018", - "version": "0.1.59" + "version": "0.1.61" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -29732,7 +29757,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -29794,7 +29819,7 @@ "target": "async_channel" }, { - "id": "async-lock 3.3.0", + "id": "async-lock 3.4.0", "target": "async_lock" }, { @@ -29810,11 +29835,11 @@ "target": "cached" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "der 0.7.7", + "id": "der 0.7.9", "target": "der" }, { @@ -29870,7 +29895,7 @@ "target": "p256" }, { - "id": "pem 3.0.3", + "id": "pem 3.0.4", "target": "pem" }, { @@ -29882,15 +29907,15 @@ "target": "rand" }, { - "id": "rangemap 1.4.0", + "id": "rangemap 1.5.1", "target": "rangemap" }, { - "id": "reqwest 0.12.9", + "id": "reqwest 0.12.12", "target": "reqwest" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { @@ -29914,7 +29939,7 @@ "target": "sha2" }, { - "id": "simple_asn1 0.6.2", + "id": "simple_asn1 0.6.3", "target": "simple_asn1" }, { @@ -29922,11 +29947,11 @@ "target": "stop_token" }, { - "id": "thiserror 2.0.3", + "id": "thiserror 2.0.11", "target": "thiserror" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" }, { @@ -29934,14 +29959,14 @@ "target": "tower_service" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" } ], "selects": { "cfg(not(target_family = \"wasm\"))": [ { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ] @@ -29951,7 +29976,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" }, { @@ -30007,7 +30032,7 @@ "target": "ahash" }, { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -30035,7 +30060,7 @@ "target": "chacha20poly1305" }, { - "id": "clap 4.5.20", + "id": "clap 4.5.26", "target": "clap" }, { @@ -30043,7 +30068,7 @@ "target": "cloudflare" }, { - "id": "fqdn 0.4.1", + "id": "fqdn 0.4.4", "target": "fqdn" }, { @@ -30055,11 +30080,11 @@ "target": "futures_util" }, { - "id": "hickory-proto 0.24.1", + "id": "hickory-proto 0.24.2", "target": "hickory_proto" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { @@ -30079,7 +30104,7 @@ "target": "humantime" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -30091,7 +30116,7 @@ "target": "instant_acme" }, { - "id": "moka 0.12.8", + "id": "moka 0.12.10", "target": "moka" }, { @@ -30103,11 +30128,11 @@ "target": "prometheus" }, { - "id": "prost 0.13.3", + "id": "prost 0.13.4", "target": "prost" }, { - "id": "prost-types 0.13.3", + "id": "prost-types 0.13.4", "target": "prost_types" }, { @@ -30115,15 +30140,15 @@ "target": "rand" }, { - "id": "rcgen 0.13.1", + "id": "rcgen 0.13.2", "target": "rcgen" }, { - "id": "reqwest 0.12.9", + "id": "reqwest 0.12.12", "target": "reqwest" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { @@ -30147,7 +30172,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -30159,15 +30184,15 @@ "target": "strum" }, { - "id": "systemstat 0.2.3", + "id": "systemstat 0.2.4", "target": "systemstat" }, { - "id": "thiserror 2.0.3", + "id": "thiserror 2.0.11", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -30175,7 +30200,7 @@ "target": "tokio_io_timeout" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -30183,7 +30208,7 @@ "target": "tokio_util" }, { - "id": "tower 0.5.1", + "id": "tower 0.5.2", "target": "tower" }, { @@ -30195,11 +30220,11 @@ "target": "tracing" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" }, { - "id": "uuid 1.11.0", + "id": "uuid 1.12.0", "target": "uuid" }, { @@ -30207,7 +30232,7 @@ "target": "vrl" }, { - "id": "webpki-root-certs 0.26.6", + "id": "webpki-root-certs 0.26.7", "target": "webpki_root_certs" }, { @@ -30225,11 +30250,11 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" }, { - "id": "clap_derive 4.5.18", + "id": "clap_derive 4.5.24", "target": "clap_derive" }, { @@ -30281,7 +30306,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -30385,7 +30410,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -30393,7 +30418,7 @@ "target": "hex" }, { - "id": "ic-cdk 0.17.0", + "id": "ic-cdk 0.17.1", "target": "ic_cdk" }, { @@ -30405,7 +30430,7 @@ "target": "ic_representation_independent_hash" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -30425,7 +30450,7 @@ "target": "sha2" }, { - "id": "thiserror 2.0.3", + "id": "thiserror 2.0.11", "target": "thiserror" } ], @@ -30472,7 +30497,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -30488,7 +30513,7 @@ "target": "nom" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -30535,7 +30560,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -30603,7 +30628,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -30639,14 +30664,14 @@ ], "license_file": "LICENSE" }, - "ic-cdk 0.17.0": { + "ic-cdk 0.17.1": { "name": "ic-cdk", - "version": "0.17.0", + "version": "0.17.1", "package_url": "https://github.com/dfinity/cdk-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-cdk/0.17.0/download", - "sha256": "b2abdf9341da9f9f6b451a40609cb69645a05a8e9eb7784c16209f16f2c0f76f" + "url": "https://static.crates.io/crates/ic-cdk/0.17.1/download", + "sha256": "122efbcb0af5280d408a75a57b7dc6e9d92893bf6ed9cc98fe4dcff51f18b67c" } }, "targets": [ @@ -30671,7 +30696,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -30693,13 +30718,13 @@ "proc_macro_deps": { "common": [ { - "id": "ic-cdk-macros 0.17.0", + "id": "ic-cdk-macros 0.17.1", "target": "ic_cdk_macros" } ], "selects": {} }, - "version": "0.17.0" + "version": "0.17.1" }, "license": "Apache-2.0", "license_ids": [ @@ -30739,15 +30764,15 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -30806,15 +30831,15 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -30873,15 +30898,15 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -30889,11 +30914,11 @@ "target": "serde" }, { - "id": "serde_tokenstream 0.2.1", + "id": "serde_tokenstream 0.2.2", "target": "serde_tokenstream" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -30908,14 +30933,14 @@ ], "license_file": "LICENSE" }, - "ic-cdk-macros 0.17.0": { + "ic-cdk-macros 0.17.1": { "name": "ic-cdk-macros", - "version": "0.17.0", + "version": "0.17.1", "package_url": "https://github.com/dfinity/cdk-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-cdk-macros/0.17.0/download", - "sha256": "b8df41980e95dead28735ab0f748c75477b0c5eab37a09a5641c78ec406a1db0" + "url": "https://static.crates.io/crates/ic-cdk-macros/0.17.1/download", + "sha256": "c792bf0d1621c893ccf2bcdeac4ee70121103a03030a1827031a6b3c60488944" } }, "targets": [ @@ -30940,15 +30965,15 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -30956,18 +30981,18 @@ "target": "serde" }, { - "id": "serde_tokenstream 0.2.1", + "id": "serde_tokenstream 0.2.2", "target": "serde_tokenstream" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.17.0" + "version": "0.17.1" }, "license": "Apache-2.0", "license_ids": [ @@ -31011,7 +31036,7 @@ "target": "futures" }, { - "id": "ic-cdk 0.17.0", + "id": "ic-cdk 0.17.1", "target": "ic_cdk" }, { @@ -31027,7 +31052,7 @@ "target": "serde_bytes" }, { - "id": "slotmap 1.0.6", + "id": "slotmap 1.0.7", "target": "slotmap" } ], @@ -31078,7 +31103,7 @@ "target": "cached" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -31090,7 +31115,7 @@ "target": "ic_certification" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -31106,7 +31131,7 @@ "target": "nom" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { @@ -31114,7 +31139,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -31353,7 +31378,7 @@ "target": "base64" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -31377,7 +31402,7 @@ "target": "serde_cbor" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -31432,7 +31457,7 @@ "target": "bytes" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -31464,11 +31489,11 @@ "target": "ic_response_verification" }, { - "id": "ic-utils 0.39.0", + "id": "ic-utils 0.39.2", "target": "ic_utils" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -31608,11 +31633,11 @@ "target": "base64" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "flate2 1.0.31", + "id": "flate2 1.0.35", "target": "flate2" }, { @@ -31648,7 +31673,7 @@ "target": "leb128" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -31660,7 +31685,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -31726,14 +31751,14 @@ ], "license_file": "LICENSE" }, - "ic-stable-structures 0.6.5": { + "ic-stable-structures 0.6.7": { "name": "ic-stable-structures", - "version": "0.6.5", + "version": "0.6.7", "package_url": "https://github.com/dfinity/stable-structures", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-stable-structures/0.6.5/download", - "sha256": "03f3044466a69802de74e710dc0300b706a05696a0531c942ca856751a13b0db" + "url": "https://static.crates.io/crates/ic-stable-structures/0.6.7/download", + "sha256": "b492c5a16455ae78623eaa12ead96dda6c69a83c535b1b00789f19b381c8a24c" } }, "targets": [ @@ -31765,7 +31790,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.5" + "version": "0.6.7" }, "license": "Apache-2.0", "license_ids": [ @@ -31805,11 +31830,11 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "ciborium 0.2.1", + "id": "ciborium 0.2.2", "target": "ciborium" }, { @@ -31864,7 +31889,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -31892,7 +31917,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -31948,7 +31973,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -31980,7 +32005,7 @@ "target": "sha2" }, { - "id": "thiserror 2.0.3", + "id": "thiserror 2.0.11", "target": "thiserror" } ], @@ -32004,14 +32029,14 @@ ], "license_file": null }, - "ic-utils 0.39.0": { + "ic-utils 0.39.2": { "name": "ic-utils", - "version": "0.39.0", + "version": "0.39.2", "package_url": "https://github.com/dfinity/agent-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-utils/0.39.0/download", - "sha256": "bb1da4a68c45146018b8496c157ad94126b9c202ab4400c6c0a9030c1ef0f0ba" + "url": "https://static.crates.io/crates/ic-utils/0.39.2/download", + "sha256": "e1fb9c35ef4976a71d37f3ebf73ee43bb52b360be60d91d3a77f74fbc875dda4" } }, "targets": [ @@ -32042,7 +32067,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -32054,11 +32079,11 @@ "target": "ic_agent" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -32078,15 +32103,15 @@ "target": "strum" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 2.0.11", "target": "thiserror" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -32096,7 +32121,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" }, { @@ -32106,7 +32131,7 @@ ], "selects": {} }, - "version": "0.39.0" + "version": "0.39.2" }, "license": "Apache-2.0", "license_ids": [ @@ -32164,7 +32189,7 @@ "alias": "bls12_381" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -32240,7 +32265,7 @@ "alias": "bls12_381" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -32263,14 +32288,14 @@ ], "license_file": null }, - "ic-wasm 0.8.4": { + "ic-wasm 0.8.6": { "name": "ic-wasm", - "version": "0.8.4", + "version": "0.8.6", "package_url": "https://github.com/dfinity/ic-wasm", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-wasm/0.8.4/download", - "sha256": "45bc33855672981ae4a2f4e77c1a77d1bdc0756fb1b36ad0dbe47df77a955e2d" + "url": "https://static.crates.io/crates/ic-wasm/0.8.6/download", + "sha256": "19fabaeecfe37f24b433c62489242fc54503d98d4cc8d0f9ef7544dfdfc0ddcb" } }, "targets": [ @@ -32316,15 +32341,15 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { - "id": "clap 4.5.20", + "id": "clap 4.5.26", "target": "clap" }, { @@ -32332,7 +32357,7 @@ "target": "libflate" }, { - "id": "rustc-demangle 0.1.23", + "id": "rustc-demangle 0.1.24", "target": "rustc_demangle" }, { @@ -32340,22 +32365,22 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "walrus 0.21.1", + "id": "walrus 0.21.3", "target": "walrus" } ], "selects": {} }, "edition": "2021", - "version": "0.8.4" + "version": "0.8.6" }, "license": "Apache-2.0", "license_ids": [ @@ -32395,7 +32420,7 @@ "deps": { "common": [ { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -32662,15 +32687,15 @@ "deps": { "common": [ { - "id": "arbitrary 1.3.2", + "id": "arbitrary 1.4.1", "target": "arbitrary" }, { - "id": "crc32fast 1.3.2", + "id": "crc32fast 1.4.2", "target": "crc32fast" }, { - "id": "data-encoding 2.4.0", + "id": "data-encoding 2.7.0", "target": "data_encoding" }, { @@ -32682,7 +32707,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -32732,11 +32757,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -32744,7 +32769,7 @@ "target": "serde" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -32754,7 +32779,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -32803,11 +32828,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -32862,11 +32887,11 @@ "deps": { "common": [ { - "id": "yoke 0.7.4", + "id": "yoke 0.7.5", "target": "yoke" }, { - "id": "zerofrom 0.1.4", + "id": "zerofrom 0.1.5", "target": "zerofrom" }, { @@ -32880,7 +32905,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], @@ -32932,7 +32957,7 @@ "deps": { "common": [ { - "id": "litemap 0.7.3", + "id": "litemap 0.7.4", "target": "litemap" }, { @@ -32954,7 +32979,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], @@ -33032,7 +33057,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], @@ -33165,7 +33190,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], @@ -33286,7 +33311,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], @@ -33392,11 +33417,11 @@ "target": "writeable" }, { - "id": "yoke 0.7.4", + "id": "yoke 0.7.5", "target": "yoke" }, { - "id": "zerofrom 0.1.4", + "id": "zerofrom 0.1.5", "target": "zerofrom" }, { @@ -33410,7 +33435,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" }, { @@ -33460,15 +33485,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -33604,11 +33629,11 @@ "target": "matches" }, { - "id": "unicode-bidi 0.3.13", + "id": "unicode-bidi 0.3.18", "target": "unicode_bidi" }, { - "id": "unicode-normalization 0.1.22", + "id": "unicode-normalization 0.1.24", "target": "unicode_normalization" } ], @@ -33624,118 +33649,6 @@ ], "license_file": "LICENSE-APACHE" }, - "idna 0.3.0": { - "name": "idna", - "version": "0.3.0", - "package_url": "https://github.com/servo/rust-url/", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/idna/0.3.0/download", - "sha256": "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" - } - }, - "targets": [ - { - "Library": { - "crate_name": "idna", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "idna", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "unicode-bidi 0.3.13", - "target": "unicode_bidi" - }, - { - "id": "unicode-normalization 0.1.22", - "target": "unicode_normalization" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "idna 0.4.0": { - "name": "idna", - "version": "0.4.0", - "package_url": "https://github.com/servo/rust-url/", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/idna/0.4.0/download", - "sha256": "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" - } - }, - "targets": [ - { - "Library": { - "crate_name": "idna", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "idna", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "unicode-bidi 0.3.13", - "target": "unicode_bidi" - }, - { - "id": "unicode-normalization 0.1.22", - "target": "unicode_normalization" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.4.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "idna 1.0.3": { "name": "idna", "version": "1.0.3", @@ -33897,7 +33810,7 @@ "deps": { "common": [ { - "id": "parity-scale-codec 3.6.3", + "id": "parity-scale-codec 3.6.12", "target": "parity_scale_codec" } ], @@ -33913,14 +33826,14 @@ ], "license_file": null }, - "impl-more 0.1.6": { + "impl-more 0.1.9": { "name": "impl-more", - "version": "0.1.6", + "version": "0.1.9", "package_url": "https://github.com/robjtede/impl-more", "repository": { "Http": { - "url": "https://static.crates.io/crates/impl-more/0.1.6/download", - "sha256": "206ca75c9c03ba3d4ace2460e57b189f39f43de612c2f85836e65c929701bb2d" + "url": "https://static.crates.io/crates/impl-more/0.1.9/download", + "sha256": "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" } }, "targets": [ @@ -33943,7 +33856,7 @@ "**" ], "edition": "2018", - "version": "0.1.6" + "version": "0.1.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -34048,14 +33961,14 @@ ], "license_file": null }, - "impl-trait-for-tuples 0.2.2": { + "impl-trait-for-tuples 0.2.3": { "name": "impl-trait-for-tuples", - "version": "0.2.2", + "version": "0.2.3", "package_url": "https://github.com/bkchr/impl-trait-for-tuples", "repository": { "Http": { - "url": "https://static.crates.io/crates/impl-trait-for-tuples/0.2.2/download", - "sha256": "11d7a9f6330b71fea57921c9b61c47ee6e84f72d394754eff6163ae67e7395eb" + "url": "https://static.crates.io/crates/impl-trait-for-tuples/0.2.3/download", + "sha256": "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" } }, "targets": [ @@ -34080,22 +33993,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 1.0.109", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.2.2" + "version": "0.2.3" }, "license": "Apache-2.0/MIT", "license_ids": [ @@ -34222,7 +34135,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -34236,14 +34149,14 @@ ], "license_file": "LICENSE-APACHE" }, - "indexmap 2.2.6": { + "indexmap 2.7.0": { "name": "indexmap", - "version": "2.2.6", + "version": "2.7.0", "package_url": "https://github.com/indexmap-rs/indexmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/indexmap/2.2.6/download", - "sha256": "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" + "url": "https://static.crates.io/crates/indexmap/2.7.0/download", + "sha256": "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f" } }, "targets": [ @@ -34280,7 +34193,7 @@ "target": "equivalent" }, { - "id": "hashbrown 0.14.5", + "id": "hashbrown 0.15.2", "target": "hashbrown" }, { @@ -34291,7 +34204,7 @@ "selects": {} }, "edition": "2021", - "version": "2.2.6" + "version": "2.7.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -34300,14 +34213,14 @@ ], "license_file": "LICENSE-APACHE" }, - "indicatif 0.17.5": { + "indicatif 0.17.9": { "name": "indicatif", - "version": "0.17.5", + "version": "0.17.9", "package_url": "https://github.com/console-rs/indicatif", "repository": { "Http": { - "url": "https://static.crates.io/crates/indicatif/0.17.5/download", - "sha256": "8ff8cc23a7393a397ed1d7f56e6365cba772aba9f9912ab968b03043c395d057" + "url": "https://static.crates.io/crates/indicatif/0.17.9/download", + "sha256": "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281" } }, "targets": [ @@ -34339,7 +34252,7 @@ "deps": { "common": [ { - "id": "console 0.15.7", + "id": "console 0.15.10", "target": "console" }, { @@ -34347,25 +34260,25 @@ "target": "number_prefix" }, { - "id": "portable-atomic 1.4.1", + "id": "portable-atomic 1.10.0", "target": "portable_atomic" }, { - "id": "unicode-width 0.1.10", + "id": "unicode-width 0.2.0", "target": "unicode_width" } ], "selects": { "cfg(target_arch = \"wasm32\")": [ { - "id": "instant 0.1.12", - "target": "instant" + "id": "web-time 1.1.0", + "target": "web_time" } ] } }, - "edition": "2018", - "version": "0.17.5" + "edition": "2021", + "version": "0.17.9" }, "license": "MIT", "license_ids": [ @@ -34412,14 +34325,14 @@ ], "license_file": "LICENSE-APACHE" }, - "inferno 0.11.19": { + "inferno 0.11.21": { "name": "inferno", - "version": "0.11.19", + "version": "0.11.21", "package_url": "https://github.com/jonhoo/inferno.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/inferno/0.11.19/download", - "sha256": "321f0f839cd44a4686e9504b0a62b4d69a50b62072144c71c68f5873c167b8d9" + "url": "https://static.crates.io/crates/inferno/0.11.21/download", + "sha256": "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88" } }, "targets": [ @@ -34455,19 +34368,19 @@ "target": "ahash" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "is-terminal 0.4.9", + "id": "is-terminal 0.4.13", "target": "is_terminal" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -34475,7 +34388,7 @@ "target": "num_format" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -34483,7 +34396,7 @@ "target": "quick_xml" }, { - "id": "rgb 0.8.37", + "id": "rgb 0.8.50", "target": "rgb" }, { @@ -34494,7 +34407,7 @@ "selects": {} }, "edition": "2021", - "version": "0.11.19" + "version": "0.11.21" }, "license": "CDDL-1.0", "license_ids": [ @@ -34502,14 +34415,14 @@ ], "license_file": "LICENSE" }, - "inferno 0.12.0": { + "inferno 0.12.1": { "name": "inferno", - "version": "0.12.0", + "version": "0.12.1", "package_url": "https://github.com/jonhoo/inferno.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/inferno/0.12.0/download", - "sha256": "75a5d75fee4d36809e6b021e4b96b686e763d365ffdb03af2bd00786353f84fe" + "url": "https://static.crates.io/crates/inferno/0.12.1/download", + "sha256": "692eda1cc790750b9f5a5e3921ef9c117fd5498b97cfacbc910693e5b29002dc" } }, "targets": [ @@ -34553,15 +34466,15 @@ "target": "ahash" }, { - "id": "clap 4.5.20", + "id": "clap 4.5.26", "target": "clap" }, { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" }, { @@ -34569,19 +34482,19 @@ "target": "dashmap" }, { - "id": "env_logger 0.11.2", + "id": "env_logger 0.11.6", "target": "env_logger" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -34589,15 +34502,15 @@ "target": "num_format" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "quick-xml 0.37.1", + "id": "quick-xml 0.37.2", "target": "quick_xml" }, { - "id": "rgb 0.8.37", + "id": "rgb 0.8.50", "target": "rgb" }, { @@ -34608,7 +34521,7 @@ "selects": {} }, "edition": "2021", - "version": "0.12.0" + "version": "0.12.1" }, "license": "CDDL-1.0", "license_ids": [ @@ -34664,14 +34577,14 @@ ], "license_file": "LICENSE-APACHE" }, - "insta 1.31.0": { + "insta 1.42.0": { "name": "insta", - "version": "1.31.0", + "version": "1.42.0", "package_url": "https://github.com/mitsuhiko/insta", "repository": { "Http": { - "url": "https://static.crates.io/crates/insta/1.31.0/download", - "sha256": "a0770b0a3d4c70567f0d58331f3088b0e4c4f56c9b8d764efe654b4a5d46de3a" + "url": "https://static.crates.io/crates/insta/1.42.0/download", + "sha256": "6513e4067e16e69ed1db5ab56048ed65db32d10ba5fc1217f5393f8f17d8b5a5" } }, "targets": [ @@ -34704,30 +34617,26 @@ "deps": { "common": [ { - "id": "console 0.15.7", + "id": "console 0.15.10", "target": "console" }, - { - "id": "lazy_static 1.4.0", - "target": "lazy_static" - }, { "id": "linked-hash-map 0.5.6", "target": "linked_hash_map" }, { - "id": "similar 2.2.1", - "target": "similar" + "id": "once_cell 1.20.2", + "target": "once_cell" }, { - "id": "yaml-rust 0.4.5", - "target": "yaml_rust" + "id": "similar 2.6.0", + "target": "similar" } ], "selects": {} }, - "edition": "2018", - "version": "1.31.0" + "edition": "2021", + "version": "1.42.0" }, "license": "Apache-2.0", "license_ids": [ @@ -34735,14 +34644,14 @@ ], "license_file": "LICENSE" }, - "instant 0.1.12": { + "instant 0.1.13": { "name": "instant", - "version": "0.1.12", + "version": "0.1.13", "package_url": "https://github.com/sebcrozet/instant", "repository": { "Http": { - "url": "https://static.crates.io/crates/instant/0.1.12/download", - "sha256": "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" + "url": "https://static.crates.io/crates/instant/0.1.13/download", + "sha256": "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" } }, "targets": [ @@ -34774,7 +34683,7 @@ "selects": {} }, "edition": "2018", - "version": "0.1.12" + "version": "0.1.13" }, "license": "BSD-3-Clause", "license_ids": [ @@ -34842,11 +34751,11 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { @@ -34854,11 +34763,11 @@ "target": "hyper_util" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { @@ -34866,11 +34775,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -34880,7 +34789,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -35010,11 +34919,11 @@ "selects": { "cfg(windows)": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { - "id": "widestring 1.0.2", + "id": "widestring 1.1.0", "target": "widestring" }, { @@ -35153,14 +35062,14 @@ ], "license_file": "LICENSE-APACHE.md" }, - "is-terminal 0.4.9": { + "is-terminal 0.4.13": { "name": "is-terminal", - "version": "0.4.9", + "version": "0.4.13", "package_url": "https://github.com/sunfishcode/is-terminal", "repository": { "Http": { - "url": "https://static.crates.io/crates/is-terminal/0.4.9/download", - "sha256": "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" + "url": "https://static.crates.io/crates/is-terminal/0.4.13/download", + "sha256": "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" } }, "targets": [ @@ -35185,28 +35094,28 @@ "deps": { "common": [], "selects": { - "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))": [ + "cfg(any(unix, target_os = \"wasi\"))": [ { - "id": "rustix 0.38.32", - "target": "rustix" + "id": "libc 0.2.169", + "target": "libc" } ], "cfg(target_os = \"hermit\")": [ { - "id": "hermit-abi 0.3.9", + "id": "hermit-abi 0.4.0", "target": "hermit_abi" } ], "cfg(windows)": [ { - "id": "windows-sys 0.48.0", + "id": "windows-sys 0.52.0", "target": "windows_sys" } ] } }, "edition": "2018", - "version": "0.4.9" + "version": "0.4.13" }, "license": "MIT", "license_ids": [ @@ -35295,7 +35204,7 @@ "target": "serde" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -35350,7 +35259,7 @@ "deps": { "common": [ { - "id": "either 1.8.1", + "id": "either 1.13.0", "target": "either" } ], @@ -35406,7 +35315,7 @@ "deps": { "common": [ { - "id": "either 1.8.1", + "id": "either 1.13.0", "target": "either" } ], @@ -35422,14 +35331,14 @@ ], "license_file": "LICENSE-APACHE" }, - "itertools 0.12.0": { + "itertools 0.12.1": { "name": "itertools", - "version": "0.12.0", + "version": "0.12.1", "package_url": "https://github.com/rust-itertools/itertools", "repository": { "Http": { - "url": "https://static.crates.io/crates/itertools/0.12.0/download", - "sha256": "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" + "url": "https://static.crates.io/crates/itertools/0.12.1/download", + "sha256": "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" } }, "targets": [ @@ -35462,14 +35371,14 @@ "deps": { "common": [ { - "id": "either 1.8.1", + "id": "either 1.13.0", "target": "either" } ], "selects": {} }, "edition": "2018", - "version": "0.12.0" + "version": "0.12.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -35478,14 +35387,125 @@ ], "license_file": "LICENSE-APACHE" }, - "itoa 1.0.9": { + "itertools 0.13.0": { + "name": "itertools", + "version": "0.13.0", + "package_url": "https://github.com/rust-itertools/itertools", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/itertools/0.13.0/download", + "sha256": "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" + } + }, + "targets": [ + { + "Library": { + "crate_name": "itertools", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "itertools", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "use_alloc" + ], + "selects": { + "aarch64-apple-darwin": [ + "default", + "use_std" + ], + "aarch64-pc-windows-msvc": [ + "default", + "use_std" + ], + "aarch64-unknown-linux-gnu": [ + "default", + "use_std" + ], + "aarch64-unknown-nixos-gnu": [ + "default", + "use_std" + ], + "arm-unknown-linux-gnueabi": [ + "default", + "use_std" + ], + "i686-pc-windows-msvc": [ + "default", + "use_std" + ], + "i686-unknown-linux-gnu": [ + "default", + "use_std" + ], + "powerpc-unknown-linux-gnu": [ + "default", + "use_std" + ], + "s390x-unknown-linux-gnu": [ + "default", + "use_std" + ], + "x86_64-apple-darwin": [ + "default", + "use_std" + ], + "x86_64-pc-windows-msvc": [ + "default", + "use_std" + ], + "x86_64-unknown-freebsd": [ + "default", + "use_std" + ], + "x86_64-unknown-linux-gnu": [ + "default", + "use_std" + ], + "x86_64-unknown-nixos-gnu": [ + "default", + "use_std" + ] + } + }, + "deps": { + "common": [ + { + "id": "either 1.13.0", + "target": "either" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.13.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "itoa 1.0.14": { "name": "itoa", - "version": "1.0.9", + "version": "1.0.14", "package_url": "https://github.com/dtolnay/itoa", "repository": { "Http": { - "url": "https://static.crates.io/crates/itoa/1.0.9/download", - "sha256": "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" + "url": "https://static.crates.io/crates/itoa/1.0.14/download", + "sha256": "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" } }, "targets": [ @@ -35508,7 +35528,7 @@ "**" ], "edition": "2018", - "version": "1.0.9" + "version": "1.0.14" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -35577,11 +35597,11 @@ "target": "jni_sys" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -35600,7 +35620,7 @@ "deps": { "common": [ { - "id": "walkdir 2.3.3", + "id": "walkdir 2.5.0", "target": "walkdir" } ], @@ -35653,14 +35673,14 @@ ], "license_file": "LICENSE-APACHE" }, - "jobserver 0.1.26": { + "jobserver 0.1.32": { "name": "jobserver", - "version": "0.1.26", - "package_url": "https://github.com/alexcrichton/jobserver-rs", + "version": "0.1.32", + "package_url": "https://github.com/rust-lang/jobserver-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/jobserver/0.1.26/download", - "sha256": "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" + "url": "https://static.crates.io/crates/jobserver/0.1.32/download", + "sha256": "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" } }, "targets": [ @@ -35687,30 +35707,30 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] } }, - "edition": "2018", - "version": "0.1.26" + "edition": "2021", + "version": "0.1.32" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "js-sys 0.3.64": { + "js-sys 0.3.77": { "name": "js-sys", - "version": "0.3.64", + "version": "0.3.77", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/js-sys/0.3.64/download", - "sha256": "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" + "url": "https://static.crates.io/crates/js-sys/0.3.77/download", + "sha256": "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" } }, "targets": [ @@ -35732,19 +35752,30 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "default", + "std" + ], + "selects": {} + }, "deps": { "common": [ { - "id": "wasm-bindgen 0.2.95", + "id": "once_cell 1.20.2", + "target": "once_cell" + }, + { + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], "selects": {} }, - "edition": "2018", - "version": "0.3.64" + "edition": "2021", + "version": "0.3.77" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -35795,7 +35826,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -35847,7 +35878,7 @@ "deps": { "common": [ { - "id": "pest 2.7.1", + "id": "pest 2.7.15", "target": "pest" }, { @@ -35861,7 +35892,7 @@ "proc_macro_deps": { "common": [ { - "id": "pest_derive 2.7.1", + "id": "pest_derive 2.7.15", "target": "pest_derive" } ], @@ -35907,27 +35938,27 @@ "deps": { "common": [ { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "pest 2.7.1", + "id": "pest 2.7.15", "target": "pest" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -35937,7 +35968,7 @@ "proc_macro_deps": { "common": [ { - "id": "pest_derive 2.7.1", + "id": "pest_derive 2.7.15", "target": "pest_derive" } ], @@ -36000,7 +36031,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -36064,7 +36095,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -36144,7 +36175,7 @@ "target": "elliptic_curve" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -36229,7 +36260,7 @@ "target": "base64" }, { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { @@ -36245,7 +36276,7 @@ "target": "serde_value" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -36269,14 +36300,14 @@ ], "license_file": "LICENSE" }, - "keccak 0.1.4": { + "keccak 0.1.5": { "name": "keccak", - "version": "0.1.4", + "version": "0.1.5", "package_url": "https://github.com/RustCrypto/sponges/tree/master/keccak", "repository": { "Http": { - "url": "https://static.crates.io/crates/keccak/0.1.4/download", - "sha256": "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940" + "url": "https://static.crates.io/crates/keccak/0.1.5/download", + "sha256": "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" } }, "targets": [ @@ -36303,14 +36334,14 @@ "selects": { "cfg(target_arch = \"aarch64\")": [ { - "id": "cpufeatures 0.2.9", + "id": "cpufeatures 0.2.16", "target": "cpufeatures" } ] } }, "edition": "2018", - "version": "0.1.4" + "version": "0.1.5" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -36455,11 +36486,11 @@ "target": "bytes" }, { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { - "id": "either 1.8.1", + "id": "either 1.13.0", "target": "either" }, { @@ -36467,7 +36498,7 @@ "target": "futures" }, { - "id": "home 0.5.9", + "id": "home 0.5.11", "target": "home" }, { @@ -36483,15 +36514,15 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "hyper-timeout 0.5.1", + "id": "hyper-timeout 0.5.2", "target": "hyper_timeout" }, { @@ -36511,11 +36542,11 @@ "target": "kube_core" }, { - "id": "pem 3.0.3", + "id": "pem 3.0.4", "target": "pem" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { @@ -36531,7 +36562,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -36539,11 +36570,11 @@ "target": "serde_yaml" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -36606,7 +36637,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { @@ -36626,11 +36657,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -36696,11 +36727,11 @@ "target": "diff" }, { - "id": "ena 0.14.2", + "id": "ena 0.14.3", "target": "ena" }, { - "id": "is-terminal 0.4.9", + "id": "is-terminal 0.4.13", "target": "is_terminal" }, { @@ -36712,11 +36743,11 @@ "target": "lalrpop_util" }, { - "id": "petgraph 0.6.3", + "id": "petgraph 0.6.5", "target": "petgraph" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -36736,7 +36767,7 @@ "target": "tiny_keccak" }, { - "id": "unicode-xid 0.2.4", + "id": "unicode-xid 0.2.6", "target": "unicode_xid" } ], @@ -36752,14 +36783,14 @@ ], "license_file": null }, - "lalrpop 0.20.0": { + "lalrpop 0.20.2": { "name": "lalrpop", - "version": "0.20.0", + "version": "0.20.2", "package_url": "https://github.com/lalrpop/lalrpop", "repository": { "Http": { - "url": "https://static.crates.io/crates/lalrpop/0.20.0/download", - "sha256": "da4081d44f4611b66c6dd725e6de3169f9f63905421e8626fcb86b6a898998b8" + "url": "https://static.crates.io/crates/lalrpop/0.20.2/download", + "sha256": "55cb077ad656299f160924eb2912aa147d7339ea7d69e1b5517326fdcec3c1ca" } }, "targets": [ @@ -36801,27 +36832,19 @@ "target": "bit_set" }, { - "id": "diff 0.1.13", - "target": "diff" - }, - { - "id": "ena 0.14.2", + "id": "ena 0.14.3", "target": "ena" }, { - "id": "is-terminal 0.4.9", - "target": "is_terminal" - }, - { - "id": "itertools 0.10.5", + "id": "itertools 0.11.0", "target": "itertools" }, { - "id": "lalrpop-util 0.20.0", + "id": "lalrpop-util 0.20.2", "target": "lalrpop_util" }, { - "id": "petgraph 0.6.3", + "id": "petgraph 0.6.5", "target": "petgraph" }, { @@ -36829,11 +36852,11 @@ "target": "pico_args" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { - "id": "regex-syntax 0.7.4", + "id": "regex-syntax 0.8.5", "target": "regex_syntax" }, { @@ -36849,21 +36872,25 @@ "target": "tiny_keccak" }, { - "id": "unicode-xid 0.2.4", + "id": "unicode-xid 0.2.6", "target": "unicode_xid" + }, + { + "id": "walkdir 2.5.0", + "target": "walkdir" } ], "selects": {} }, "edition": "2021", - "version": "0.20.0" + "version": "0.20.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null + "license_file": "LICENSE-APACHE" }, "lalrpop-util 0.19.12": { "name": "lalrpop-util", @@ -36963,85 +36990,85 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "aarch64-pc-windows-msvc": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "aarch64-unknown-linux-gnu": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "arm-unknown-linux-gnueabi": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "i686-pc-windows-msvc": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "i686-unknown-linux-gnu": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "powerpc-unknown-linux-gnu": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "s390x-unknown-linux-gnu": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "x86_64-apple-darwin": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "x86_64-pc-windows-msvc": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "x86_64-unknown-freebsd": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "x86_64-unknown-linux-gnu": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ] @@ -37057,14 +37084,14 @@ ], "license_file": null }, - "lalrpop-util 0.20.0": { + "lalrpop-util 0.20.2": { "name": "lalrpop-util", - "version": "0.20.0", + "version": "0.20.2", "package_url": "https://github.com/lalrpop/lalrpop", "repository": { "Http": { - "url": "https://static.crates.io/crates/lalrpop-util/0.20.0/download", - "sha256": "3f35c735096c0293d313e8f2a641627472b83d01b937177fe76e5e2708d31e0d" + "url": "https://static.crates.io/crates/lalrpop-util/0.20.2/download", + "sha256": "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553" } }, "targets": [ @@ -37089,64 +37116,65 @@ "crate_features": { "common": [ "default", - "std" + "std", + "unicode" ], "selects": { "aarch64-apple-darwin": [ "lexer", - "regex" + "regex-automata" ], "aarch64-pc-windows-msvc": [ "lexer", - "regex" + "regex-automata" ], "aarch64-unknown-linux-gnu": [ "lexer", - "regex" + "regex-automata" ], "aarch64-unknown-nixos-gnu": [ "lexer", - "regex" + "regex-automata" ], "arm-unknown-linux-gnueabi": [ "lexer", - "regex" + "regex-automata" ], "i686-pc-windows-msvc": [ "lexer", - "regex" + "regex-automata" ], "i686-unknown-linux-gnu": [ "lexer", - "regex" + "regex-automata" ], "powerpc-unknown-linux-gnu": [ "lexer", - "regex" + "regex-automata" ], "s390x-unknown-linux-gnu": [ "lexer", - "regex" + "regex-automata" ], "x86_64-apple-darwin": [ "lexer", - "regex" + "regex-automata" ], "x86_64-pc-windows-msvc": [ "lexer", - "regex" + "regex-automata" ], "x86_64-unknown-freebsd": [ "lexer", - "regex" + "regex-automata" ], "x86_64-unknown-linux-gnu": [ "lexer", - "regex" + "regex-automata" ], "x86_64-unknown-nixos-gnu": [ "lexer", - "regex" + "regex-automata" ] } }, @@ -37155,99 +37183,99 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "aarch64-pc-windows-msvc": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "aarch64-unknown-linux-gnu": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "arm-unknown-linux-gnueabi": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "i686-pc-windows-msvc": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "i686-unknown-linux-gnu": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "powerpc-unknown-linux-gnu": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "s390x-unknown-linux-gnu": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "x86_64-apple-darwin": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "x86_64-pc-windows-msvc": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "x86_64-unknown-freebsd": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "x86_64-unknown-linux-gnu": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "regex 1.11.0", - "target": "regex" + "id": "regex-automata 0.4.9", + "target": "regex_automata" } ] } }, "edition": "2021", - "version": "0.20.0" + "version": "0.20.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null + "license_file": "LICENSE-APACHE" }, "language-tags 0.3.2": { "name": "language-tags", @@ -37288,14 +37316,14 @@ ], "license_file": "LICENSE" }, - "lazy_static 1.4.0": { + "lazy_static 1.5.0": { "name": "lazy_static", - "version": "1.4.0", + "version": "1.5.0", "package_url": "https://github.com/rust-lang-nursery/lazy-static.rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/lazy_static/1.4.0/download", - "sha256": "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + "url": "https://static.crates.io/crates/lazy_static/1.5.0/download", + "sha256": "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" } }, "targets": [ @@ -37327,16 +37355,16 @@ "deps": { "common": [ { - "id": "spin 0.5.2", + "id": "spin 0.9.8", "target": "spin" } ], "selects": {} }, "edition": "2015", - "version": "1.4.0" + "version": "1.5.0" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -37806,14 +37834,14 @@ ], "license_file": "LICENSE-APACHE" }, - "libc 0.2.158": { + "libc 0.2.169": { "name": "libc", - "version": "0.2.158", + "version": "0.2.169", "package_url": "https://github.com/rust-lang/libc", "repository": { "Http": { - "url": "https://static.crates.io/crates/libc/0.2.158/download", - "sha256": "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" + "url": "https://static.crates.io/crates/libc/0.2.169/download", + "sha256": "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" } }, "targets": [ @@ -37858,14 +37886,14 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "build_script_build" } ], "selects": {} }, - "edition": "2015", - "version": "0.2.158" + "edition": "2021", + "version": "0.2.169" }, "build_script_attrs": { "compile_data_glob": [ @@ -37929,11 +37957,11 @@ "target": "core2" }, { - "id": "crc32fast 1.3.2", + "id": "crc32fast 1.4.2", "target": "crc32fast" }, { - "id": "dary_heap 0.3.6", + "id": "dary_heap 0.3.7", "target": "dary_heap" }, { @@ -38013,14 +38041,14 @@ ], "license_file": "LICENSE" }, - "libfuzzer-sys 0.4.7": { + "libfuzzer-sys 0.4.8": { "name": "libfuzzer-sys", - "version": "0.4.7", + "version": "0.4.8", "package_url": "https://github.com/rust-fuzz/libfuzzer", "repository": { "Http": { - "url": "https://static.crates.io/crates/libfuzzer-sys/0.4.7/download", - "sha256": "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7" + "url": "https://static.crates.io/crates/libfuzzer-sys/0.4.8/download", + "sha256": "9b9569d2f74e257076d8c6bfa73fb505b46b851e51ddaecc825944aa3bed17fa" } }, "targets": [ @@ -38057,22 +38085,18 @@ "deps": { "common": [ { - "id": "arbitrary 1.3.2", + "id": "arbitrary 1.4.1", "target": "arbitrary" }, { - "id": "libfuzzer-sys 0.4.7", + "id": "libfuzzer-sys 0.4.8", "target": "build_script_build" - }, - { - "id": "once_cell 1.19.0", - "target": "once_cell" } ], "selects": {} }, "edition": "2018", - "version": "0.4.7" + "version": "0.4.8" }, "build_script_attrs": { "compile_data_glob": [ @@ -38084,7 +38108,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -38099,14 +38123,14 @@ ], "license_file": "LICENSE-APACHE" }, - "libloading 0.7.4": { + "libloading 0.8.6": { "name": "libloading", - "version": "0.7.4", + "version": "0.8.6", "package_url": "https://github.com/nagisa/rust_libloading/", "repository": { "Http": { - "url": "https://static.crates.io/crates/libloading/0.7.4/download", - "sha256": "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" + "url": "https://static.crates.io/crates/libloading/0.8.6/download", + "sha256": "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" } }, "targets": [ @@ -38139,14 +38163,14 @@ ], "cfg(windows)": [ { - "id": "winapi 0.3.9", - "target": "winapi" + "id": "windows-targets 0.52.6", + "target": "windows_targets" } ] } }, "edition": "2015", - "version": "0.7.4" + "version": "0.8.6" }, "license": "ISC", "license_ids": [ @@ -38154,14 +38178,14 @@ ], "license_file": "LICENSE" }, - "libm 0.2.7": { + "libm 0.2.11": { "name": "libm", - "version": "0.2.7", + "version": "0.2.11", "package_url": "https://github.com/rust-lang/libm", "repository": { "Http": { - "url": "https://static.crates.io/crates/libm/0.2.7/download", - "sha256": "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" + "url": "https://static.crates.io/crates/libm/0.2.11/download", + "sha256": "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa" } }, "targets": [ @@ -38204,14 +38228,14 @@ "deps": { "common": [ { - "id": "libm 0.2.7", + "id": "libm 0.2.11", "target": "build_script_build" } ], "selects": {} }, - "edition": "2018", - "version": "0.2.7" + "edition": "2021", + "version": "0.2.11" }, "build_script_attrs": { "compile_data_glob": [ @@ -38221,12 +38245,12 @@ "**" ] }, - "license": "MIT OR Apache-2.0", + "license": "MIT AND (MIT OR Apache-2.0)", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": "LICENSE.txt" }, "libnss 0.5.0": { "name": "libnss", @@ -38260,11 +38284,11 @@ "deps": { "common": [ { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -38288,6 +38312,61 @@ ], "license_file": null }, + "libredox 0.1.3": { + "name": "libredox", + "version": "0.1.3", + "package_url": "https://gitlab.redox-os.org/redox-os/libredox.git", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/libredox/0.1.3/download", + "sha256": "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" + } + }, + "targets": [ + { + "Library": { + "crate_name": "libredox", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "libredox", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "bitflags 2.8.0", + "target": "bitflags" + }, + { + "id": "libc 0.2.169", + "target": "libc" + }, + { + "id": "redox_syscall 0.5.8", + "target": "syscall" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.1.3" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, "librocksdb-sys 0.16.0+8.10.0": { "name": "librocksdb-sys", "version": "0.16.0+8.10.0", @@ -38339,7 +38418,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -38362,15 +38441,15 @@ "deps": { "common": [ { - "id": "bindgen 0.69.4", + "id": "bindgen 0.69.5", "target": "bindgen" }, { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "glob 0.3.1", + "id": "glob 0.3.2", "target": "glob" } ], @@ -38467,11 +38546,11 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" }, { @@ -38539,7 +38618,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -38547,14 +38626,14 @@ "target": "build_script_build" }, { - "id": "libz-sys 1.1.9", + "id": "libz-sys 1.1.21", "target": "libz_sys" } ], "selects": { "cfg(unix)": [ { - "id": "openssl-sys 0.9.102", + "id": "openssl-sys 0.9.104", "target": "openssl_sys" } ] @@ -38573,11 +38652,11 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" } ], @@ -38593,14 +38672,14 @@ "link_deps": { "common": [ { - "id": "libz-sys 1.1.9", + "id": "libz-sys 1.1.21", "target": "libz_sys" } ], "selects": { "cfg(unix)": [ { - "id": "openssl-sys 0.9.102", + "id": "openssl-sys 0.9.104", "target": "openssl_sys" } ] @@ -38615,14 +38694,14 @@ ], "license_file": null }, - "libusb1-sys 0.6.4": { + "libusb1-sys 0.7.0": { "name": "libusb1-sys", - "version": "0.6.4", + "version": "0.7.0", "package_url": "https://github.com/a1ien/rusb.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/libusb1-sys/0.6.4/download", - "sha256": "f9d0e2afce4245f2c9a418511e5af8718bcaf2fa408aefb259504d1a9cb25f27" + "url": "https://static.crates.io/crates/libusb1-sys/0.7.0/download", + "sha256": "da050ade7ac4ff1ba5379af847a10a10a8e284181e060105bf8d86960ce9ce0f" } }, "targets": [ @@ -38659,18 +38738,18 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "libusb1-sys 0.6.4", + "id": "libusb1-sys 0.7.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.6.4" + "version": "0.7.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -38682,16 +38761,16 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" } ], "selects": { - "cfg(target_env = \"msvc\")": [ + "cfg(target_os = \"windows\")": [ { "id": "vcpkg 0.2.15", "target": "vcpkg" @@ -38707,14 +38786,14 @@ ], "license_file": "LICENSE" }, - "libz-sys 1.1.9": { + "libz-sys 1.1.21": { "name": "libz-sys", - "version": "1.1.9", + "version": "1.1.21", "package_url": "https://github.com/rust-lang/libz-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/libz-sys/1.1.9/download", - "sha256": "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db" + "url": "https://static.crates.io/crates/libz-sys/1.1.21/download", + "sha256": "df9b68e50e6e0b26f672573834882eb57759f6db9b3be2ea3c35c91188bb4eaa" } }, "targets": [ @@ -38757,18 +38836,18 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "libz-sys 1.1.9", + "id": "libz-sys 1.1.21", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.1.9" + "version": "1.1.21" }, "build_script_attrs": { "compile_data_glob": [ @@ -38780,22 +38859,19 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" + }, + { + "id": "vcpkg 0.2.15", + "target": "vcpkg" } ], - "selects": { - "cfg(target_env = \"msvc\")": [ - { - "id": "vcpkg 0.2.15", - "target": "vcpkg" - } - ] - } + "selects": {} }, "links": "z" }, @@ -38845,14 +38921,14 @@ ], "license_file": "LICENSE-APACHE" }, - "linux-raw-sys 0.4.13": { + "linux-raw-sys 0.4.15": { "name": "linux-raw-sys", - "version": "0.4.13", + "version": "0.4.15", "package_url": "https://github.com/sunfishcode/linux-raw-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/linux-raw-sys/0.4.13/download", - "sha256": "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" + "url": "https://static.crates.io/crates/linux-raw-sys/0.4.15/download", + "sha256": "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" } }, "targets": [ @@ -38889,48 +38965,57 @@ "aarch64-unknown-linux-gnu": [ "elf", "errno", + "std", "system" ], "aarch64-unknown-nixos-gnu": [ "elf", "errno", + "std", "system" ], "arm-unknown-linux-gnueabi": [ "elf", "errno", + "std", "system" ], "armv7-unknown-linux-gnueabi": [ "elf", "errno", + "std", "system" ], "i686-unknown-linux-gnu": [ "elf", "errno", + "std", "system" ], "powerpc-unknown-linux-gnu": [ + "std", "system" ], "s390x-unknown-linux-gnu": [ + "std", "system" ], "x86_64-unknown-linux-gnu": [ "elf", "errno", + "std", "system" ], "x86_64-unknown-nixos-gnu": [ "elf", "errno", + "std", "system" ] } }, "edition": "2021", - "version": "0.4.13" + "version": "0.4.15" }, "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ @@ -38939,14 +39024,14 @@ ], "license_file": "LICENSE-APACHE" }, - "litemap 0.7.3": { + "litemap 0.7.4": { "name": "litemap", - "version": "0.7.3", + "version": "0.7.4", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/litemap/0.7.3/download", - "sha256": "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" + "url": "https://static.crates.io/crates/litemap/0.7.4/download", + "sha256": "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" } }, "targets": [ @@ -38975,7 +39060,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.3" + "version": "0.7.4" }, "license": "Unicode-3.0", "license_ids": [ @@ -39015,7 +39100,7 @@ "deps": { "common": [ { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -39083,7 +39168,7 @@ "target": "byteorder" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -39161,7 +39246,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -39191,11 +39276,11 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" } ], @@ -39215,14 +39300,14 @@ ], "license_file": null }, - "local-channel 0.1.3": { + "local-channel 0.1.5": { "name": "local-channel", - "version": "0.1.3", - "package_url": "https://github.com/actix/actix-net.git", + "version": "0.1.5", + "package_url": "https://github.com/actix/actix-net", "repository": { "Http": { - "url": "https://static.crates.io/crates/local-channel/0.1.3/download", - "sha256": "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c" + "url": "https://static.crates.io/crates/local-channel/0.1.5/download", + "sha256": "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" } }, "targets": [ @@ -39255,18 +39340,14 @@ "target": "futures_sink" }, { - "id": "futures-util 0.3.31", - "target": "futures_util" - }, - { - "id": "local-waker 0.1.3", + "id": "local-waker 0.1.4", "target": "local_waker" } ], "selects": {} }, - "edition": "2018", - "version": "0.1.3" + "edition": "2021", + "version": "0.1.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -39275,14 +39356,14 @@ ], "license_file": "LICENSE-APACHE" }, - "local-ip-address 0.5.6": { + "local-ip-address 0.5.7": { "name": "local-ip-address", - "version": "0.5.6", + "version": "0.5.7", "package_url": "https://github.com/EstebanBorai/local-ip-address", "repository": { "Http": { - "url": "https://static.crates.io/crates/local-ip-address/0.5.6/download", - "sha256": "66357e687a569abca487dc399a9c9ac19beb3f13991ed49f00c144e02cbd42ab" + "url": "https://static.crates.io/crates/local-ip-address/0.5.7/download", + "sha256": "612ed4ea9ce5acfb5d26339302528a5e1e59dfed95e9e11af3c083236ff1d15d" } }, "targets": [ @@ -39307,20 +39388,20 @@ "deps": { "common": [ { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], "selects": { "cfg(target_os = \"linux\")": [ { - "id": "neli 0.6.4", + "id": "neli 0.6.5", "target": "neli" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -39333,7 +39414,7 @@ } }, "edition": "2021", - "version": "0.5.6" + "version": "0.5.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -39342,14 +39423,14 @@ ], "license_file": "LICENSE-APACHE" }, - "local-waker 0.1.3": { + "local-waker 0.1.4": { "name": "local-waker", - "version": "0.1.3", - "package_url": "https://github.com/actix/actix-net.git", + "version": "0.1.4", + "package_url": "https://github.com/actix/actix-net", "repository": { "Http": { - "url": "https://static.crates.io/crates/local-waker/0.1.3/download", - "sha256": "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1" + "url": "https://static.crates.io/crates/local-waker/0.1.4/download", + "sha256": "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" } }, "targets": [ @@ -39371,8 +39452,8 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "0.1.3" + "edition": "2021", + "version": "0.1.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -39381,14 +39462,14 @@ ], "license_file": "LICENSE-APACHE" }, - "lock_api 0.4.10": { + "lock_api 0.4.12": { "name": "lock_api", - "version": "0.4.10", + "version": "0.4.12", "package_url": "https://github.com/Amanieu/parking_lot", "repository": { "Http": { - "url": "https://static.crates.io/crates/lock_api/0.4.10/download", - "sha256": "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" + "url": "https://static.crates.io/crates/lock_api/0.4.12/download", + "sha256": "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" } }, "targets": [ @@ -39432,7 +39513,7 @@ "deps": { "common": [ { - "id": "lock_api 0.4.10", + "id": "lock_api 0.4.12", "target": "build_script_build" }, { @@ -39442,8 +39523,8 @@ ], "selects": {} }, - "edition": "2018", - "version": "0.4.10" + "edition": "2021", + "version": "0.4.12" }, "build_script_attrs": { "compile_data_glob": [ @@ -39455,7 +39536,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -39469,14 +39550,14 @@ ], "license_file": "LICENSE-APACHE" }, - "log 0.4.20": { + "log 0.4.25": { "name": "log", - "version": "0.4.20", + "version": "0.4.25", "package_url": "https://github.com/rust-lang/log", "repository": { "Http": { - "url": "https://static.crates.io/crates/log/0.4.20/download", - "sha256": "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" + "url": "https://static.crates.io/crates/log/0.4.25/download", + "sha256": "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f" } }, "targets": [ @@ -39504,8 +39585,8 @@ ], "selects": {} }, - "edition": "2015", - "version": "0.4.20" + "edition": "2021", + "version": "0.4.25" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -39668,11 +39749,11 @@ "target": "fnv" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -39680,7 +39761,7 @@ "target": "regex_syntax" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -39736,11 +39817,11 @@ "target": "fnv" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -39812,6 +39893,69 @@ ], "license_file": null }, + "loom 0.7.2": { + "name": "loom", + "version": "0.7.2", + "package_url": "https://github.com/tokio-rs/loom", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/loom/0.7.2/download", + "sha256": "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" + } + }, + "targets": [ + { + "Library": { + "crate_name": "loom", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "loom", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "cfg-if 1.0.0", + "target": "cfg_if" + }, + { + "id": "generator 0.8.4", + "target": "generator" + }, + { + "id": "scoped-tls 1.0.1", + "target": "scoped_tls" + }, + { + "id": "tracing 0.1.41", + "target": "tracing" + }, + { + "id": "tracing-subscriber 0.3.19", + "target": "tracing_subscriber" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.7.2" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, "lru 0.7.8": { "name": "lru", "version": "0.7.8", @@ -39942,7 +40086,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -39965,11 +40109,11 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" } ], @@ -40109,7 +40253,7 @@ "selects": { "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] @@ -40209,7 +40353,7 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -40393,14 +40537,14 @@ ], "license_file": "LICENSE" }, - "matchit 0.7.0": { + "matchit 0.7.3": { "name": "matchit", - "version": "0.7.0", + "version": "0.7.3", "package_url": "https://github.com/ibraheemdev/matchit", "repository": { "Http": { - "url": "https://static.crates.io/crates/matchit/0.7.0/download", - "sha256": "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" + "url": "https://static.crates.io/crates/matchit/0.7.3/download", + "sha256": "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" } }, "targets": [ @@ -40429,10 +40573,11 @@ "selects": {} }, "edition": "2021", - "version": "0.7.0" + "version": "0.7.3" }, - "license": "MIT", + "license": "MIT AND BSD-3-Clause", "license_ids": [ + "BSD-3-Clause", "MIT" ], "license_file": "LICENSE" @@ -40479,7 +40624,7 @@ "target": "ipnetwork" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -40549,7 +40694,7 @@ "target": "digest" }, { - "id": "opaque-debug 0.3.0", + "id": "opaque-debug 0.3.1", "target": "opaque_debug" } ], @@ -40644,7 +40789,7 @@ "deps": { "common": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -40660,14 +40805,14 @@ ], "license_file": "LICENSE-APACHE" }, - "memmap2 0.5.10": { + "memmap2 0.9.5": { "name": "memmap2", - "version": "0.5.10", + "version": "0.9.5", "package_url": "https://github.com/RazrFalcon/memmap2-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/memmap2/0.5.10/download", - "sha256": "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" + "url": "https://static.crates.io/crates/memmap2/0.9.5/download", + "sha256": "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" } }, "targets": [ @@ -40694,14 +40839,14 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] } }, "edition": "2018", - "version": "0.5.10" + "version": "0.9.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -40779,7 +40924,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -40792,14 +40937,14 @@ ], "license_file": "LICENSE" }, - "memoffset 0.9.0": { + "memoffset 0.9.1": { "name": "memoffset", - "version": "0.9.0", + "version": "0.9.1", "package_url": "https://github.com/Gilnaa/memoffset", "repository": { "Http": { - "url": "https://static.crates.io/crates/memoffset/0.9.0/download", - "sha256": "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" + "url": "https://static.crates.io/crates/memoffset/0.9.1/download", + "sha256": "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" } }, "targets": [ @@ -40842,14 +40987,14 @@ "deps": { "common": [ { - "id": "memoffset 0.9.0", + "id": "memoffset 0.9.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2015", - "version": "0.9.0" + "version": "0.9.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -40861,7 +41006,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -40948,7 +41093,7 @@ "target": "byteorder" }, { - "id": "keccak 0.1.4", + "id": "keccak 0.1.5", "target": "keccak" }, { @@ -41031,7 +41176,7 @@ "target": "axum_otel_metrics" }, { - "id": "clap 4.5.20", + "id": "clap 4.5.26", "target": "clap" }, { @@ -41059,7 +41204,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -41075,11 +41220,11 @@ "target": "itertools" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -41087,11 +41232,11 @@ "target": "opentelemetry" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "pretty_assertions 1.4.0", + "id": "pretty_assertions 1.4.1", "target": "pretty_assertions" }, { @@ -41099,7 +41244,7 @@ "target": "prometheus" }, { - "id": "prometheus-parse 0.2.4", + "id": "prometheus-parse 0.2.5", "target": "prometheus_parse" }, { @@ -41107,7 +41252,7 @@ "target": "rand" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -41119,7 +41264,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -41135,7 +41280,7 @@ "target": "simple_logger" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -41151,7 +41296,7 @@ "target": "tower_http" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" } ], @@ -41203,14 +41348,14 @@ ], "license_file": "LICENSE-APACHE" }, - "mime_guess 2.0.4": { + "mime_guess 2.0.5": { "name": "mime_guess", - "version": "2.0.4", + "version": "2.0.5", "package_url": "https://github.com/abonander/mime_guess", "repository": { "Http": { - "url": "https://static.crates.io/crates/mime_guess/2.0.4/download", - "sha256": "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" + "url": "https://static.crates.io/crates/mime_guess/2.0.5/download", + "sha256": "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" } }, "targets": [ @@ -41258,18 +41403,18 @@ "target": "mime" }, { - "id": "mime_guess 2.0.4", + "id": "mime_guess 2.0.5", "target": "build_script_build" }, { - "id": "unicase 2.6.0", + "id": "unicase 2.8.1", "target": "unicase" } ], "selects": {} }, "edition": "2015", - "version": "2.0.4" + "version": "2.0.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -41281,7 +41426,7 @@ "deps": { "common": [ { - "id": "unicase 2.6.0", + "id": "unicase 2.8.1", "target": "unicase" } ], @@ -41416,11 +41561,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -41484,14 +41629,14 @@ ], "license_file": "LICENSE-APACHE" }, - "miniz_oxide 0.7.1": { + "miniz_oxide 0.8.3": { "name": "miniz_oxide", - "version": "0.7.1", + "version": "0.8.3", "package_url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", "repository": { "Http": { - "url": "https://static.crates.io/crates/miniz_oxide/0.7.1/download", - "sha256": "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" + "url": "https://static.crates.io/crates/miniz_oxide/0.8.3/download", + "sha256": "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924" } }, "targets": [ @@ -41522,14 +41667,14 @@ "deps": { "common": [ { - "id": "adler 1.0.2", - "target": "adler" + "id": "adler2 2.0.0", + "target": "adler2" } ], "selects": {} }, - "edition": "2018", - "version": "0.7.1" + "edition": "2021", + "version": "0.8.3" }, "license": "MIT OR Zlib OR Apache-2.0", "license_ids": [ @@ -41539,14 +41684,14 @@ ], "license_file": "LICENSE" }, - "mio 0.8.10": { + "mio 0.8.11": { "name": "mio", - "version": "0.8.10", + "version": "0.8.11", "package_url": "https://github.com/tokio-rs/mio", "repository": { "Http": { - "url": "https://static.crates.io/crates/mio/0.8.10/download", - "sha256": "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" + "url": "https://static.crates.io/crates/mio/0.8.11/download", + "sha256": "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" } }, "targets": [ @@ -41573,94 +41718,22 @@ "default", "log", "net", + "os-ext", "os-poll" ], - "selects": { - "aarch64-apple-darwin": [ - "os-ext" - ], - "aarch64-apple-ios": [ - "os-ext" - ], - "aarch64-apple-ios-sim": [ - "os-ext" - ], - "aarch64-linux-android": [ - "os-ext" - ], - "aarch64-unknown-fuchsia": [ - "os-ext" - ], - "aarch64-unknown-linux-gnu": [ - "os-ext" - ], - "aarch64-unknown-nixos-gnu": [ - "os-ext" - ], - "aarch64-unknown-nto-qnx710": [ - "os-ext" - ], - "arm-unknown-linux-gnueabi": [ - "os-ext" - ], - "armv7-linux-androideabi": [ - "os-ext" - ], - "armv7-unknown-linux-gnueabi": [ - "os-ext" - ], - "i686-apple-darwin": [ - "os-ext" - ], - "i686-linux-android": [ - "os-ext" - ], - "i686-unknown-freebsd": [ - "os-ext" - ], - "i686-unknown-linux-gnu": [ - "os-ext" - ], - "powerpc-unknown-linux-gnu": [ - "os-ext" - ], - "s390x-unknown-linux-gnu": [ - "os-ext" - ], - "x86_64-apple-darwin": [ - "os-ext" - ], - "x86_64-apple-ios": [ - "os-ext" - ], - "x86_64-linux-android": [ - "os-ext" - ], - "x86_64-unknown-freebsd": [ - "os-ext" - ], - "x86_64-unknown-fuchsia": [ - "os-ext" - ], - "x86_64-unknown-linux-gnu": [ - "os-ext" - ], - "x86_64-unknown-nixos-gnu": [ - "os-ext" - ] - } + "selects": {} }, "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" } ], "selects": { "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -41670,7 +41743,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -41683,7 +41756,7 @@ } }, "edition": "2018", - "version": "0.8.10" + "version": "0.8.11" }, "license": "MIT", "license_ids": [ @@ -41691,14 +41764,14 @@ ], "license_file": "LICENSE" }, - "mio 1.0.2": { + "mio 1.0.3": { "name": "mio", - "version": "1.0.2", + "version": "1.0.3", "package_url": "https://github.com/tokio-rs/mio", "repository": { "Http": { - "url": "https://static.crates.io/crates/mio/1.0.2/download", - "sha256": "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" + "url": "https://static.crates.io/crates/mio/1.0.3/download", + "sha256": "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" } }, "targets": [ @@ -41722,6 +41795,8 @@ ], "crate_features": { "common": [ + "default", + "log", "net", "os-ext", "os-poll" @@ -41729,18 +41804,22 @@ "selects": {} }, "deps": { - "common": [], + "common": [ + { + "id": "log 0.4.25", + "target": "log" + } + ], "selects": { "cfg(target_os = \"hermit\")": [ { - "id": "hermit-abi 0.3.9", - "target": "hermit_abi", - "alias": "libc" + "id": "libc 0.2.169", + "target": "libc" } ], "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -41750,7 +41829,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -41763,7 +41842,7 @@ } }, "edition": "2021", - "version": "1.0.2" + "version": "1.0.3" }, "license": "MIT", "license_ids": [ @@ -41816,14 +41895,14 @@ ], "license_file": null }, - "mockall 0.13.0": { + "mockall 0.13.1": { "name": "mockall", - "version": "0.13.0", + "version": "0.13.1", "package_url": "https://github.com/asomers/mockall", "repository": { "Http": { - "url": "https://static.crates.io/crates/mockall/0.13.0/download", - "sha256": "d4c28b3fb6d753d28c20e826cd46ee611fda1cf3cde03a443a974043247c065a" + "url": "https://static.crates.io/crates/mockall/0.13.1/download", + "sha256": "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2" } }, "targets": [ @@ -41860,11 +41939,11 @@ "target": "fragile" }, { - "id": "predicates 3.1.2", + "id": "predicates 3.1.3", "target": "predicates" }, { - "id": "predicates-tree 1.0.9", + "id": "predicates-tree 1.0.12", "target": "predicates_tree" } ], @@ -41874,13 +41953,13 @@ "proc_macro_deps": { "common": [ { - "id": "mockall_derive 0.13.0", + "id": "mockall_derive 0.13.1", "target": "mockall_derive" } ], "selects": {} }, - "version": "0.13.0" + "version": "0.13.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -41889,14 +41968,14 @@ ], "license_file": "LICENSE-APACHE" }, - "mockall_derive 0.13.0": { + "mockall_derive 0.13.1": { "name": "mockall_derive", - "version": "0.13.0", + "version": "0.13.1", "package_url": "https://github.com/asomers/mockall", "repository": { "Http": { - "url": "https://static.crates.io/crates/mockall_derive/0.13.0/download", - "sha256": "341014e7f530314e9a1fdbc7400b244efea7122662c96bfa248c31da5bfb2020" + "url": "https://static.crates.io/crates/mockall_derive/0.13.1/download", + "sha256": "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898" } }, "targets": [ @@ -41937,26 +42016,26 @@ "target": "cfg_if" }, { - "id": "mockall_derive 0.13.0", + "id": "mockall_derive 0.13.1", "target": "build_script_build" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.13.0" + "version": "0.13.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -41973,14 +42052,14 @@ ], "license_file": "LICENSE-APACHE" }, - "mockito 1.2.0": { + "mockito 1.6.1": { "name": "mockito", - "version": "1.2.0", + "version": "1.6.1", "package_url": "https://github.com/lipanski/mockito", "repository": { "Http": { - "url": "https://static.crates.io/crates/mockito/1.2.0/download", - "sha256": "f8d3038e23466858569c2d30a537f691fa0d53b51626630ae08262943e3bbb8b" + "url": "https://static.crates.io/crates/mockito/1.6.1/download", + "sha256": "652cd6d169a36eaf9d1e6bce1a221130439a966d7f27858af66a33a66e9c4ee2" } }, "targets": [ @@ -42017,19 +42096,39 @@ "target": "assert_json_diff" }, { - "id": "colored 2.0.4", + "id": "bytes 1.9.0", + "target": "bytes" + }, + { + "id": "colored 2.2.0", "target": "colored" }, { - "id": "futures 0.3.31", - "target": "futures" + "id": "futures-util 0.3.31", + "target": "futures_util" + }, + { + "id": "http 1.2.0", + "target": "http" + }, + { + "id": "http-body 1.0.1", + "target": "http_body" + }, + { + "id": "http-body-util 0.1.2", + "target": "http_body_util" }, { - "id": "hyper 0.14.27", + "id": "hyper 1.5.2", "target": "hyper" }, { - "id": "log 0.4.20", + "id": "hyper-util 0.1.10", + "target": "hyper_util" + }, + { + "id": "log 0.4.25", "target": "log" }, { @@ -42037,11 +42136,11 @@ "target": "rand" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -42049,18 +42148,18 @@ "target": "serde_urlencoded" }, { - "id": "similar 2.2.1", + "id": "similar 2.6.0", "target": "similar" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "1.2.0" + "version": "1.6.1" }, "license": "MIT", "license_ids": [ @@ -42068,14 +42167,14 @@ ], "license_file": "LICENSE" }, - "moka 0.12.8": { + "moka 0.12.10": { "name": "moka", - "version": "0.12.8", + "version": "0.12.10", "package_url": "https://github.com/moka-rs/moka", "repository": { "Http": { - "url": "https://static.crates.io/crates/moka/0.12.8/download", - "sha256": "32cf62eb4dd975d2dde76432fb1075c49e3ee2331cf36f1f8fd4b66550d32b6f" + "url": "https://static.crates.io/crates/moka/0.12.10/download", + "sha256": "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" } }, "targets": [ @@ -42112,13 +42211,10 @@ "crate_features": { "common": [ "async-lock", - "async-trait", - "atomic64", "default", "event-listener", "future", "futures-util", - "quanta", "sync" ], "selects": {} @@ -42126,11 +42222,11 @@ "deps": { "common": [ { - "id": "async-lock 3.3.0", + "id": "async-lock 3.4.0", "target": "async_lock" }, { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { @@ -42138,11 +42234,11 @@ "target": "crossbeam_epoch" }, { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" }, { - "id": "event-listener 5.3.1", + "id": "event-listener 5.4.0", "target": "event_listener" }, { @@ -42150,20 +42246,16 @@ "target": "futures_util" }, { - "id": "moka 0.12.8", + "id": "moka 0.12.10", "target": "build_script_build" }, { - "id": "once_cell 1.19.0", - "target": "once_cell" - }, - { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { - "id": "quanta 0.12.3", - "target": "quanta" + "id": "portable-atomic 1.10.0", + "target": "portable_atomic" }, { "id": "smallvec 1.13.2", @@ -42174,31 +42266,25 @@ "target": "tagptr" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "triomphe 0.1.9", - "target": "triomphe" - }, - { - "id": "uuid 1.11.0", + "id": "uuid 1.12.0", "target": "uuid" } ], - "selects": {} + "selects": { + "cfg(moka_loom)": [ + { + "id": "loom 0.7.2", + "target": "loom" + } + ] + } }, "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "async-trait 0.1.83", - "target": "async_trait" - } - ], - "selects": {} - }, - "version": "0.12.8" + "version": "0.12.10" }, "build_script_attrs": { "compile_data_glob": [ @@ -42212,7 +42298,7 @@ "selects": { "cfg(rustver)": [ { - "id": "rustc_version 0.4.0", + "id": "rustc_version 0.4.1", "target": "rustc_version" } ] @@ -42321,7 +42407,7 @@ "target": "bytes" }, { - "id": "encoding_rs 0.8.32", + "id": "encoding_rs 0.8.35", "target": "encoding_rs" }, { @@ -42333,11 +42419,11 @@ "target": "http" }, { - "id": "httparse 1.8.0", + "id": "httparse 1.9.5", "target": "httparse" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -42372,7 +42458,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.4", + "id": "version_check 0.9.5", "target": "version_check" } ], @@ -42439,7 +42525,7 @@ "target": "bytes" }, { - "id": "encoding_rs 0.8.32", + "id": "encoding_rs 0.8.35", "target": "encoding_rs" }, { @@ -42451,7 +42537,7 @@ "target": "http" }, { - "id": "httparse 1.8.0", + "id": "httparse 1.9.5", "target": "httparse" }, { @@ -42486,7 +42572,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.4", + "id": "version_check 0.9.5", "target": "version_check" } ], @@ -42499,14 +42585,14 @@ ], "license_file": "LICENSE" }, - "multimap 0.8.3": { + "multimap 0.10.0": { "name": "multimap", - "version": "0.8.3", + "version": "0.10.0", "package_url": "https://github.com/havarnov/multimap", "repository": { "Http": { - "url": "https://static.crates.io/crates/multimap/0.8.3/download", - "sha256": "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" + "url": "https://static.crates.io/crates/multimap/0.10.0/download", + "sha256": "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" } }, "targets": [ @@ -42529,23 +42615,23 @@ "**" ], "edition": "2015", - "version": "0.8.3" + "version": "0.10.0" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "neli 0.6.4": { + "neli 0.6.5": { "name": "neli", - "version": "0.6.4", + "version": "0.6.5", "package_url": "https://github.com/jbaublitz/neli", "repository": { "Http": { - "url": "https://static.crates.io/crates/neli/0.6.4/download", - "sha256": "1100229e06604150b3becd61a4965d5c70f3be1759544ea7274166f4be41ef43" + "url": "https://static.crates.io/crates/neli/0.6.5/download", + "sha256": "93062a0dce6da2517ea35f301dfc88184ce18d3601ec786a727a87bf535deca9" } }, "targets": [ @@ -42580,11 +42666,11 @@ "target": "byteorder" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" } ], @@ -42594,13 +42680,13 @@ "proc_macro_deps": { "common": [ { - "id": "neli-proc-macros 0.1.3", + "id": "neli-proc-macros 0.1.4", "target": "neli_proc_macros" } ], "selects": {} }, - "version": "0.6.4" + "version": "0.6.5" }, "license": "BSD-3-Clause", "license_ids": [ @@ -42608,14 +42694,14 @@ ], "license_file": "LICENSE" }, - "neli-proc-macros 0.1.3": { + "neli-proc-macros 0.1.4": { "name": "neli-proc-macros", - "version": "0.1.3", + "version": "0.1.4", "package_url": "https://github.com/jbaublitz/neli", "repository": { "Http": { - "url": "https://static.crates.io/crates/neli-proc-macros/0.1.3/download", - "sha256": "c168194d373b1e134786274020dae7fc5513d565ea2ebb9bc9ff17ffb69106d4" + "url": "https://static.crates.io/crates/neli-proc-macros/0.1.4/download", + "sha256": "0c8034b7fbb6f9455b2a96c19e6edf8dc9fc34c70449938d8ee3b4df363f61fe" } }, "targets": [ @@ -42640,15 +42726,15 @@ "deps": { "common": [ { - "id": "either 1.8.1", + "id": "either 1.13.0", "target": "either" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -42663,22 +42749,22 @@ "selects": {} }, "edition": "2018", - "version": "0.1.3" + "version": "0.1.4" }, "license": "BSD-3-Clause", "license_ids": [ "BSD-3-Clause" ], - "license_file": null + "license_file": "LICENSE" }, - "new_debug_unreachable 1.0.4": { + "new_debug_unreachable 1.0.6": { "name": "new_debug_unreachable", - "version": "1.0.4", + "version": "1.0.6", "package_url": "https://github.com/mbrubeck/rust-debug-unreachable", "repository": { "Http": { - "url": "https://static.crates.io/crates/new_debug_unreachable/1.0.4/download", - "sha256": "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" + "url": "https://static.crates.io/crates/new_debug_unreachable/1.0.6/download", + "sha256": "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" } }, "targets": [ @@ -42700,8 +42786,8 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "1.0.4" + "edition": "2021", + "version": "1.0.6" }, "license": "MIT", "license_ids": [ @@ -42745,11 +42831,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "serde_path_to_error 0.1.14", + "id": "serde_path_to_error 0.1.16", "target": "serde_path_to_error" }, { @@ -42757,7 +42843,7 @@ "target": "strum" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -42861,7 +42947,7 @@ "target": "cfg_if" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -42928,7 +43014,7 @@ "target": "cfg_if" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -42984,7 +43070,7 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -42992,11 +43078,11 @@ "target": "cfg_if" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "memoffset 0.9.0", + "id": "memoffset 0.9.1", "target": "memoffset" } ], @@ -43063,7 +43149,7 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -43071,7 +43157,7 @@ "target": "cfg_if" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -43462,7 +43548,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -43601,11 +43687,11 @@ "target": "byteorder" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "libm 0.2.7", + "id": "libm 0.2.11", "target": "libm" }, { @@ -43732,11 +43818,11 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.4", + "id": "arrayvec 0.7.6", "target": "arrayvec" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" } ], @@ -43944,7 +44030,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -44011,7 +44097,7 @@ "deps": { "common": [ { - "id": "libm 0.2.7", + "id": "libm 0.2.11", "target": "libm" }, { @@ -44034,7 +44120,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -44082,7 +44168,7 @@ "selects": { "cfg(not(windows))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -44104,14 +44190,14 @@ ], "license_file": "LICENSE-APACHE" }, - "num_enum 0.6.1": { + "num_enum 0.7.3": { "name": "num_enum", - "version": "0.6.1", + "version": "0.7.3", "package_url": "https://github.com/illicitonion/num_enum", "repository": { "Http": { - "url": "https://static.crates.io/crates/num_enum/0.6.1/download", - "sha256": "7a015b430d3c108a207fd776d2e2196aaf8b1cf8cf93253e3a097ff3085076a1" + "url": "https://static.crates.io/crates/num_enum/0.7.3/download", + "sha256": "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" } }, "targets": [ @@ -44144,13 +44230,13 @@ "proc_macro_deps": { "common": [ { - "id": "num_enum_derive 0.6.1", + "id": "num_enum_derive 0.7.3", "target": "num_enum_derive" } ], "selects": {} }, - "version": "0.6.1" + "version": "0.7.3" }, "license": "BSD-3-Clause OR MIT OR Apache-2.0", "license_ids": [ @@ -44160,14 +44246,14 @@ ], "license_file": "LICENSE-APACHE" }, - "num_enum_derive 0.6.1": { + "num_enum_derive 0.7.3": { "name": "num_enum_derive", - "version": "0.6.1", + "version": "0.7.3", "package_url": "https://github.com/illicitonion/num_enum", "repository": { "Http": { - "url": "https://static.crates.io/crates/num_enum_derive/0.6.1/download", - "sha256": "96667db765a921f7b295ffee8b60472b686a51d4f21c2ee4ffdb94c7013b65a6" + "url": "https://static.crates.io/crates/num_enum_derive/0.7.3/download", + "sha256": "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" } }, "targets": [ @@ -44199,26 +44285,26 @@ "deps": { "common": [ { - "id": "proc-macro-crate 1.3.1", + "id": "proc-macro-crate 3.2.0", "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.6.1" + "version": "0.7.3" }, "license": "BSD-3-Clause OR MIT OR Apache-2.0", "license_ids": [ @@ -44228,14 +44314,14 @@ ], "license_file": "LICENSE-APACHE" }, - "num_threads 0.1.6": { + "num_threads 0.1.7": { "name": "num_threads", - "version": "0.1.6", + "version": "0.1.7", "package_url": "https://github.com/jhpratt/num_threads", "repository": { "Http": { - "url": "https://static.crates.io/crates/num_threads/0.1.6/download", - "sha256": "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" + "url": "https://static.crates.io/crates/num_threads/0.1.7/download", + "sha256": "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" } }, "targets": [ @@ -44262,14 +44348,14 @@ "selects": { "cfg(any(target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] } }, "edition": "2015", - "version": "0.1.6" + "version": "0.1.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -44323,66 +44409,6 @@ ], "license_file": null }, - "object 0.31.1": { - "name": "object", - "version": "0.31.1", - "package_url": "https://github.com/gimli-rs/object", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/object/0.31.1/download", - "sha256": "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" - } - }, - "targets": [ - { - "Library": { - "crate_name": "object", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "object", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "archive", - "coff", - "elf", - "macho", - "pe", - "read_core", - "unaligned" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "memchr 2.7.4", - "target": "memchr" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.31.1" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "object 0.36.7": { "name": "object", "version": "0.36.7", @@ -44437,12 +44463,137 @@ "write_std", "xcoff" ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + "archive", + "unaligned" + ], + "aarch64-apple-ios": [ + "archive", + "unaligned" + ], + "aarch64-apple-ios-sim": [ + "archive", + "unaligned" + ], + "aarch64-linux-android": [ + "archive", + "unaligned" + ], + "aarch64-unknown-fuchsia": [ + "archive", + "unaligned" + ], + "aarch64-unknown-linux-gnu": [ + "archive", + "unaligned" + ], + "aarch64-unknown-nixos-gnu": [ + "archive", + "unaligned" + ], + "aarch64-unknown-nto-qnx710": [ + "archive", + "unaligned" + ], + "arm-unknown-linux-gnueabi": [ + "archive", + "unaligned" + ], + "armv7-linux-androideabi": [ + "archive", + "unaligned" + ], + "armv7-unknown-linux-gnueabi": [ + "archive", + "unaligned" + ], + "i686-apple-darwin": [ + "archive", + "unaligned" + ], + "i686-linux-android": [ + "archive", + "unaligned" + ], + "i686-unknown-freebsd": [ + "archive", + "unaligned" + ], + "i686-unknown-linux-gnu": [ + "archive", + "unaligned" + ], + "powerpc-unknown-linux-gnu": [ + "archive", + "unaligned" + ], + "riscv32imc-unknown-none-elf": [ + "archive", + "unaligned" + ], + "riscv64gc-unknown-none-elf": [ + "archive", + "unaligned" + ], + "s390x-unknown-linux-gnu": [ + "archive", + "unaligned" + ], + "thumbv7em-none-eabi": [ + "archive", + "unaligned" + ], + "thumbv8m.main-none-eabi": [ + "archive", + "unaligned" + ], + "wasm32-unknown-unknown": [ + "archive", + "unaligned" + ], + "wasm32-wasip1": [ + "archive", + "unaligned" + ], + "x86_64-apple-darwin": [ + "archive", + "unaligned" + ], + "x86_64-apple-ios": [ + "archive", + "unaligned" + ], + "x86_64-linux-android": [ + "archive", + "unaligned" + ], + "x86_64-unknown-freebsd": [ + "archive", + "unaligned" + ], + "x86_64-unknown-fuchsia": [ + "archive", + "unaligned" + ], + "x86_64-unknown-linux-gnu": [ + "archive", + "unaligned" + ], + "x86_64-unknown-nixos-gnu": [ + "archive", + "unaligned" + ], + "x86_64-unknown-none": [ + "archive", + "unaligned" + ] + } }, "deps": { "common": [ { - "id": "crc32fast 1.3.2", + "id": "crc32fast 1.4.2", "target": "crc32fast" }, { @@ -44450,7 +44601,7 @@ "target": "hashbrown" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { @@ -44482,14 +44633,14 @@ ], "license_file": "LICENSE-APACHE" }, - "oid-registry 0.7.0": { + "oid-registry 0.7.1": { "name": "oid-registry", - "version": "0.7.0", + "version": "0.7.1", "package_url": "https://github.com/rusticata/oid-registry.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/oid-registry/0.7.0/download", - "sha256": "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d" + "url": "https://static.crates.io/crates/oid-registry/0.7.1/download", + "sha256": "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9" } }, "targets": [ @@ -44542,18 +44693,18 @@ "deps": { "common": [ { - "id": "asn1-rs 0.6.1", + "id": "asn1-rs 0.6.2", "target": "asn1_rs" }, { - "id": "oid-registry 0.7.0", + "id": "oid-registry 0.7.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.7.0" + "version": "0.7.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -44570,14 +44721,14 @@ ], "license_file": "LICENSE-APACHE" }, - "once_cell 1.19.0": { + "once_cell 1.20.2": { "name": "once_cell", - "version": "1.19.0", + "version": "1.20.2", "package_url": "https://github.com/matklad/once_cell", "repository": { "Http": { - "url": "https://static.crates.io/crates/once_cell/1.19.0/download", - "sha256": "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" + "url": "https://static.crates.io/crates/once_cell/1.20.2/download", + "sha256": "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" } }, "targets": [ @@ -44609,7 +44760,7 @@ "selects": {} }, "edition": "2021", - "version": "1.19.0" + "version": "1.20.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -44618,14 +44769,14 @@ ], "license_file": "LICENSE-APACHE" }, - "oorandom 11.1.3": { + "oorandom 11.1.4": { "name": "oorandom", - "version": "11.1.3", - "package_url": "https://sr.ht/~icefox/oorandom/", + "version": "11.1.4", + "package_url": "https://hg.sr.ht/~icefox/oorandom", "repository": { "Http": { - "url": "https://static.crates.io/crates/oorandom/11.1.3/download", - "sha256": "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" + "url": "https://static.crates.io/crates/oorandom/11.1.4/download", + "sha256": "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9" } }, "targets": [ @@ -44648,7 +44799,7 @@ "**" ], "edition": "2018", - "version": "11.1.3" + "version": "11.1.4" }, "license": "MIT", "license_ids": [ @@ -44656,14 +44807,14 @@ ], "license_file": "LICENSE-MIT" }, - "opaque-debug 0.3.0": { + "opaque-debug 0.3.1": { "name": "opaque-debug", - "version": "0.3.0", + "version": "0.3.1", "package_url": "https://github.com/RustCrypto/utils", "repository": { "Http": { - "url": "https://static.crates.io/crates/opaque-debug/0.3.0/download", - "sha256": "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" + "url": "https://static.crates.io/crates/opaque-debug/0.3.1/download", + "sha256": "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" } }, "targets": [ @@ -44686,7 +44837,7 @@ "**" ], "edition": "2018", - "version": "0.3.0" + "version": "0.3.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -44737,7 +44888,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.4", + "id": "arrayvec 0.7.6", "target": "arrayvec" }, { @@ -44755,7 +44906,7 @@ "proc_macro_deps": { "common": [ { - "id": "auto_impl 1.1.0", + "id": "auto_impl 1.2.1", "target": "auto_impl" }, { @@ -44810,11 +44961,11 @@ "target": "bytes" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -44881,7 +45032,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -44936,14 +45087,14 @@ ], "license_file": "LICENSE-APACHE" }, - "openssl-sys 0.9.102": { + "openssl-sys 0.9.104": { "name": "openssl-sys", - "version": "0.9.102", + "version": "0.9.104", "package_url": "https://github.com/sfackler/rust-openssl", "repository": { "Http": { - "url": "https://static.crates.io/crates/openssl-sys/0.9.102/download", - "sha256": "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" + "url": "https://static.crates.io/crates/openssl-sys/0.9.104/download", + "sha256": "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" } }, "targets": [ @@ -44980,18 +45131,18 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "openssl-sys 0.9.102", + "id": "openssl-sys 0.9.104", "target": "build_script_main" } ], "selects": {} }, - "edition": "2018", - "version": "0.9.102" + "edition": "2021", + "version": "0.9.104" }, "build_script_attrs": { "compile_data_glob": [ @@ -45003,11 +45154,11 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" }, { @@ -45190,19 +45341,19 @@ "target": "futures_sink" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -45213,7 +45364,7 @@ "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" } ] @@ -45228,14 +45379,14 @@ ], "license_file": "LICENSE" }, - "opentelemetry 0.27.0": { + "opentelemetry 0.27.1": { "name": "opentelemetry", - "version": "0.27.0", + "version": "0.27.1", "package_url": "https://github.com/open-telemetry/opentelemetry-rust", "repository": { "Http": { - "url": "https://static.crates.io/crates/opentelemetry/0.27.0/download", - "sha256": "0f3cebff57f7dbd1255b44d8bddc2cebeb0ea677dbaa2e25a3070a91b318f660" + "url": "https://static.crates.io/crates/opentelemetry/0.27.1/download", + "sha256": "ab70038c28ed37b97d8ed414b6429d343a8bbf44c9f79ec854f3a643029ba6d7" } }, "targets": [ @@ -45260,10 +45411,15 @@ "crate_features": { "common": [ "default", + "futures-core", + "futures-sink", + "internal-logs", "logs", "metrics", "pin-project-lite", - "trace" + "thiserror", + "trace", + "tracing" ], "selects": {} }, @@ -45278,29 +45434,29 @@ "target": "futures_sink" }, { - "id": "once_cell 1.19.0", - "target": "once_cell" - }, - { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" + }, + { + "id": "tracing 0.1.41", + "target": "tracing" } ], "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" } ] } }, "edition": "2021", - "version": "0.27.0" + "version": "0.27.1" }, "license": "Apache-2.0", "license_ids": [ @@ -45364,7 +45520,7 @@ "target": "http" }, { - "id": "opentelemetry 0.27.0", + "id": "opentelemetry 0.27.1", "target": "opentelemetry" }, { @@ -45376,15 +45532,15 @@ "target": "opentelemetry_sdk" }, { - "id": "prost 0.13.3", + "id": "prost 0.13.4", "target": "prost" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -45402,7 +45558,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -45448,7 +45604,7 @@ "deps": { "common": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -45517,7 +45673,7 @@ "deps": { "common": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -45592,7 +45748,7 @@ "deps": { "common": [ { - "id": "opentelemetry 0.27.0", + "id": "opentelemetry 0.27.1", "target": "opentelemetry" }, { @@ -45600,7 +45756,7 @@ "target": "opentelemetry_sdk" }, { - "id": "prost 0.13.3", + "id": "prost 0.13.4", "target": "prost" }, { @@ -45718,22 +45874,22 @@ "target": "indexmap" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], "selects": { "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" } ] @@ -45801,15 +45957,15 @@ "target": "indexmap" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -45820,7 +45976,7 @@ "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" } ] @@ -45878,7 +46034,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { @@ -45894,7 +46050,7 @@ "target": "futures_util" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -45910,7 +46066,7 @@ "target": "rand" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -45920,7 +46076,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -45979,7 +46135,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { @@ -45995,7 +46151,7 @@ "target": "futures_util" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -46015,11 +46171,11 @@ "target": "rand" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -46029,7 +46185,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -46091,7 +46247,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { @@ -46107,11 +46263,11 @@ "target": "futures_util" }, { - "id": "glob 0.3.1", + "id": "glob 0.3.2", "target": "glob" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -46119,7 +46275,7 @@ "target": "opentelemetry" }, { - "id": "ordered-float 4.2.0", + "id": "ordered-float 4.6.0", "target": "ordered_float" }, { @@ -46131,11 +46287,11 @@ "target": "rand" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -46149,7 +46305,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -46226,11 +46382,11 @@ "target": "futures_util" }, { - "id": "glob 0.3.1", + "id": "glob 0.3.2", "target": "glob" }, { - "id": "opentelemetry 0.27.0", + "id": "opentelemetry 0.27.1", "target": "opentelemetry" }, { @@ -46242,15 +46398,15 @@ "target": "rand" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -46268,7 +46424,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -46282,14 +46438,14 @@ ], "license_file": "LICENSE" }, - "ordered-float 2.10.0": { + "ordered-float 2.10.1": { "name": "ordered-float", - "version": "2.10.0", + "version": "2.10.1", "package_url": "https://github.com/reem/rust-ordered-float", "repository": { "Http": { - "url": "https://static.crates.io/crates/ordered-float/2.10.0/download", - "sha256": "7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87" + "url": "https://static.crates.io/crates/ordered-float/2.10.1/download", + "sha256": "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" } }, "targets": [ @@ -46328,7 +46484,7 @@ "selects": {} }, "edition": "2018", - "version": "2.10.0" + "version": "2.10.1" }, "license": "MIT", "license_ids": [ @@ -46390,14 +46546,14 @@ ], "license_file": "LICENSE-MIT" }, - "ordered-float 4.2.0": { + "ordered-float 4.6.0": { "name": "ordered-float", - "version": "4.2.0", + "version": "4.6.0", "package_url": "https://github.com/reem/rust-ordered-float", "repository": { "Http": { - "url": "https://static.crates.io/crates/ordered-float/4.2.0/download", - "sha256": "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e" + "url": "https://static.crates.io/crates/ordered-float/4.6.0/download", + "sha256": "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951" } }, "targets": [ @@ -46436,7 +46592,7 @@ "selects": {} }, "edition": "2021", - "version": "4.2.0" + "version": "4.6.0" }, "license": "MIT", "license_ids": [ @@ -46444,14 +46600,14 @@ ], "license_file": "LICENSE-MIT" }, - "os_str_bytes 6.5.1": { + "os_str_bytes 6.6.1": { "name": "os_str_bytes", - "version": "6.5.1", + "version": "6.6.1", "package_url": "https://github.com/dylni/os_str_bytes", "repository": { "Http": { - "url": "https://static.crates.io/crates/os_str_bytes/6.5.1/download", - "sha256": "4d5d9eb14b174ee9aa2ef96dc2b94637a2d4b6e7cb873c7e171f0c20c6cf3eac" + "url": "https://static.crates.io/crates/os_str_bytes/6.6.1/download", + "sha256": "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1" } }, "targets": [ @@ -46480,7 +46636,7 @@ "selects": {} }, "edition": "2021", - "version": "6.5.1" + "version": "6.6.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -46584,7 +46740,7 @@ "target": "elliptic_curve" }, { - "id": "primeorder 0.13.2", + "id": "primeorder 0.13.6", "target": "primeorder" }, { @@ -46659,14 +46815,14 @@ ], "license_file": "LICENSE-APACHE" }, - "parity-scale-codec 3.6.3": { + "parity-scale-codec 3.6.12": { "name": "parity-scale-codec", - "version": "3.6.3", + "version": "3.6.12", "package_url": "https://github.com/paritytech/parity-scale-codec", "repository": { "Http": { - "url": "https://static.crates.io/crates/parity-scale-codec/3.6.3/download", - "sha256": "756d439303e94fae44f288ba881ad29670c65b0c4b0e05674ca81061bb65f2c5" + "url": "https://static.crates.io/crates/parity-scale-codec/3.6.12/download", + "sha256": "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee" } }, "targets": [ @@ -46702,7 +46858,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.4", + "id": "arrayvec 0.7.6", "target": "arrayvec" }, { @@ -46720,17 +46876,17 @@ "proc_macro_deps": { "common": [ { - "id": "impl-trait-for-tuples 0.2.2", + "id": "impl-trait-for-tuples 0.2.3", "target": "impl_trait_for_tuples" }, { - "id": "parity-scale-codec-derive 3.6.3", + "id": "parity-scale-codec-derive 3.6.12", "target": "parity_scale_codec_derive" } ], "selects": {} }, - "version": "3.6.3" + "version": "3.6.12" }, "license": "Apache-2.0", "license_ids": [ @@ -46738,14 +46894,14 @@ ], "license_file": "LICENSE" }, - "parity-scale-codec-derive 3.6.3": { + "parity-scale-codec-derive 3.6.12": { "name": "parity-scale-codec-derive", - "version": "3.6.3", + "version": "3.6.12", "package_url": null, "repository": { "Http": { - "url": "https://static.crates.io/crates/parity-scale-codec-derive/3.6.3/download", - "sha256": "9d884d78fcf214d70b1e239fcd1c6e5e95aa3be1881918da2e488cc946c7a476" + "url": "https://static.crates.io/crates/parity-scale-codec-derive/3.6.12/download", + "sha256": "d830939c76d294956402033aee57a6da7b438f2294eb94864c37b0569053a42c" } }, "targets": [ @@ -46776,15 +46932,15 @@ "deps": { "common": [ { - "id": "proc-macro-crate 1.3.1", + "id": "proc-macro-crate 3.2.0", "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -46795,7 +46951,7 @@ "selects": {} }, "edition": "2021", - "version": "3.6.3" + "version": "3.6.12" }, "license": "Apache-2.0", "license_ids": [ @@ -46803,14 +46959,14 @@ ], "license_file": null }, - "parking 2.1.0": { + "parking 2.2.1": { "name": "parking", - "version": "2.1.0", + "version": "2.2.1", "package_url": "https://github.com/smol-rs/parking", "repository": { "Http": { - "url": "https://static.crates.io/crates/parking/2.1.0/download", - "sha256": "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" + "url": "https://static.crates.io/crates/parking/2.2.1/download", + "sha256": "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" } }, "targets": [ @@ -46833,7 +46989,7 @@ "**" ], "edition": "2018", - "version": "2.1.0" + "version": "2.2.1" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -46880,11 +47036,11 @@ "deps": { "common": [ { - "id": "instant 0.1.12", + "id": "instant 0.1.13", "target": "instant" }, { - "id": "lock_api 0.4.10", + "id": "lock_api 0.4.12", "target": "lock_api" }, { @@ -46904,14 +47060,14 @@ ], "license_file": "LICENSE-APACHE" }, - "parking_lot 0.12.1": { + "parking_lot 0.12.3": { "name": "parking_lot", - "version": "0.12.1", + "version": "0.12.3", "package_url": "https://github.com/Amanieu/parking_lot", "repository": { "Http": { - "url": "https://static.crates.io/crates/parking_lot/0.12.1/download", - "sha256": "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" + "url": "https://static.crates.io/crates/parking_lot/0.12.3/download", + "sha256": "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" } }, "targets": [ @@ -46942,18 +47098,18 @@ "deps": { "common": [ { - "id": "lock_api 0.4.10", + "id": "lock_api 0.4.12", "target": "lock_api" }, { - "id": "parking_lot_core 0.9.8", + "id": "parking_lot_core 0.9.10", "target": "parking_lot_core" } ], "selects": {} }, - "edition": "2018", - "version": "0.12.1" + "edition": "2021", + "version": "0.12.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -47010,7 +47166,7 @@ "target": "cfg_if" }, { - "id": "instant 0.1.12", + "id": "instant 0.1.13", "target": "instant" }, { @@ -47031,7 +47187,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -47061,14 +47217,14 @@ ], "license_file": "LICENSE-APACHE" }, - "parking_lot_core 0.9.8": { + "parking_lot_core 0.9.10": { "name": "parking_lot_core", - "version": "0.9.8", + "version": "0.9.10", "package_url": "https://github.com/Amanieu/parking_lot", "repository": { "Http": { - "url": "https://static.crates.io/crates/parking_lot_core/0.9.8/download", - "sha256": "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" + "url": "https://static.crates.io/crates/parking_lot_core/0.9.10/download", + "sha256": "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" } }, "targets": [ @@ -47109,7 +47265,7 @@ "target": "cfg_if" }, { - "id": "parking_lot_core 0.9.8", + "id": "parking_lot_core 0.9.10", "target": "build_script_build" }, { @@ -47120,26 +47276,26 @@ "selects": { "cfg(target_os = \"redox\")": [ { - "id": "redox_syscall 0.3.5", + "id": "redox_syscall 0.5.8", "target": "syscall" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(windows)": [ { - "id": "windows-targets 0.48.1", + "id": "windows-targets 0.52.6", "target": "windows_targets" } ] } }, - "edition": "2018", - "version": "0.9.8" + "edition": "2021", + "version": "0.9.10" }, "build_script_attrs": { "compile_data_glob": [ @@ -47326,14 +47482,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pcre2 0.2.6": { + "pcre2 0.2.9": { "name": "pcre2", - "version": "0.2.6", + "version": "0.2.9", "package_url": "https://github.com/BurntSushi/rust-pcre2", "repository": { "Http": { - "url": "https://static.crates.io/crates/pcre2/0.2.6/download", - "sha256": "4c9d53a8ea5fc3d3568d3de4bebc12606fd0eb8234c602576f1f1ee4880488a7" + "url": "https://static.crates.io/crates/pcre2/0.2.9/download", + "sha256": "3be55c43ac18044541d58d897e8f4c55157218428953ebd39d86df3ba0286b2b" } }, "targets": [ @@ -47358,22 +47514,22 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "pcre2-sys 0.2.8", + "id": "pcre2-sys 0.2.9", "target": "pcre2_sys" } ], "selects": {} }, "edition": "2021", - "version": "0.2.6" + "version": "0.2.9" }, "license": "Unlicense OR MIT", "license_ids": [ @@ -47382,14 +47538,14 @@ ], "license_file": "LICENSE-MIT" }, - "pcre2-sys 0.2.8": { + "pcre2-sys 0.2.9": { "name": "pcre2-sys", - "version": "0.2.8", + "version": "0.2.9", "package_url": "https://github.com/BurntSushi/rust-pcre2", "repository": { "Http": { - "url": "https://static.crates.io/crates/pcre2-sys/0.2.8/download", - "sha256": "25b8a7b5253a4465b873a21ee7e8d6ec561a57eed5d319621bec36bea35c86ae" + "url": "https://static.crates.io/crates/pcre2-sys/0.2.9/download", + "sha256": "550f5d18fb1b90c20b87e161852c10cde77858c3900c5059b5ad2a1449f11d8a" } }, "targets": [ @@ -47426,18 +47582,18 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "pcre2-sys 0.2.8", + "id": "pcre2-sys 0.2.9", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.2.8" + "version": "0.2.9" }, "build_script_attrs": { "compile_data_glob": [ @@ -47449,11 +47605,11 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" } ], @@ -47553,14 +47709,14 @@ ], "license_file": "LICENSE.md" }, - "pem 3.0.3": { + "pem 3.0.4": { "name": "pem", - "version": "3.0.3", + "version": "3.0.4", "package_url": "https://github.com/jcreekmore/pem-rs.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/pem/3.0.3/download", - "sha256": "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310" + "url": "https://static.crates.io/crates/pem/3.0.4/download", + "sha256": "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae" } }, "targets": [ @@ -47592,14 +47748,14 @@ "deps": { "common": [ { - "id": "base64 0.21.6", + "id": "base64 0.22.1", "target": "base64" } ], "selects": {} }, "edition": "2021", - "version": "3.0.3" + "version": "3.0.4" }, "license": "MIT", "license_ids": [ @@ -47708,14 +47864,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pest 2.7.1": { + "pest 2.7.15": { "name": "pest", - "version": "2.7.1", + "version": "2.7.15", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest/2.7.1/download", - "sha256": "0d2d1d55045829d65aad9d389139882ad623b33b904e7c9f1b10c5b8927298e5" + "url": "https://static.crates.io/crates/pest/2.7.15/download", + "sha256": "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc" } }, "targets": [ @@ -47740,6 +47896,7 @@ "crate_features": { "common": [ "default", + "memchr", "std" ], "selects": {} @@ -47747,34 +47904,38 @@ "deps": { "common": [ { - "id": "thiserror 1.0.68", + "id": "memchr 2.7.4", + "target": "memchr" + }, + { + "id": "thiserror 2.0.11", "target": "thiserror" }, { - "id": "ucd-trie 0.1.6", + "id": "ucd-trie 0.1.7", "target": "ucd_trie" } ], "selects": {} }, "edition": "2021", - "version": "2.7.1" + "version": "2.7.15" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "pest_derive 2.7.1": { + "pest_derive 2.7.15": { "name": "pest_derive", - "version": "2.7.1", + "version": "2.7.15", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_derive/2.7.1/download", - "sha256": "5f94bca7e7a599d89dea5dfa309e217e7906c3c007fb9c3299c40b10d6a315d3" + "url": "https://static.crates.io/crates/pest_derive/2.7.15/download", + "sha256": "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e" } }, "targets": [ @@ -47806,34 +47967,34 @@ "deps": { "common": [ { - "id": "pest 2.7.1", + "id": "pest 2.7.15", "target": "pest" }, { - "id": "pest_generator 2.7.1", + "id": "pest_generator 2.7.15", "target": "pest_generator" } ], "selects": {} }, "edition": "2021", - "version": "2.7.1" + "version": "2.7.15" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "pest_generator 2.7.1": { + "pest_generator 2.7.15": { "name": "pest_generator", - "version": "2.7.1", + "version": "2.7.15", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_generator/2.7.1/download", - "sha256": "99d490fe7e8556575ff6911e45567ab95e71617f43781e5c05490dc8d75c965c" + "url": "https://static.crates.io/crates/pest_generator/2.7.15/download", + "sha256": "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b" } }, "targets": [ @@ -47864,46 +48025,46 @@ "deps": { "common": [ { - "id": "pest 2.7.1", + "id": "pest 2.7.15", "target": "pest" }, { - "id": "pest_meta 2.7.1", + "id": "pest_meta 2.7.15", "target": "pest_meta" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.7.1" + "version": "2.7.15" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "pest_meta 2.7.1": { + "pest_meta 2.7.15": { "name": "pest_meta", - "version": "2.7.1", + "version": "2.7.15", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_meta/2.7.1/download", - "sha256": "2674c66ebb4b4d9036012091b537aae5878970d6999f81a265034d85b136b341" + "url": "https://static.crates.io/crates/pest_meta/2.7.15/download", + "sha256": "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea" } }, "targets": [ @@ -47934,34 +48095,34 @@ "deps": { "common": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "pest 2.7.1", + "id": "pest 2.7.15", "target": "pest" } ], "selects": {} }, "edition": "2021", - "version": "2.7.1" + "version": "2.7.15" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "pest_vm 2.7.1": { + "pest_vm 2.7.15": { "name": "pest_vm", - "version": "2.7.1", + "version": "2.7.15", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_vm/2.7.1/download", - "sha256": "3c590ba0f5dbc3b72b0b22fe5a11a69a43ff984cce83928dfaa615eb87594d6a" + "url": "https://static.crates.io/crates/pest_vm/2.7.15/download", + "sha256": "a8151168a80801131f6e0e79d6c84fa337ccd2493c99e59de027354c3e6fca0b" } }, "targets": [ @@ -47986,34 +48147,34 @@ "deps": { "common": [ { - "id": "pest 2.7.1", + "id": "pest 2.7.15", "target": "pest" }, { - "id": "pest_meta 2.7.1", + "id": "pest_meta 2.7.15", "target": "pest_meta" } ], "selects": {} }, "edition": "2021", - "version": "2.7.1" + "version": "2.7.15" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": null }, - "petgraph 0.6.3": { + "petgraph 0.6.5": { "name": "petgraph", - "version": "0.6.3", + "version": "0.6.5", "package_url": "https://github.com/petgraph/petgraph", "repository": { "Http": { - "url": "https://static.crates.io/crates/petgraph/0.6.3/download", - "sha256": "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4" + "url": "https://static.crates.io/crates/petgraph/0.6.5/download", + "sha256": "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" } }, "targets": [ @@ -48042,14 +48203,14 @@ "target": "fixedbitset" }, { - "id": "indexmap 1.9.3", + "id": "indexmap 2.7.0", "target": "indexmap" } ], "selects": {} }, "edition": "2018", - "version": "0.6.3" + "version": "0.6.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -48112,14 +48273,14 @@ ], "license_file": null }, - "phf 0.11.2": { + "phf 0.11.3": { "name": "phf", - "version": "0.11.2", + "version": "0.11.3", "package_url": "https://github.com/rust-phf/rust-phf", "repository": { "Http": { - "url": "https://static.crates.io/crates/phf/0.11.2/download", - "sha256": "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" + "url": "https://static.crates.io/crates/phf/0.11.3/download", + "sha256": "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" } }, "targets": [ @@ -48153,7 +48314,7 @@ "deps": { "common": [ { - "id": "phf_shared 0.11.2", + "id": "phf_shared 0.11.3", "target": "phf_shared" } ], @@ -48163,13 +48324,13 @@ "proc_macro_deps": { "common": [ { - "id": "phf_macros 0.11.2", + "id": "phf_macros 0.11.3", "target": "phf_macros" } ], "selects": {} }, - "version": "0.11.2" + "version": "0.11.3" }, "license": "MIT", "license_ids": [ @@ -48279,14 +48440,14 @@ ], "license_file": null }, - "phf_generator 0.11.2": { + "phf_generator 0.11.3": { "name": "phf_generator", - "version": "0.11.2", + "version": "0.11.3", "package_url": "https://github.com/rust-phf/rust-phf", "repository": { "Http": { - "url": "https://static.crates.io/crates/phf_generator/0.11.2/download", - "sha256": "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" + "url": "https://static.crates.io/crates/phf_generator/0.11.3/download", + "sha256": "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" } }, "targets": [ @@ -48311,7 +48472,7 @@ "deps": { "common": [ { - "id": "phf_shared 0.11.2", + "id": "phf_shared 0.11.3", "target": "phf_shared" }, { @@ -48322,7 +48483,7 @@ "selects": {} }, "edition": "2021", - "version": "0.11.2" + "version": "0.11.3" }, "license": "MIT", "license_ids": [ @@ -48330,14 +48491,14 @@ ], "license_file": "LICENSE" }, - "phf_macros 0.11.2": { + "phf_macros 0.11.3": { "name": "phf_macros", - "version": "0.11.2", + "version": "0.11.3", "package_url": "https://github.com/rust-phf/rust-phf", "repository": { "Http": { - "url": "https://static.crates.io/crates/phf_macros/0.11.2/download", - "sha256": "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" + "url": "https://static.crates.io/crates/phf_macros/0.11.3/download", + "sha256": "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" } }, "targets": [ @@ -48362,36 +48523,36 @@ "deps": { "common": [ { - "id": "phf_generator 0.11.2", + "id": "phf_generator 0.11.3", "target": "phf_generator" }, { - "id": "phf_shared 0.11.2", + "id": "phf_shared 0.11.3", "target": "phf_shared" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.11.2" + "version": "0.11.3" }, "license": "MIT", "license_ids": [ "MIT" ], - "license_file": null + "license_file": "LICENSE" }, "phf_shared 0.10.0": { "name": "phf_shared", @@ -48447,14 +48608,14 @@ ], "license_file": null }, - "phf_shared 0.11.2": { + "phf_shared 0.11.3": { "name": "phf_shared", - "version": "0.11.2", + "version": "0.11.3", "package_url": "https://github.com/rust-phf/rust-phf", "repository": { "Http": { - "url": "https://static.crates.io/crates/phf_shared/0.11.2/download", - "sha256": "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" + "url": "https://static.crates.io/crates/phf_shared/0.11.3/download", + "sha256": "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" } }, "targets": [ @@ -48485,14 +48646,14 @@ "deps": { "common": [ { - "id": "siphasher 0.3.11", + "id": "siphasher 1.0.1", "target": "siphasher" } ], "selects": {} }, "edition": "2021", - "version": "0.11.2" + "version": "0.11.3" }, "license": "MIT", "license_ids": [ @@ -48538,14 +48699,14 @@ ], "license_file": "LICENSE" }, - "pin-project 1.1.2": { + "pin-project 1.1.8": { "name": "pin-project", - "version": "1.1.2", + "version": "1.1.8", "package_url": "https://github.com/taiki-e/pin-project", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project/1.1.2/download", - "sha256": "030ad2bc4db10a8944cb0d837f158bdfec4d4a4873ab701a95046770d11f8842" + "url": "https://static.crates.io/crates/pin-project/1.1.8/download", + "sha256": "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916" } }, "targets": [ @@ -48567,17 +48728,17 @@ "compile_data_glob": [ "**" ], - "edition": "2018", + "edition": "2021", "proc_macro_deps": { "common": [ { - "id": "pin-project-internal 1.1.2", + "id": "pin-project-internal 1.1.8", "target": "pin_project_internal" } ], "selects": {} }, - "version": "1.1.2" + "version": "1.1.8" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -48586,14 +48747,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pin-project-internal 1.1.2": { + "pin-project-internal 1.1.8": { "name": "pin-project-internal", - "version": "1.1.2", + "version": "1.1.8", "package_url": "https://github.com/taiki-e/pin-project", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project-internal/1.1.2/download", - "sha256": "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c" + "url": "https://static.crates.io/crates/pin-project-internal/1.1.8/download", + "sha256": "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb" } }, "targets": [ @@ -48618,22 +48779,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, - "edition": "2018", - "version": "1.1.2" + "edition": "2021", + "version": "1.1.8" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -48642,14 +48803,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pin-project-lite 0.2.13": { + "pin-project-lite 0.2.16": { "name": "pin-project-lite", - "version": "0.2.13", + "version": "0.2.16", "package_url": "https://github.com/taiki-e/pin-project-lite", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project-lite/0.2.13/download", - "sha256": "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" + "url": "https://static.crates.io/crates/pin-project-lite/0.2.16/download", + "sha256": "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" } }, "targets": [ @@ -48672,7 +48833,7 @@ "**" ], "edition": "2018", - "version": "0.2.13" + "version": "0.2.16" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -48720,14 +48881,14 @@ ], "license_file": "LICENSE-APACHE" }, - "ping 0.5.0": { + "ping 0.5.2": { "name": "ping", - "version": "0.5.0", + "version": "0.5.2", "package_url": "https://github.com/aisk/rust-ping", "repository": { "Http": { - "url": "https://static.crates.io/crates/ping/0.5.0/download", - "sha256": "985c8af0584bf35ecfb95a65b74a457782966e1ab8f2c94c01697a36432a5814" + "url": "https://static.crates.io/crates/ping/0.5.2/download", + "sha256": "122ee1f5a6843bec84fcbd5c6ba3622115337a6b8965b93a61aad347648f4e8d" } }, "targets": [ @@ -48756,18 +48917,18 @@ "target": "rand" }, { - "id": "socket2 0.4.9", + "id": "socket2 0.4.10", "target": "socket2" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], "selects": {} }, "edition": "2018", - "version": "0.5.0" + "version": "0.5.2" }, "license": "MIT", "license_ids": [ @@ -48819,7 +48980,7 @@ "target": "atomic_waker" }, { - "id": "fastrand 2.1.0", + "id": "fastrand 2.3.0", "target": "fastrand" }, { @@ -48881,7 +49042,7 @@ "deps": { "common": [ { - "id": "der 0.7.7", + "id": "der 0.7.9", "target": "der" }, { @@ -48945,7 +49106,7 @@ "deps": { "common": [ { - "id": "der 0.7.7", + "id": "der 0.7.9", "target": "der" }, { @@ -48965,14 +49126,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pkg-config 0.3.27": { + "pkg-config 0.3.31": { "name": "pkg-config", - "version": "0.3.27", + "version": "0.3.31", "package_url": "https://github.com/rust-lang/pkg-config-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/pkg-config/0.3.27/download", - "sha256": "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" + "url": "https://static.crates.io/crates/pkg-config/0.3.31/download", + "sha256": "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" } }, "targets": [ @@ -48994,8 +49155,8 @@ "compile_data_glob": [ "**" ], - "edition": "2015", - "version": "0.3.27" + "edition": "2018", + "version": "0.3.31" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -49004,14 +49165,14 @@ ], "license_file": "LICENSE-APACHE" }, - "plotters 0.3.5": { + "plotters 0.3.7": { "name": "plotters", - "version": "0.3.5", + "version": "0.3.7", "package_url": "https://github.com/plotters-rs/plotters", "repository": { "Http": { - "url": "https://static.crates.io/crates/plotters/0.3.5/download", - "sha256": "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" + "url": "https://static.crates.io/crates/plotters/0.3.7/download", + "sha256": "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747" } }, "targets": [ @@ -49049,29 +49210,29 @@ "target": "num_traits" }, { - "id": "plotters-backend 0.3.5", + "id": "plotters-backend 0.3.7", "target": "plotters_backend" }, { - "id": "plotters-svg 0.3.5", + "id": "plotters-svg 0.3.7", "target": "plotters_svg" } ], "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" }, { - "id": "web-sys 0.3.64", + "id": "web-sys 0.3.77", "target": "web_sys" } ] } }, "edition": "2018", - "version": "0.3.5" + "version": "0.3.7" }, "license": "MIT", "license_ids": [ @@ -49079,14 +49240,14 @@ ], "license_file": "LICENSE" }, - "plotters-backend 0.3.5": { + "plotters-backend 0.3.7": { "name": "plotters-backend", - "version": "0.3.5", + "version": "0.3.7", "package_url": "https://github.com/plotters-rs/plotters", "repository": { "Http": { - "url": "https://static.crates.io/crates/plotters-backend/0.3.5/download", - "sha256": "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" + "url": "https://static.crates.io/crates/plotters-backend/0.3.7/download", + "sha256": "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a" } }, "targets": [ @@ -49109,7 +49270,7 @@ "**" ], "edition": "2018", - "version": "0.3.5" + "version": "0.3.7" }, "license": "MIT", "license_ids": [ @@ -49117,14 +49278,14 @@ ], "license_file": "LICENSE" }, - "plotters-svg 0.3.5": { + "plotters-svg 0.3.7": { "name": "plotters-svg", - "version": "0.3.5", + "version": "0.3.7", "package_url": "https://github.com/plotters-rs/plotters.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/plotters-svg/0.3.5/download", - "sha256": "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" + "url": "https://static.crates.io/crates/plotters-svg/0.3.7/download", + "sha256": "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670" } }, "targets": [ @@ -49149,14 +49310,14 @@ "deps": { "common": [ { - "id": "plotters-backend 0.3.5", + "id": "plotters-backend 0.3.7", "target": "plotters_backend" } ], "selects": {} }, "edition": "2018", - "version": "0.3.5" + "version": "0.3.7" }, "license": "MIT", "license_ids": [ @@ -49200,7 +49361,7 @@ "target": "base64" }, { - "id": "candid 0.10.10", + "id": "candid 0.10.12", "target": "candid" }, { @@ -49216,11 +49377,11 @@ "target": "ic_transport_types" }, { - "id": "reqwest 0.12.9", + "id": "reqwest 0.12.12", "target": "reqwest" }, { - "id": "schemars 0.8.16", + "id": "schemars 0.8.21", "target": "schemars" }, { @@ -49236,7 +49397,7 @@ "target": "serde_cbor" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -49252,11 +49413,11 @@ "target": "strum" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -49299,14 +49460,14 @@ ], "license_file": "LICENSE" }, - "polling 3.7.3": { + "polling 3.7.4": { "name": "polling", - "version": "3.7.3", + "version": "3.7.4", "package_url": "https://github.com/smol-rs/polling", "repository": { "Http": { - "url": "https://static.crates.io/crates/polling/3.7.3/download", - "sha256": "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" + "url": "https://static.crates.io/crates/polling/3.7.4/download", + "sha256": "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f" } }, "targets": [ @@ -49342,7 +49503,7 @@ "selects": { "cfg(any(unix, target_os = \"fuchsia\", target_os = \"vxworks\"))": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -49358,7 +49519,7 @@ "target": "concurrent_queue" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -49369,7 +49530,7 @@ } }, "edition": "2021", - "version": "3.7.3" + "version": "3.7.4" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -49410,7 +49571,7 @@ "deps": { "common": [ { - "id": "opaque-debug 0.3.0", + "id": "opaque-debug 0.3.1", "target": "opaque_debug" }, { @@ -49421,7 +49582,7 @@ "selects": { "cfg(any(target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.9", + "id": "cpufeatures 0.2.16", "target": "cpufeatures" } ] @@ -49437,14 +49598,14 @@ ], "license_file": "LICENSE-APACHE" }, - "portable-atomic 1.4.1": { + "portable-atomic 1.10.0": { "name": "portable-atomic", - "version": "1.4.1", + "version": "1.10.0", "package_url": "https://github.com/taiki-e/portable-atomic", "repository": { "Http": { - "url": "https://static.crates.io/crates/portable-atomic/1.4.1/download", - "sha256": "edc55135a600d700580e406b4de0d59cb9ad25e344a3a091a97ded2622ec4ec6" + "url": "https://static.crates.io/crates/portable-atomic/1.10.0/download", + "sha256": "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6" } }, "targets": [ @@ -49481,21 +49642,22 @@ "crate_features": { "common": [ "default", - "fallback" + "fallback", + "require-cas" ], "selects": {} }, "deps": { "common": [ { - "id": "portable-atomic 1.4.1", + "id": "portable-atomic 1.10.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.4.1" + "version": "1.10.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -49512,14 +49674,14 @@ ], "license_file": "LICENSE-APACHE" }, - "postcard 1.0.8": { + "postcard 1.1.1": { "name": "postcard", - "version": "1.0.8", + "version": "1.1.1", "package_url": "https://github.com/jamesmunns/postcard", "repository": { "Http": { - "url": "https://static.crates.io/crates/postcard/1.0.8/download", - "sha256": "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8" + "url": "https://static.crates.io/crates/postcard/1.1.1/download", + "sha256": "170a2601f67cc9dba8edd8c4870b15f71a6a2dc196daec8c83f72b59dff628a8" } }, "targets": [ @@ -49544,7 +49706,6 @@ "crate_features": { "common": [ "alloc", - "embedded-io", "use-std" ], "selects": {} @@ -49555,10 +49716,6 @@ "id": "cobs 0.2.3", "target": "cobs" }, - { - "id": "embedded-io 0.4.0", - "target": "embedded_io" - }, { "id": "serde 1.0.217", "target": "serde" @@ -49566,15 +49723,15 @@ ], "selects": {} }, - "edition": "2018", - "version": "1.0.8" + "edition": "2021", + "version": "1.1.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": null }, "powerfmt 0.2.0": { "name": "powerfmt", @@ -49677,7 +49834,7 @@ "target": "aligned_vec" }, { - "id": "backtrace 0.3.68", + "id": "backtrace 0.3.74", "target": "backtrace" }, { @@ -49693,15 +49850,15 @@ "target": "findshlibs" }, { - "id": "inferno 0.11.19", + "id": "inferno 0.11.21", "target": "inferno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -49709,11 +49866,11 @@ "target": "nix" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { @@ -49721,7 +49878,7 @@ "target": "build_script_build" }, { - "id": "prost 0.12.2", + "id": "prost 0.12.6", "target": "prost" }, { @@ -49729,15 +49886,15 @@ "target": "smallvec" }, { - "id": "symbolic-demangle 12.4.0", + "id": "symbolic-demangle 12.13.2", "target": "symbolic_demangle" }, { - "id": "tempfile 3.12.0", + "id": "tempfile 3.15.0", "target": "tempfile" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -49747,7 +49904,7 @@ "proc_macro_deps": { "common": [ { - "id": "prost-derive 0.12.2", + "id": "prost-derive 0.12.6", "target": "prost_derive" } ], @@ -49771,7 +49928,7 @@ "deps": { "common": [ { - "id": "prost-build 0.12.2", + "id": "prost-build 0.12.6", "target": "prost_build" }, { @@ -49794,14 +49951,14 @@ ], "license_file": "LICENSE" }, - "ppv-lite86 0.2.17": { + "ppv-lite86 0.2.20": { "name": "ppv-lite86", - "version": "0.2.17", + "version": "0.2.20", "package_url": "https://github.com/cryptocorrosion/cryptocorrosion", "repository": { "Http": { - "url": "https://static.crates.io/crates/ppv-lite86/0.2.17/download", - "sha256": "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" + "url": "https://static.crates.io/crates/ppv-lite86/0.2.20/download", + "sha256": "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" } }, "targets": [ @@ -49830,8 +49987,17 @@ ], "selects": {} }, - "edition": "2018", - "version": "0.2.17" + "deps": { + "common": [ + { + "id": "zerocopy 0.7.35", + "target": "zerocopy" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.2.20" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -49878,14 +50044,14 @@ ], "license_file": "LICENSE" }, - "predicates 3.1.2": { + "predicates 3.1.3": { "name": "predicates", - "version": "3.1.2", + "version": "3.1.3", "package_url": "https://github.com/assert-rs/predicates-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates/3.1.2/download", - "sha256": "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97" + "url": "https://static.crates.io/crates/predicates/3.1.3/download", + "sha256": "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573" } }, "targets": [ @@ -49921,7 +50087,7 @@ "deps": { "common": [ { - "id": "anstyle 1.0.8", + "id": "anstyle 1.0.10", "target": "anstyle" }, { @@ -49929,7 +50095,7 @@ "target": "difflib" }, { - "id": "float-cmp 0.9.0", + "id": "float-cmp 0.10.0", "target": "float_cmp" }, { @@ -49937,18 +50103,18 @@ "target": "normalize_line_endings" }, { - "id": "predicates-core 1.0.6", + "id": "predicates-core 1.0.9", "target": "predicates_core" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "selects": {} }, "edition": "2021", - "version": "3.1.2" + "version": "3.1.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -49957,14 +50123,14 @@ ], "license_file": "LICENSE-APACHE" }, - "predicates-core 1.0.6": { + "predicates-core 1.0.9": { "name": "predicates-core", - "version": "1.0.6", + "version": "1.0.9", "package_url": "https://github.com/assert-rs/predicates-rs/tree/master/crates/core", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates-core/1.0.6/download", - "sha256": "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" + "url": "https://static.crates.io/crates/predicates-core/1.0.9/download", + "sha256": "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" } }, "targets": [ @@ -49987,7 +50153,7 @@ "**" ], "edition": "2021", - "version": "1.0.6" + "version": "1.0.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -49996,14 +50162,14 @@ ], "license_file": "LICENSE-APACHE" }, - "predicates-tree 1.0.9": { + "predicates-tree 1.0.12": { "name": "predicates-tree", - "version": "1.0.9", + "version": "1.0.12", "package_url": "https://github.com/assert-rs/predicates-rs/tree/master/crates/tree", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates-tree/1.0.9/download", - "sha256": "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" + "url": "https://static.crates.io/crates/predicates-tree/1.0.12/download", + "sha256": "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" } }, "targets": [ @@ -50028,18 +50194,18 @@ "deps": { "common": [ { - "id": "predicates-core 1.0.6", + "id": "predicates-core 1.0.9", "target": "predicates_core" }, { - "id": "termtree 0.4.1", + "id": "termtree 0.5.1", "target": "termtree" } ], "selects": {} }, "edition": "2021", - "version": "1.0.9" + "version": "1.0.12" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50084,7 +50250,7 @@ "target": "arrayvec" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -50092,7 +50258,7 @@ "target": "typed_arena" }, { - "id": "unicode-segmentation 1.10.1", + "id": "unicode-segmentation 1.12.0", "target": "unicode_segmentation" } ], @@ -50107,14 +50273,14 @@ ], "license_file": "LICENSE" }, - "pretty 0.12.1": { + "pretty 0.12.3": { "name": "pretty", - "version": "0.12.1", + "version": "0.12.3", "package_url": "https://github.com/Marwes/pretty.rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/pretty/0.12.1/download", - "sha256": "563c9d701c3a31dfffaaf9ce23507ba09cbe0b9125ba176d15e629b0235e9acc" + "url": "https://static.crates.io/crates/pretty/0.12.3/download", + "sha256": "b55c4d17d994b637e2f4daf6e5dc5d660d209d5642377d675d7a1c3ab69fa579" } }, "targets": [ @@ -50147,14 +50313,14 @@ "target": "typed_arena" }, { - "id": "unicode-segmentation 1.10.1", - "target": "unicode_segmentation" + "id": "unicode-width 0.1.14", + "target": "unicode_width" } ], "selects": {} }, "edition": "2018", - "version": "0.12.1" + "version": "0.12.3" }, "license": "MIT", "license_ids": [ @@ -50213,14 +50379,14 @@ ], "license_file": null }, - "pretty_assertions 1.4.0": { + "pretty_assertions 1.4.1": { "name": "pretty_assertions", - "version": "1.4.0", + "version": "1.4.1", "package_url": "https://github.com/rust-pretty-assertions/rust-pretty-assertions", "repository": { "Http": { - "url": "https://static.crates.io/crates/pretty_assertions/1.4.0/download", - "sha256": "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" + "url": "https://static.crates.io/crates/pretty_assertions/1.4.1/download", + "sha256": "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" } }, "targets": [ @@ -50256,14 +50422,14 @@ "target": "diff" }, { - "id": "yansi 0.5.1", + "id": "yansi 1.0.1", "target": "yansi" } ], "selects": {} }, "edition": "2018", - "version": "1.4.0" + "version": "1.4.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50272,14 +50438,14 @@ ], "license_file": "LICENSE-APACHE" }, - "prettyplease 0.2.15": { + "prettyplease 0.2.29": { "name": "prettyplease", - "version": "0.2.15", + "version": "0.2.29", "package_url": "https://github.com/dtolnay/prettyplease", "repository": { "Http": { - "url": "https://static.crates.io/crates/prettyplease/0.2.15/download", - "sha256": "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" + "url": "https://static.crates.io/crates/prettyplease/0.2.29/download", + "sha256": "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac" } }, "targets": [ @@ -50316,22 +50482,22 @@ "deps": { "common": [ { - "id": "prettyplease 0.2.15", + "id": "prettyplease 0.2.29", "target": "build_script_build" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.2.15" + "version": "0.2.29" }, "build_script_attrs": { "compile_data_glob": [ @@ -50349,14 +50515,14 @@ ], "license_file": "LICENSE-APACHE" }, - "primeorder 0.13.2": { + "primeorder 0.13.6": { "name": "primeorder", - "version": "0.13.2", + "version": "0.13.6", "package_url": "https://github.com/RustCrypto/elliptic-curves/tree/master/primeorder", "repository": { "Http": { - "url": "https://static.crates.io/crates/primeorder/0.13.2/download", - "sha256": "3c2fcef82c0ec6eefcc179b978446c399b3cdf73c392c35604e399eee6df1ee3" + "url": "https://static.crates.io/crates/primeorder/0.13.6/download", + "sha256": "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" } }, "targets": [ @@ -50388,7 +50554,7 @@ "selects": {} }, "edition": "2021", - "version": "0.13.2" + "version": "0.13.6" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -50397,14 +50563,14 @@ ], "license_file": "LICENSE-APACHE" }, - "primitive-types 0.12.1": { + "primitive-types 0.12.2": { "name": "primitive-types", - "version": "0.12.1", + "version": "0.12.2", "package_url": "https://github.com/paritytech/parity-common", "repository": { "Http": { - "url": "https://static.crates.io/crates/primitive-types/0.12.1/download", - "sha256": "9f3486ccba82358b11a77516035647c34ba167dfa53312630de83b12bd4f3d66" + "url": "https://static.crates.io/crates/primitive-types/0.12.2/download", + "sha256": "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2" } }, "targets": [ @@ -50461,7 +50627,7 @@ "target": "impl_serde" }, { - "id": "scale-info 2.9.0", + "id": "scale-info 2.11.6", "target": "scale_info", "alias": "scale_info_crate" }, @@ -50473,7 +50639,7 @@ "selects": {} }, "edition": "2021", - "version": "0.12.1" + "version": "0.12.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50482,14 +50648,14 @@ ], "license_file": null }, - "priority-queue 1.3.2": { + "priority-queue 1.4.0": { "name": "priority-queue", - "version": "1.3.2", + "version": "1.4.0", "package_url": "https://github.com/garro95/priority-queue", "repository": { "Http": { - "url": "https://static.crates.io/crates/priority-queue/1.3.2/download", - "sha256": "fff39edfcaec0d64e8d0da38564fad195d2d51b680940295fcc307366e101e61" + "url": "https://static.crates.io/crates/priority-queue/1.4.0/download", + "sha256": "a0bda9164fe05bc9225752d54aae413343c36f684380005398a6a8fde95fe785" } }, "targets": [ @@ -50536,7 +50702,7 @@ "target": "indexmap" }, { - "id": "priority-queue 1.3.2", + "id": "priority-queue 1.4.0", "target": "build_script_build" }, { @@ -50547,7 +50713,7 @@ "selects": {} }, "edition": "2018", - "version": "1.3.2" + "version": "1.4.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -50559,7 +50725,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -50573,58 +50739,6 @@ ], "license_file": null }, - "proc-macro-crate 1.3.1": { - "name": "proc-macro-crate", - "version": "1.3.1", - "package_url": "https://github.com/bkchr/proc-macro-crate", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/proc-macro-crate/1.3.1/download", - "sha256": "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" - } - }, - "targets": [ - { - "Library": { - "crate_name": "proc_macro_crate", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "proc_macro_crate", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "once_cell 1.19.0", - "target": "once_cell" - }, - { - "id": "toml_edit 0.19.14", - "target": "toml_edit" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.3.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "proc-macro-crate 3.2.0": { "name": "proc-macro-crate", "version": "3.2.0", @@ -50657,7 +50771,7 @@ "deps": { "common": [ { - "id": "toml_edit 0.22.20", + "id": "toml_edit 0.22.22", "target": "toml_edit" } ], @@ -50729,11 +50843,11 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -50765,7 +50879,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.4", + "id": "version_check 0.9.5", "target": "version_check" } ], @@ -50827,11 +50941,11 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" } ], @@ -50850,7 +50964,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.4", + "id": "version_check 0.9.5", "target": "version_check" } ], @@ -50932,14 +51046,14 @@ ], "license_file": "LICENSE-APACHE" }, - "proc-macro2 1.0.89": { + "proc-macro2 1.0.93": { "name": "proc-macro2", - "version": "1.0.89", + "version": "1.0.93", "package_url": "https://github.com/dtolnay/proc-macro2", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro2/1.0.89/download", - "sha256": "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" + "url": "https://static.crates.io/crates/proc-macro2/1.0.93/download", + "sha256": "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" } }, "targets": [ @@ -50983,18 +51097,18 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "build_script_build" }, { - "id": "unicode-ident 1.0.11", + "id": "unicode-ident 1.0.14", "target": "unicode_ident" } ], "selects": {} }, "edition": "2021", - "version": "1.0.89" + "version": "1.0.93" }, "build_script_attrs": { "compile_data_glob": [ @@ -51051,7 +51165,7 @@ "target": "byteorder" }, { - "id": "flate2 1.0.31", + "id": "flate2 1.0.35", "target": "flate2" }, { @@ -51059,11 +51173,11 @@ "target": "hex" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -51123,7 +51237,7 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -51131,7 +51245,7 @@ "target": "hex" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -51143,7 +51257,7 @@ "target": "procfs_core" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -51199,7 +51313,7 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -51281,11 +51395,11 @@ "target": "fnv" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -51293,7 +51407,7 @@ "target": "memchr" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { @@ -51305,7 +51419,7 @@ "target": "protobuf" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -51383,14 +51497,14 @@ ], "license_file": "LICENSE" }, - "prometheus-parse 0.2.4": { + "prometheus-parse 0.2.5": { "name": "prometheus-parse", - "version": "0.2.4", + "version": "0.2.5", "package_url": "https://github.com/ccakes/prometheus-parse-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/prometheus-parse/0.2.4/download", - "sha256": "0c2aa5feb83bf4b2c8919eaf563f51dbab41183de73ba2353c0e03cd7b6bd892" + "url": "https://static.crates.io/crates/prometheus-parse/0.2.5/download", + "sha256": "811031bea65e5a401fb2e1f37d802cca6601e204ac463809a3189352d13b78a5" } }, "targets": [ @@ -51415,26 +51529,26 @@ "deps": { "common": [ { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { - "id": "itertools 0.10.5", + "id": "itertools 0.12.1", "target": "itertools" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" } ], "selects": {} }, "edition": "2018", - "version": "0.2.4" + "version": "0.2.5" }, "license": "Apache-2.0", "license_ids": [ @@ -51442,14 +51556,14 @@ ], "license_file": "LICENSE" }, - "proptest 1.5.0": { + "proptest 1.6.0": { "name": "proptest", - "version": "1.5.0", + "version": "1.6.0", "package_url": "https://github.com/proptest-rs/proptest", "repository": { "Http": { - "url": "https://static.crates.io/crates/proptest/1.5.0/download", - "sha256": "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" + "url": "https://static.crates.io/crates/proptest/1.6.0/download", + "sha256": "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" } }, "targets": [ @@ -51488,19 +51602,19 @@ "deps": { "common": [ { - "id": "bit-set 0.5.3", + "id": "bit-set 0.8.0", "target": "bit_set" }, { - "id": "bit-vec 0.6.3", + "id": "bit-vec 0.8.0", "target": "bit_vec" }, { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -51528,7 +51642,7 @@ "target": "rusty_fork" }, { - "id": "tempfile 3.12.0", + "id": "tempfile 3.15.0", "target": "tempfile" }, { @@ -51539,7 +51653,7 @@ "selects": {} }, "edition": "2018", - "version": "1.5.0" + "version": "1.6.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -51548,14 +51662,14 @@ ], "license_file": "LICENSE-APACHE" }, - "proptest-derive 0.5.0": { + "proptest-derive 0.5.1": { "name": "proptest-derive", - "version": "0.5.0", + "version": "0.5.1", "package_url": "https://github.com/proptest-rs/proptest", "repository": { "Http": { - "url": "https://static.crates.io/crates/proptest-derive/0.5.0/download", - "sha256": "6ff7ff745a347b87471d859a377a9a404361e7efc2a971d73424a6d183c0fc77" + "url": "https://static.crates.io/crates/proptest-derive/0.5.1/download", + "sha256": "4ee1c9ac207483d5e7db4940700de86a9aae46ef90c48b57f99fe7edb8345e49" } }, "targets": [ @@ -51580,22 +51694,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.5.0" + "version": "0.5.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -51604,14 +51718,14 @@ ], "license_file": "LICENSE-APACHE" }, - "prost 0.12.2": { + "prost 0.12.6": { "name": "prost", - "version": "0.12.2", + "version": "0.12.6", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost/0.12.2/download", - "sha256": "5a5a410fc7882af66deb8d01d01737353cf3ad6204c408177ba494291a626312" + "url": "https://static.crates.io/crates/prost/0.12.6/download", + "sha256": "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29" } }, "targets": [ @@ -51636,10 +51750,53 @@ "crate_features": { "common": [ "default", - "prost-derive", + "derive", "std" ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + "prost-derive" + ], + "aarch64-pc-windows-msvc": [ + "prost-derive" + ], + "aarch64-unknown-linux-gnu": [ + "prost-derive" + ], + "aarch64-unknown-nixos-gnu": [ + "prost-derive" + ], + "arm-unknown-linux-gnueabi": [ + "prost-derive" + ], + "i686-pc-windows-msvc": [ + "prost-derive" + ], + "i686-unknown-linux-gnu": [ + "prost-derive" + ], + "powerpc-unknown-linux-gnu": [ + "prost-derive" + ], + "s390x-unknown-linux-gnu": [ + "prost-derive" + ], + "x86_64-apple-darwin": [ + "prost-derive" + ], + "x86_64-pc-windows-msvc": [ + "prost-derive" + ], + "x86_64-unknown-freebsd": [ + "prost-derive" + ], + "x86_64-unknown-linux-gnu": [ + "prost-derive" + ], + "x86_64-unknown-nixos-gnu": [ + "prost-derive" + ] + } }, "deps": { "common": [ @@ -51654,28 +51811,28 @@ "proc_macro_deps": { "common": [ { - "id": "prost-derive 0.12.2", + "id": "prost-derive 0.12.6", "target": "prost_derive" } ], "selects": {} }, - "version": "0.12.2" + "version": "0.12.6" }, "license": "Apache-2.0", "license_ids": [ "Apache-2.0" ], - "license_file": "LICENSE" + "license_file": null }, - "prost 0.13.3": { + "prost 0.13.4": { "name": "prost", - "version": "0.13.3", + "version": "0.13.4", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost/0.13.3/download", - "sha256": "7b0487d90e047de87f984913713b85c601c05609aad5b0df4b4573fbf69aa13f" + "url": "https://static.crates.io/crates/prost/0.13.4/download", + "sha256": "2c0fef6c4230e4ccf618a35c59d7ede15dea37de8427500f50aff708806e42ec" } }, "targets": [ @@ -51719,121 +51876,13 @@ "proc_macro_deps": { "common": [ { - "id": "prost-derive 0.13.3", + "id": "prost-derive 0.13.4", "target": "prost_derive" } ], "selects": {} }, - "version": "0.13.3" - }, - "license": "Apache-2.0", - "license_ids": [ - "Apache-2.0" - ], - "license_file": "LICENSE" - }, - "prost-build 0.12.2": { - "name": "prost-build", - "version": "0.12.2", - "package_url": "https://github.com/tokio-rs/prost", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/prost-build/0.12.2/download", - "sha256": "1fa3d084c8704911bfefb2771be2f9b6c5c0da7343a71e0021ee3c665cada738" - } - }, - "targets": [ - { - "Library": { - "crate_name": "prost_build", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "prost_build", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "format", - "prettyplease", - "syn" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bytes 1.9.0", - "target": "bytes" - }, - { - "id": "heck 0.4.1", - "target": "heck" - }, - { - "id": "itertools 0.11.0", - "target": "itertools" - }, - { - "id": "log 0.4.20", - "target": "log" - }, - { - "id": "multimap 0.8.3", - "target": "multimap" - }, - { - "id": "once_cell 1.19.0", - "target": "once_cell" - }, - { - "id": "petgraph 0.6.3", - "target": "petgraph" - }, - { - "id": "prettyplease 0.2.15", - "target": "prettyplease" - }, - { - "id": "prost 0.12.2", - "target": "prost" - }, - { - "id": "prost-types 0.12.2", - "target": "prost_types" - }, - { - "id": "regex 1.11.0", - "target": "regex" - }, - { - "id": "syn 2.0.87", - "target": "syn" - }, - { - "id": "tempfile 3.12.0", - "target": "tempfile" - }, - { - "id": "which 4.4.0", - "target": "which" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.12.2" + "version": "0.13.4" }, "license": "Apache-2.0", "license_ids": [ @@ -51841,14 +51890,14 @@ ], "license_file": "LICENSE" }, - "prost-build 0.13.3": { + "prost-build 0.12.6": { "name": "prost-build", - "version": "0.13.3", + "version": "0.12.6", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-build/0.13.3/download", - "sha256": "0c1318b19085f08681016926435853bbf7858f9c082d0999b80550ff5d9abe15" + "url": "https://static.crates.io/crates/prost-build/0.12.6/download", + "sha256": "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4" } }, "targets": [ @@ -51888,54 +51937,54 @@ "target": "heck" }, { - "id": "itertools 0.12.0", + "id": "itertools 0.12.1", "target": "itertools" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "multimap 0.8.3", + "id": "multimap 0.10.0", "target": "multimap" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "petgraph 0.6.3", + "id": "petgraph 0.6.5", "target": "petgraph" }, { - "id": "prettyplease 0.2.15", + "id": "prettyplease 0.2.29", "target": "prettyplease" }, { - "id": "prost 0.13.3", + "id": "prost 0.12.6", "target": "prost" }, { - "id": "prost-types 0.13.3", + "id": "prost-types 0.12.6", "target": "prost_types" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" }, { - "id": "tempfile 3.12.0", + "id": "tempfile 3.15.0", "target": "tempfile" } ], "selects": {} }, "edition": "2021", - "version": "0.13.3" + "version": "0.12.6" }, "license": "Apache-2.0", "license_ids": [ @@ -51943,14 +51992,112 @@ ], "license_file": "LICENSE" }, - "prost-derive 0.12.2": { + "prost-build 0.13.4": { + "name": "prost-build", + "version": "0.13.4", + "package_url": "https://github.com/tokio-rs/prost", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/prost-build/0.13.4/download", + "sha256": "d0f3e5beed80eb580c68e2c600937ac2c4eedabdfd5ef1e5b7ea4f3fba84497b" + } + }, + "targets": [ + { + "Library": { + "crate_name": "prost_build", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "prost_build", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "format" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "heck 0.5.0", + "target": "heck" + }, + { + "id": "itertools 0.13.0", + "target": "itertools" + }, + { + "id": "log 0.4.25", + "target": "log" + }, + { + "id": "multimap 0.10.0", + "target": "multimap" + }, + { + "id": "once_cell 1.20.2", + "target": "once_cell" + }, + { + "id": "petgraph 0.6.5", + "target": "petgraph" + }, + { + "id": "prettyplease 0.2.29", + "target": "prettyplease" + }, + { + "id": "prost 0.13.4", + "target": "prost" + }, + { + "id": "prost-types 0.13.4", + "target": "prost_types" + }, + { + "id": "regex 1.11.1", + "target": "regex" + }, + { + "id": "syn 2.0.96", + "target": "syn" + }, + { + "id": "tempfile 3.15.0", + "target": "tempfile" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.13.4" + }, + "license": "Apache-2.0", + "license_ids": [ + "Apache-2.0" + ], + "license_file": "LICENSE" + }, + "prost-derive 0.12.6": { "name": "prost-derive", - "version": "0.12.2", + "version": "0.12.6", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-derive/0.12.2/download", - "sha256": "065717a5dfaca4a83d2fe57db3487b311365200000551d7a364e715dbf4346bc" + "url": "https://static.crates.io/crates/prost-derive/0.12.6/download", + "sha256": "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" } }, "targets": [ @@ -51975,30 +52122,30 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "itertools 0.11.0", + "id": "itertools 0.12.1", "target": "itertools" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.12.2" + "version": "0.12.6" }, "license": "Apache-2.0", "license_ids": [ @@ -52006,14 +52153,14 @@ ], "license_file": "LICENSE" }, - "prost-derive 0.13.3": { + "prost-derive 0.13.4": { "name": "prost-derive", - "version": "0.13.3", + "version": "0.13.4", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-derive/0.13.3/download", - "sha256": "e9552f850d5f0964a4e4d0bf306459ac29323ddfbae05e35a7c0d35cb0803cc5" + "url": "https://static.crates.io/crates/prost-derive/0.13.4/download", + "sha256": "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3" } }, "targets": [ @@ -52038,30 +52185,30 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "itertools 0.12.0", + "id": "itertools 0.13.0", "target": "itertools" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.13.3" + "version": "0.13.4" }, "license": "Apache-2.0", "license_ids": [ @@ -52069,14 +52216,14 @@ ], "license_file": "LICENSE" }, - "prost-types 0.12.2": { + "prost-types 0.12.6": { "name": "prost-types", - "version": "0.12.2", + "version": "0.12.6", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-types/0.12.2/download", - "sha256": "8339f32236f590281e2f6368276441394fcd1b2133b549cc895d0ae80f2f9a52" + "url": "https://static.crates.io/crates/prost-types/0.12.6/download", + "sha256": "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0" } }, "targets": [ @@ -52101,14 +52248,14 @@ "deps": { "common": [ { - "id": "prost 0.12.2", + "id": "prost 0.12.6", "target": "prost" } ], "selects": {} }, "edition": "2021", - "version": "0.12.2" + "version": "0.12.6" }, "license": "Apache-2.0", "license_ids": [ @@ -52116,14 +52263,14 @@ ], "license_file": "LICENSE" }, - "prost-types 0.13.3": { + "prost-types 0.13.4": { "name": "prost-types", - "version": "0.13.3", + "version": "0.13.4", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-types/0.13.3/download", - "sha256": "4759aa0d3a6232fb8dbdb97b61de2c20047c68aca932c7ed76da9d788508d670" + "url": "https://static.crates.io/crates/prost-types/0.13.4/download", + "sha256": "cc2f1e56baa61e93533aebc21af4d2134b70f66275e0fcdf3cbe43d77ff7e8fc" } }, "targets": [ @@ -52155,14 +52302,14 @@ "deps": { "common": [ { - "id": "prost 0.13.3", + "id": "prost 0.13.4", "target": "prost" } ], "selects": {} }, "edition": "2021", - "version": "0.13.3" + "version": "0.13.4" }, "license": "Apache-2.0", "license_ids": [ @@ -52276,14 +52423,14 @@ ], "license_file": "LICENSE" }, - "psm 0.1.21": { + "psm 0.1.24": { "name": "psm", - "version": "0.1.21", + "version": "0.1.24", "package_url": "https://github.com/rust-lang/stacker/", "repository": { "Http": { - "url": "https://static.crates.io/crates/psm/0.1.21/download", - "sha256": "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" + "url": "https://static.crates.io/crates/psm/0.1.24/download", + "sha256": "200b9ff220857e53e184257720a14553b2f4aa02577d2ed9842d45d4b9654810" } }, "targets": [ @@ -52320,14 +52467,14 @@ "deps": { "common": [ { - "id": "psm 0.1.21", + "id": "psm 0.1.24", "target": "build_script_build" } ], "selects": {} }, "edition": "2015", - "version": "0.1.21" + "version": "0.1.24" }, "build_script_attrs": { "compile_data_glob": [ @@ -52339,7 +52486,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -52432,11 +52579,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -52455,14 +52602,14 @@ ], "license_file": "LICENSE" }, - "publicsuffix 2.2.3": { + "publicsuffix 2.3.0": { "name": "publicsuffix", - "version": "2.2.3", + "version": "2.3.0", "package_url": "https://github.com/rushmorem/publicsuffix", "repository": { "Http": { - "url": "https://static.crates.io/crates/publicsuffix/2.2.3/download", - "sha256": "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457" + "url": "https://static.crates.io/crates/publicsuffix/2.3.0/download", + "sha256": "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf" } }, "targets": [ @@ -52495,7 +52642,7 @@ "deps": { "common": [ { - "id": "idna 0.3.0", + "id": "idna 1.0.3", "target": "idna" }, { @@ -52506,7 +52653,7 @@ "selects": {} }, "edition": "2018", - "version": "2.2.3" + "version": "2.3.0" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -52515,14 +52662,14 @@ ], "license_file": "LICENSE" }, - "pulley-interpreter 28.0.0": { + "pulley-interpreter 28.0.1": { "name": "pulley-interpreter", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime/tree/main/pulley", "repository": { "Http": { - "url": "https://static.crates.io/crates/pulley-interpreter/28.0.0/download", - "sha256": "403a1a95f4c18a45c86c7bff13df00347afd0abcbf2e54af273c837339ffcf77" + "url": "https://static.crates.io/crates/pulley-interpreter/28.0.1/download", + "sha256": "8324e531de91a3c25021a30fb7862d39cc516b61fbb801176acb5ff279ea887b" } }, "targets": [ @@ -52547,11 +52694,11 @@ "deps": { "common": [ { - "id": "cranelift-bitset 0.115.0", + "id": "cranelift-bitset 0.115.1", "target": "cranelift_bitset" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -52562,7 +52709,7 @@ "selects": {} }, "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -52570,121 +52717,14 @@ ], "license_file": null }, - "quanta 0.11.1": { - "name": "quanta", - "version": "0.11.1", - "package_url": "https://github.com/metrics-rs/quanta", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/quanta/0.11.1/download", - "sha256": "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab" - } - }, - "targets": [ - { - "Library": { - "crate_name": "quanta", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "quanta", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "flaky_tests" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "crossbeam-utils 0.8.19", - "target": "crossbeam_utils" - }, - { - "id": "once_cell 1.19.0", - "target": "once_cell" - } - ], - "selects": { - "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [ - { - "id": "web-sys 0.3.64", - "target": "web_sys" - } - ], - "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\"))": [ - { - "id": "wasi 0.11.0+wasi-snapshot-preview1", - "target": "wasi" - } - ], - "cfg(not(any(target_os = \"macos\", target_os = \"ios\", target_os = \"windows\", target_arch = \"wasm32\")))": [ - { - "id": "libc 0.2.158", - "target": "libc" - } - ], - "cfg(target_arch = \"x86\")": [ - { - "id": "raw-cpuid 10.7.0", - "target": "raw_cpuid" - } - ], - "cfg(target_arch = \"x86_64\")": [ - { - "id": "raw-cpuid 10.7.0", - "target": "raw_cpuid" - } - ], - "cfg(target_os = \"ios\")": [ - { - "id": "mach2 0.4.2", - "target": "mach2" - } - ], - "cfg(target_os = \"macos\")": [ - { - "id": "mach2 0.4.2", - "target": "mach2" - } - ], - "cfg(target_os = \"windows\")": [ - { - "id": "winapi 0.3.9", - "target": "winapi" - } - ] - } - }, - "edition": "2021", - "version": "0.11.1" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "quanta 0.12.3": { + "quanta 0.12.5": { "name": "quanta", - "version": "0.12.3", + "version": "0.12.5", "package_url": "https://github.com/metrics-rs/quanta", "repository": { "Http": { - "url": "https://static.crates.io/crates/quanta/0.12.3/download", - "sha256": "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5" + "url": "https://static.crates.io/crates/quanta/0.12.5/download", + "sha256": "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e" } }, "targets": [ @@ -52716,18 +52756,18 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "selects": { "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [ { - "id": "web-sys 0.3.64", + "id": "web-sys 0.3.77", "target": "web_sys" } ], @@ -52739,19 +52779,19 @@ ], "cfg(not(any(target_os = \"windows\", target_arch = \"wasm32\")))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(target_arch = \"x86\")": [ { - "id": "raw-cpuid 11.1.0", + "id": "raw-cpuid 11.3.0", "target": "raw_cpuid" } ], "cfg(target_arch = \"x86_64\")": [ { - "id": "raw-cpuid 11.1.0", + "id": "raw-cpuid 11.3.0", "target": "raw_cpuid" } ], @@ -52764,7 +52804,7 @@ } }, "edition": "2021", - "version": "0.12.3" + "version": "0.12.5" }, "license": "MIT", "license_ids": [ @@ -52858,14 +52898,14 @@ ], "license_file": "LICENSE-MIT.md" }, - "quick-xml 0.37.1": { + "quick-xml 0.37.2": { "name": "quick-xml", - "version": "0.37.1", + "version": "0.37.2", "package_url": "https://github.com/tafia/quick-xml", "repository": { "Http": { - "url": "https://static.crates.io/crates/quick-xml/0.37.1/download", - "sha256": "f22f29bdff3987b4d8632ef95fd6424ec7e4e0a57e2f4fc63e489e75357f6a03" + "url": "https://static.crates.io/crates/quick-xml/0.37.2/download", + "sha256": "165859e9e55f79d67b96c5d96f4e88b6f2695a1972849c15a6a3f5c59fc2c003" } }, "targets": [ @@ -52897,7 +52937,7 @@ "selects": {} }, "edition": "2021", - "version": "0.37.1" + "version": "0.37.2" }, "license": "MIT", "license_ids": [ @@ -52951,7 +52991,7 @@ "target": "env_logger" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -52971,14 +53011,14 @@ ], "license_file": "LICENSE-MIT" }, - "quinn 0.11.5": { + "quinn 0.11.6": { "name": "quinn", - "version": "0.11.5", + "version": "0.11.6", "package_url": "https://github.com/quinn-rs/quinn", "repository": { "Http": { - "url": "https://static.crates.io/crates/quinn/0.11.5/download", - "sha256": "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684" + "url": "https://static.crates.io/crates/quinn/0.11.6/download", + "sha256": "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef" } }, "targets": [ @@ -53005,7 +53045,8 @@ "log", "ring", "runtime-tokio", - "rustls" + "rustls", + "rustls-ring" ], "selects": {} }, @@ -53016,37 +53057,37 @@ "target": "bytes" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "quinn-proto 0.11.7", + "id": "quinn-proto 0.11.9", "target": "quinn_proto", "alias": "proto" }, { - "id": "quinn-udp 0.5.5", + "id": "quinn-udp 0.5.9", "target": "quinn_udp", "alias": "udp" }, { - "id": "rustc-hash 2.0.0", + "id": "rustc-hash 2.1.0", "target": "rustc_hash" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 2.0.11", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -53057,7 +53098,7 @@ "selects": {} }, "edition": "2021", - "version": "0.11.5" + "version": "0.11.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53066,14 +53107,14 @@ ], "license_file": "LICENSE-APACHE" }, - "quinn-proto 0.11.7": { + "quinn-proto 0.11.9": { "name": "quinn-proto", - "version": "0.11.7", + "version": "0.11.9", "package_url": "https://github.com/quinn-rs/quinn", "repository": { "Http": { - "url": "https://static.crates.io/crates/quinn-proto/0.11.7/download", - "sha256": "ea0a9b3a42929fad8a7c3de7f86ce0814cfa893328157672680e9fb1145549c5" + "url": "https://static.crates.io/crates/quinn-proto/0.11.9/download", + "sha256": "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d" } }, "targets": [ @@ -53099,7 +53140,7 @@ "common": [ "log", "ring", - "rustls" + "rustls-ring" ], "selects": {} }, @@ -53114,27 +53155,27 @@ "target": "rand" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { - "id": "rustc-hash 2.0.0", + "id": "rustc-hash 2.1.0", "target": "rustc_hash" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "slab 0.4.8", + "id": "slab 0.4.9", "target": "slab" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 2.0.11", "target": "thiserror" }, { - "id": "tinyvec 1.6.0", + "id": "tinyvec 1.8.1", "target": "tinyvec" }, { @@ -53142,10 +53183,25 @@ "target": "tracing" } ], - "selects": {} + "selects": { + "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + }, + { + "id": "rustls-pki-types 1.10.1", + "target": "rustls_pki_types" + }, + { + "id": "web-time 1.1.0", + "target": "web_time" + } + ] + } }, "edition": "2021", - "version": "0.11.7" + "version": "0.11.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53154,14 +53210,14 @@ ], "license_file": "LICENSE-APACHE" }, - "quinn-udp 0.5.5": { + "quinn-udp 0.5.9": { "name": "quinn-udp", - "version": "0.5.5", + "version": "0.5.9", "package_url": "https://github.com/quinn-rs/quinn", "repository": { "Http": { - "url": "https://static.crates.io/crates/quinn-udp/0.5.5/download", - "sha256": "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b" + "url": "https://static.crates.io/crates/quinn-udp/0.5.9/download", + "sha256": "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904" } }, "targets": [ @@ -53176,6 +53232,18 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], "library_target_name": "quinn_udp", @@ -53194,11 +53262,15 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "socket2 0.5.7", + "id": "quinn-udp 0.5.9", + "target": "build_script_build" + }, + { + "id": "socket2 0.5.8", "target": "socket2" }, { @@ -53209,7 +53281,7 @@ "selects": { "cfg(windows)": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -53220,7 +53292,24 @@ } }, "edition": "2021", - "version": "0.5.5" + "version": "0.5.9" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "cfg_aliases 0.2.1", + "target": "cfg_aliases" + } + ], + "selects": {} + } }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53229,14 +53318,14 @@ ], "license_file": "LICENSE-APACHE" }, - "quote 1.0.37": { + "quote 1.0.38": { "name": "quote", - "version": "1.0.37", + "version": "1.0.38", "package_url": "https://github.com/dtolnay/quote", "repository": { "Http": { - "url": "https://static.crates.io/crates/quote/1.0.37/download", - "sha256": "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" + "url": "https://static.crates.io/crates/quote/1.0.38/download", + "sha256": "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" } }, "targets": [ @@ -53268,14 +53357,14 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" } ], "selects": {} }, "edition": "2018", - "version": "1.0.37" + "version": "1.0.38" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53442,7 +53531,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -53537,145 +53626,145 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-apple-ios": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-apple-ios-sim": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-unknown-fuchsia": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "arm-unknown-linux-gnueabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "armv7-linux-androideabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-unknown-freebsd": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "powerpc-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "s390x-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-apple-ios": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-unknown-freebsd": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-unknown-fuchsia": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] @@ -53811,7 +53900,7 @@ "deps": { "common": [ { - "id": "ppv-lite86 0.2.17", + "id": "ppv-lite86 0.2.20", "target": "ppv_lite86" }, { @@ -53965,7 +54054,7 @@ "deps": { "common": [ { - "id": "getrandom 0.2.10", + "id": "getrandom 0.2.15", "target": "getrandom" } ], @@ -54182,7 +54271,7 @@ "selects": { "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -54261,7 +54350,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -54508,14 +54597,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rangemap 1.4.0": { + "rangemap 1.5.1": { "name": "rangemap", - "version": "1.4.0", + "version": "1.5.1", "package_url": "https://github.com/jeffparsons/rangemap", "repository": { "Http": { - "url": "https://static.crates.io/crates/rangemap/1.4.0/download", - "sha256": "977b1e897f9d764566891689e642653e5ed90c6895106acd005eb4c1d0203991" + "url": "https://static.crates.io/crates/rangemap/1.5.1/download", + "sha256": "f60fcc7d6849342eff22c4350c8b9a989ee8ceabc4b481253e8946b9fe83d684" } }, "targets": [ @@ -54538,7 +54627,7 @@ "**" ], "edition": "2018", - "version": "1.4.0" + "version": "1.5.1" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -54583,11 +54672,11 @@ "target": "clocksource" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -54603,61 +54692,14 @@ ], "license_file": "LICENSE-APACHE" }, - "raw-cpuid 10.7.0": { - "name": "raw-cpuid", - "version": "10.7.0", - "package_url": "https://github.com/gz/rust-cpuid", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/raw-cpuid/10.7.0/download", - "sha256": "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" - } - }, - "targets": [ - { - "Library": { - "crate_name": "raw_cpuid", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "raw_cpuid", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bitflags 1.3.2", - "target": "bitflags" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "10.7.0" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE.md" - }, - "raw-cpuid 11.1.0": { + "raw-cpuid 11.3.0": { "name": "raw-cpuid", - "version": "11.1.0", + "version": "11.3.0", "package_url": "https://github.com/gz/rust-cpuid", "repository": { "Http": { - "url": "https://static.crates.io/crates/raw-cpuid/11.1.0/download", - "sha256": "cb9ee317cfe3fbd54b36a511efc1edd42e216903c9cd575e686dd68a2ba90d8d" + "url": "https://static.crates.io/crates/raw-cpuid/11.3.0/download", + "sha256": "c6928fa44c097620b706542d428957635951bade7143269085389d42c8a4927e" } }, "targets": [ @@ -54682,14 +54724,14 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" } ], "selects": {} }, "edition": "2018", - "version": "11.1.0" + "version": "11.3.0" }, "license": "MIT", "license_ids": [ @@ -54729,7 +54771,7 @@ "deps": { "common": [ { - "id": "either 1.8.1", + "id": "either 1.13.0", "target": "either" }, { @@ -54793,11 +54835,11 @@ "deps": { "common": [ { - "id": "crossbeam-deque 0.8.5", + "id": "crossbeam-deque 0.8.6", "target": "crossbeam_deque" }, { - "id": "crossbeam-utils 0.8.19", + "id": "crossbeam-utils 0.8.21", "target": "crossbeam_utils" }, { @@ -54826,14 +54868,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rcgen 0.13.1": { + "rcgen 0.13.2": { "name": "rcgen", - "version": "0.13.1", + "version": "0.13.2", "package_url": "https://github.com/rustls/rcgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/rcgen/0.13.1/download", - "sha256": "54077e1872c46788540de1ea3d7f4ccb1983d12f9aa909b234468676c1a36779" + "url": "https://static.crates.io/crates/rcgen/0.13.2/download", + "sha256": "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" } }, "targets": [ @@ -54868,20 +54910,20 @@ "deps": { "common": [ { - "id": "pem 3.0.3", + "id": "pem 3.0.4", "target": "pem" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" }, { @@ -54896,7 +54938,7 @@ "selects": {} }, "edition": "2021", - "version": "0.13.1" + "version": "0.13.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -54999,14 +55041,14 @@ ], "license_file": "LICENSE" }, - "redox_syscall 0.3.5": { + "redox_syscall 0.5.8": { "name": "redox_syscall", - "version": "0.3.5", + "version": "0.5.8", "package_url": "https://gitlab.redox-os.org/redox-os/syscall", "repository": { "Http": { - "url": "https://static.crates.io/crates/redox_syscall/0.3.5/download", - "sha256": "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" + "url": "https://static.crates.io/crates/redox_syscall/0.5.8/download", + "sha256": "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" } }, "targets": [ @@ -55031,14 +55073,14 @@ "deps": { "common": [ { - "id": "bitflags 1.3.2", + "id": "bitflags 2.8.0", "target": "bitflags" } ], "selects": {} }, - "edition": "2018", - "version": "0.3.5" + "edition": "2021", + "version": "0.5.8" }, "license": "MIT", "license_ids": [ @@ -55046,14 +55088,14 @@ ], "license_file": "LICENSE" }, - "redox_users 0.4.3": { + "redox_users 0.4.6": { "name": "redox_users", - "version": "0.4.3", + "version": "0.4.6", "package_url": "https://gitlab.redox-os.org/redox-os/users", "repository": { "Http": { - "url": "https://static.crates.io/crates/redox_users/0.4.3/download", - "sha256": "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" + "url": "https://static.crates.io/crates/redox_users/0.4.6/download", + "sha256": "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" } }, "targets": [ @@ -55078,22 +55120,22 @@ "deps": { "common": [ { - "id": "getrandom 0.2.10", + "id": "getrandom 0.2.15", "target": "getrandom" }, { - "id": "redox_syscall 0.2.16", - "target": "syscall" + "id": "libredox 0.1.3", + "target": "libredox" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], "selects": {} }, - "edition": "2018", - "version": "0.4.3" + "edition": "2021", + "version": "0.4.6" }, "license": "MIT", "license_ids": [ @@ -55153,11 +55195,11 @@ "target": "hashbrown" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "rustc-hash 2.0.0", + "id": "rustc-hash 2.1.0", "target": "rustc_hash" }, { @@ -55176,14 +55218,14 @@ ], "license_file": "LICENSE" }, - "regex 1.11.0": { + "regex 1.11.1": { "name": "regex", - "version": "1.11.0", + "version": "1.11.1", "package_url": "https://github.com/rust-lang/regex", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex/1.11.0/download", - "sha256": "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" + "url": "https://static.crates.io/crates/regex/1.11.1/download", + "sha256": "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" } }, "targets": [ @@ -55230,7 +55272,7 @@ "deps": { "common": [ { - "id": "aho-corasick 1.0.2", + "id": "aho-corasick 1.1.3", "target": "aho_corasick" }, { @@ -55238,7 +55280,7 @@ "target": "memchr" }, { - "id": "regex-automata 0.4.8", + "id": "regex-automata 0.4.9", "target": "regex_automata" }, { @@ -55249,7 +55291,7 @@ "selects": {} }, "edition": "2021", - "version": "1.11.0" + "version": "1.11.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -55314,59 +55356,14 @@ ], "license_file": "LICENSE-MIT" }, - "regex-automata 0.3.3": { - "name": "regex-automata", - "version": "0.3.3", - "package_url": "https://github.com/rust-lang/regex/tree/master/regex-automata", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/regex-automata/0.3.3/download", - "sha256": "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310" - } - }, - "targets": [ - { - "Library": { - "crate_name": "regex_automata", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "regex_automata", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "dfa-search" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.3.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "regex-automata 0.4.8": { + "regex-automata 0.4.9": { "name": "regex-automata", - "version": "0.4.8", + "version": "0.4.9", "package_url": "https://github.com/rust-lang/regex/tree/master/regex-automata", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex-automata/0.4.8/download", - "sha256": "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" + "url": "https://static.crates.io/crates/regex-automata/0.4.9/download", + "sha256": "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" } }, "targets": [ @@ -55392,6 +55389,7 @@ "common": [ "alloc", "dfa-onepass", + "dfa-search", "hybrid", "meta", "nfa-backtrack", @@ -55413,12 +55411,55 @@ "unicode-segment", "unicode-word-boundary" ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + "perf" + ], + "aarch64-pc-windows-msvc": [ + "perf" + ], + "aarch64-unknown-linux-gnu": [ + "perf" + ], + "aarch64-unknown-nixos-gnu": [ + "perf" + ], + "arm-unknown-linux-gnueabi": [ + "perf" + ], + "i686-pc-windows-msvc": [ + "perf" + ], + "i686-unknown-linux-gnu": [ + "perf" + ], + "powerpc-unknown-linux-gnu": [ + "perf" + ], + "s390x-unknown-linux-gnu": [ + "perf" + ], + "x86_64-apple-darwin": [ + "perf" + ], + "x86_64-pc-windows-msvc": [ + "perf" + ], + "x86_64-unknown-freebsd": [ + "perf" + ], + "x86_64-unknown-linux-gnu": [ + "perf" + ], + "x86_64-unknown-nixos-gnu": [ + "perf" + ] + } }, "deps": { "common": [ { - "id": "aho-corasick 1.0.2", + "id": "aho-corasick 1.1.3", "target": "aho_corasick" }, { @@ -55433,7 +55474,7 @@ "selects": {} }, "edition": "2021", - "version": "0.4.8" + "version": "0.4.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -55542,14 +55583,14 @@ ], "license_file": "LICENSE-APACHE" }, - "regex-syntax 0.7.4": { + "regex-syntax 0.7.5": { "name": "regex-syntax", - "version": "0.7.4", + "version": "0.7.5", "package_url": "https://github.com/rust-lang/regex/tree/master/regex-syntax", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex-syntax/0.7.4/download", - "sha256": "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" + "url": "https://static.crates.io/crates/regex-syntax/0.7.5/download", + "sha256": "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" } }, "targets": [ @@ -55587,7 +55628,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.4" + "version": "0.7.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -55695,14 +55736,14 @@ ], "license_file": null }, - "rend 0.4.0": { + "rend 0.4.2": { "name": "rend", - "version": "0.4.0", + "version": "0.4.2", "package_url": "https://github.com/djkoloski/rend", "repository": { "Http": { - "url": "https://static.crates.io/crates/rend/0.4.0/download", - "sha256": "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab" + "url": "https://static.crates.io/crates/rend/0.4.2/download", + "sha256": "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" } }, "targets": [ @@ -55739,14 +55780,14 @@ "deps": { "common": [ { - "id": "rend 0.4.0", + "id": "rend 0.4.2", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.4.0" + "version": "0.4.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -55815,7 +55856,7 @@ "deps": { "common": [ { - "id": "base64 0.21.6", + "id": "base64 0.21.7", "target": "base64" }, { @@ -55839,7 +55880,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -55855,14 +55896,14 @@ "target": "tower_service" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -55874,7 +55915,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -55886,13 +55927,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "aarch64-apple-ios": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -55904,7 +55945,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -55916,13 +55957,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "aarch64-apple-ios-sim": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -55934,7 +55975,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -55946,13 +55987,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "aarch64-linux-android": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -55964,7 +56005,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -55976,13 +56017,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "aarch64-pc-windows-msvc": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -55994,7 +56035,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56006,13 +56047,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "aarch64-unknown-fuchsia": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56024,7 +56065,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56036,13 +56077,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "aarch64-unknown-linux-gnu": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56054,7 +56095,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56066,13 +56107,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56084,7 +56125,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56096,13 +56137,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56114,7 +56155,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56126,13 +56167,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "arm-unknown-linux-gnueabi": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56144,7 +56185,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56156,13 +56197,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "armv7-linux-androideabi": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56174,7 +56215,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56186,13 +56227,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56204,7 +56245,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56216,13 +56257,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "cfg(not(target_arch = \"wasm32\"))": [ { - "id": "encoding_rs 0.8.32", + "id": "encoding_rs 0.8.35", "target": "encoding_rs" }, { @@ -56234,7 +56275,7 @@ "target": "http_body" }, { - "id": "hyper 0.14.27", + "id": "hyper 0.14.32", "target": "hyper" }, { @@ -56242,7 +56283,7 @@ "target": "ipnet" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -56250,7 +56291,7 @@ "target": "mime" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -56258,29 +56299,29 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" }, { - "id": "wasm-bindgen-futures 0.4.37", + "id": "wasm-bindgen-futures 0.4.50", "target": "wasm_bindgen_futures" }, { - "id": "web-sys 0.3.64", + "id": "web-sys 0.3.77", "target": "web_sys" } ], @@ -56298,7 +56339,7 @@ ], "i686-apple-darwin": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56310,7 +56351,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56322,13 +56363,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "i686-linux-android": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56340,7 +56381,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56352,13 +56393,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "i686-pc-windows-msvc": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56370,7 +56411,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56382,13 +56423,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "i686-unknown-freebsd": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56400,7 +56441,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56412,13 +56453,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "i686-unknown-linux-gnu": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56430,7 +56471,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56442,13 +56483,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "powerpc-unknown-linux-gnu": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56460,7 +56501,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56472,13 +56513,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "riscv32imc-unknown-none-elf": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56490,7 +56531,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56502,13 +56543,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "riscv64gc-unknown-none-elf": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56520,7 +56561,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56532,13 +56573,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "s390x-unknown-linux-gnu": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56550,7 +56591,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56562,13 +56603,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "thumbv7em-none-eabi": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56580,7 +56621,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56592,13 +56633,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "thumbv8m.main-none-eabi": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56610,7 +56651,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56622,13 +56663,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-apple-darwin": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56640,7 +56681,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56652,13 +56693,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-apple-ios": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56670,7 +56711,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56682,13 +56723,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-linux-android": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56700,7 +56741,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56712,13 +56753,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-pc-windows-msvc": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56730,7 +56771,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56742,13 +56783,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-unknown-freebsd": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56760,7 +56801,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56772,13 +56813,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-unknown-fuchsia": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56790,7 +56831,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56802,13 +56843,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-unknown-linux-gnu": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56820,7 +56861,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56832,13 +56873,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56850,7 +56891,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56862,13 +56903,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ], "x86_64-unknown-none": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { @@ -56880,7 +56921,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" }, { @@ -56892,7 +56933,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.2", + "id": "webpki-roots 0.25.4", "target": "webpki_roots" } ] @@ -56908,14 +56949,14 @@ ], "license_file": "LICENSE-APACHE" }, - "reqwest 0.12.9": { + "reqwest 0.12.12": { "name": "reqwest", - "version": "0.12.9", + "version": "0.12.12", "package_url": "https://github.com/seanmonstar/reqwest", "repository": { "Http": { - "url": "https://static.crates.io/crates/reqwest/0.12.9/download", - "sha256": "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" + "url": "https://static.crates.io/crates/reqwest/0.12.12/download", + "sha256": "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" } }, "targets": [ @@ -56981,7 +57022,7 @@ "target": "http" }, { - "id": "mime_guess 2.0.4", + "id": "mime_guess 2.0.5", "target": "mime_guess" }, { @@ -56989,7 +57030,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -56997,7 +57038,7 @@ "target": "serde_urlencoded" }, { - "id": "sync_wrapper 1.0.1", + "id": "sync_wrapper 1.0.2", "target": "sync_wrapper" }, { @@ -57005,7 +57046,7 @@ "target": "tower_service" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" } ], @@ -57016,23 +57057,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57040,11 +57081,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57056,7 +57097,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57066,23 +57107,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57090,11 +57131,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57106,7 +57147,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57116,23 +57157,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57140,11 +57181,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57156,7 +57197,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57166,23 +57207,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57190,11 +57231,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57206,7 +57247,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57216,23 +57257,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57240,11 +57281,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57256,7 +57297,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57266,23 +57307,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57290,11 +57331,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57306,7 +57347,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57316,23 +57357,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57340,11 +57381,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57356,7 +57397,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57366,23 +57407,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57390,11 +57431,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57406,7 +57447,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57416,23 +57457,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57440,11 +57481,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57456,7 +57497,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57466,23 +57507,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57490,11 +57531,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57506,7 +57547,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57516,23 +57557,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57540,11 +57581,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57556,7 +57597,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57566,23 +57607,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57590,11 +57631,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57606,7 +57647,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57620,7 +57661,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { @@ -57632,7 +57673,7 @@ "target": "ipnet" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -57640,7 +57681,7 @@ "target": "mime" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -57648,29 +57689,33 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" + }, + { + "id": "tower 0.5.2", + "target": "tower" } ], "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" }, { - "id": "wasm-bindgen-futures 0.4.37", + "id": "wasm-bindgen-futures 0.4.50", "target": "wasm_bindgen_futures" }, { - "id": "web-sys 0.3.64", + "id": "web-sys 0.3.77", "target": "web_sys" } ], @@ -57686,23 +57731,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57710,11 +57755,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57726,7 +57771,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57736,23 +57781,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57760,11 +57805,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57776,7 +57821,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57786,23 +57831,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57810,11 +57855,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57826,7 +57871,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57836,23 +57881,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57860,11 +57905,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57876,7 +57921,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57886,23 +57931,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57910,11 +57955,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57926,7 +57971,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57936,23 +57981,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -57960,11 +58005,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -57976,7 +58021,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -57986,23 +58031,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58010,11 +58055,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58026,7 +58071,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58036,23 +58081,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58060,11 +58105,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58076,7 +58121,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58086,23 +58131,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58110,11 +58155,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58126,7 +58171,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58136,23 +58181,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58160,11 +58205,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58176,7 +58221,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58186,23 +58231,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58210,11 +58255,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58226,25 +58271,19 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], "wasm32-unknown-unknown": [ { - "id": "wasm-streams 0.4.0", - "target": "wasm_streams" - } - ], - "wasm32-wasi": [ - { - "id": "wasm-streams 0.4.0", + "id": "wasm-streams 0.4.2", "target": "wasm_streams" } ], "wasm32-wasip1": [ { - "id": "wasm-streams 0.4.0", + "id": "wasm-streams 0.4.2", "target": "wasm_streams" } ], @@ -58254,23 +58293,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58278,11 +58317,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58294,7 +58333,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58304,23 +58343,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58328,11 +58367,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58344,7 +58383,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58354,23 +58393,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58378,11 +58417,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58394,7 +58433,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58404,23 +58443,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58428,11 +58467,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58444,7 +58483,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58454,23 +58493,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58478,11 +58517,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58494,7 +58533,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58504,23 +58543,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58528,11 +58567,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58544,7 +58583,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58554,23 +58593,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58578,11 +58617,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58594,7 +58633,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58604,23 +58643,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58628,11 +58667,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58644,7 +58683,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ], @@ -58654,23 +58693,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { - "id": "hickory-resolver 0.24.1", + "id": "hickory-resolver 0.24.2", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.3", + "id": "hyper-rustls 0.27.5", "target": "hyper_rustls" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.0", + "id": "rustls-native-certs 0.8.1", "target": "rustls_native_certs" }, { @@ -58678,11 +58717,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.0", + "id": "tokio-rustls 0.26.1", "target": "tokio_rustls" }, { @@ -58694,14 +58733,14 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" } ] } }, "edition": "2021", - "version": "0.12.9" + "version": "0.12.12" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -58821,14 +58860,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rgb 0.8.37": { + "rgb 0.8.50": { "name": "rgb", - "version": "0.8.37", + "version": "0.8.50", "package_url": "https://github.com/kornelski/rust-rgb", "repository": { "Http": { - "url": "https://static.crates.io/crates/rgb/0.8.37/download", - "sha256": "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8" + "url": "https://static.crates.io/crates/rgb/0.8.50/download", + "sha256": "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a" } }, "targets": [ @@ -58852,23 +58891,25 @@ ], "crate_features": { "common": [ + "argb", "as-bytes", "bytemuck", - "default" + "default", + "grb" ], "selects": {} }, "deps": { "common": [ { - "id": "bytemuck 1.13.1", + "id": "bytemuck 1.21.0", "target": "bytemuck" } ], "selects": {} }, - "edition": "2018", - "version": "0.8.37" + "edition": "2021", + "version": "0.8.50" }, "license": "MIT", "license_ids": [ @@ -58941,43 +58982,43 @@ "selects": { "aarch64-linux-android": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "aarch64-unknown-linux-gnu": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "arm-unknown-linux-gnueabi": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "armv7-linux-androideabi": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\", target_env = \"\"))": [ { - "id": "web-sys 0.3.64", + "id": "web-sys 0.3.77", "target": "web_sys" } ], @@ -58989,13 +59030,13 @@ ], "cfg(any(target_os = \"android\", target_os = \"linux\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"illumos\", target_os = \"netbsd\", target_os = \"openbsd\", target_os = \"solaris\"))": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], @@ -59007,55 +59048,55 @@ ], "i686-linux-android": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "i686-unknown-freebsd": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "i686-unknown-linux-gnu": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "powerpc-unknown-linux-gnu": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "s390x-unknown-linux-gnu": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "x86_64-linux-android": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "x86_64-unknown-freebsd": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "x86_64-unknown-linux-gnu": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ] @@ -59074,7 +59115,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -59092,14 +59133,14 @@ "license_ids": [], "license_file": "LICENSE" }, - "ring 0.17.7": { + "ring 0.17.8": { "name": "ring", - "version": "0.17.7", + "version": "0.17.8", "package_url": "https://github.com/briansmith/ring", "repository": { "Http": { - "url": "https://static.crates.io/crates/ring/0.17.7/download", - "sha256": "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" + "url": "https://static.crates.io/crates/ring/0.17.8/download", + "sha256": "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" } }, "targets": [ @@ -59140,16 +59181,24 @@ "dev_urandom_fallback", "std" ], - "selects": {} + "selects": { + "wasm32-unknown-unknown": [ + "wasm32_unknown_unknown_js" + ] + } }, "deps": { "common": [ { - "id": "getrandom 0.2.10", + "id": "cfg-if 1.0.0", + "target": "cfg_if" + }, + { + "id": "getrandom 0.2.15", "target": "getrandom" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "build_script_build" }, { @@ -59160,13 +59209,13 @@ "selects": { "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(target_arch = \"aarch64\", target_arch = \"arm\")))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_os = \"windows\"))": [ { - "id": "windows-sys 0.48.0", + "id": "windows-sys 0.52.0", "target": "windows_sys" } ], @@ -59179,7 +59228,7 @@ } }, "edition": "2021", - "version": "0.17.7" + "version": "0.17.8" }, "build_script_attrs": { "compile_data_glob": [ @@ -59191,7 +59240,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -59203,7 +59252,7 @@ }, "selects": {} }, - "links": "ring_core_0_17_7" + "links": "ring_core_0_17_8" }, "license": null, "license_ids": [], @@ -59264,14 +59313,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rkyv 0.7.42": { + "rkyv 0.7.45": { "name": "rkyv", - "version": "0.7.42", + "version": "0.7.45", "package_url": "https://github.com/rkyv/rkyv", "repository": { "Http": { - "url": "https://static.crates.io/crates/rkyv/0.7.42/download", - "sha256": "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58" + "url": "https://static.crates.io/crates/rkyv/0.7.45/download", + "sha256": "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" } }, "targets": [ @@ -59312,7 +59361,7 @@ "target": "ptr_meta" }, { - "id": "rkyv 0.7.42", + "id": "rkyv 0.7.45", "target": "build_script_build" }, { @@ -59326,13 +59375,13 @@ "proc_macro_deps": { "common": [ { - "id": "rkyv_derive 0.7.42", + "id": "rkyv_derive 0.7.45", "target": "rkyv_derive" } ], "selects": {} }, - "version": "0.7.42" + "version": "0.7.45" }, "build_script_attrs": { "compile_data_glob": [ @@ -59348,14 +59397,14 @@ ], "license_file": "LICENSE" }, - "rkyv_derive 0.7.42": { + "rkyv_derive 0.7.45": { "name": "rkyv_derive", - "version": "0.7.42", + "version": "0.7.45", "package_url": "https://github.com/rkyv/rkyv", "repository": { "Http": { - "url": "https://static.crates.io/crates/rkyv_derive/0.7.42/download", - "sha256": "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d" + "url": "https://static.crates.io/crates/rkyv_derive/0.7.45/download", + "sha256": "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" } }, "targets": [ @@ -59380,11 +59429,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -59395,7 +59444,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.42" + "version": "0.7.45" }, "license": "MIT", "license_ids": [ @@ -59544,11 +59593,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -59600,7 +59649,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -59651,7 +59700,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" } ], @@ -59667,14 +59716,14 @@ ], "license_file": "LICENSE" }, - "rsa 0.9.6": { + "rsa 0.9.7": { "name": "rsa", - "version": "0.9.6", + "version": "0.9.7", "package_url": "https://github.com/RustCrypto/RSA", "repository": { "Http": { - "url": "https://static.crates.io/crates/rsa/0.9.6/download", - "sha256": "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" + "url": "https://static.crates.io/crates/rsa/0.9.7/download", + "sha256": "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519" } }, "targets": [ @@ -59709,7 +59758,7 @@ "deps": { "common": [ { - "id": "const-oid 0.9.4", + "id": "const-oid 0.9.6", "target": "const_oid" }, { @@ -59765,7 +59814,7 @@ "selects": {} }, "edition": "2021", - "version": "0.9.6" + "version": "0.9.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -59817,7 +59866,7 @@ "target": "futures" }, { - "id": "futures-timer 3.0.2", + "id": "futures-timer 3.0.3", "target": "futures_timer" } ], @@ -59896,19 +59945,19 @@ "target": "cfg_if" }, { - "id": "glob 0.3.1", + "id": "glob 0.3.2", "target": "glob" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -59920,11 +59969,11 @@ "target": "build_script_build" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" }, { - "id": "unicode-ident 1.0.11", + "id": "unicode-ident 1.0.14", "target": "unicode_ident" } ], @@ -59943,7 +59992,7 @@ "deps": { "common": [ { - "id": "rustc_version 0.4.0", + "id": "rustc_version 0.4.1", "target": "rustc_version" } ], @@ -59957,14 +60006,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rusb 0.9.3": { + "rusb 0.9.4": { "name": "rusb", - "version": "0.9.3", + "version": "0.9.4", "package_url": "https://github.com/a1ien/rusb.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/rusb/0.9.3/download", - "sha256": "45fff149b6033f25e825cbb7b2c625a11ee8e6dac09264d49beb125e39aa97bf" + "url": "https://static.crates.io/crates/rusb/0.9.4/download", + "sha256": "ab9f9ff05b63a786553a4c02943b74b34a988448671001e9a27e2f0565cc05a4" } }, "targets": [ @@ -60001,22 +60050,22 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "libusb1-sys 0.6.4", + "id": "libusb1-sys 0.7.0", "target": "libusb1_sys" }, { - "id": "rusb 0.9.3", + "id": "rusb 0.9.4", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.9.3" + "version": "0.9.4" }, "build_script_attrs": { "compile_data_glob": [ @@ -60028,7 +60077,7 @@ "link_deps": { "common": [ { - "id": "libusb1-sys 0.6.4", + "id": "libusb1-sys 0.7.0", "target": "libusb1_sys" } ], @@ -60092,7 +60141,7 @@ "target": "fallible_streaming_iterator" }, { - "id": "hashlink 0.8.3", + "id": "hashlink 0.8.4", "target": "hashlink" }, { @@ -60167,7 +60216,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.4", + "id": "arrayvec 0.7.6", "target": "arrayvec" }, { @@ -60240,7 +60289,7 @@ "deps": { "common": [ { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -60259,14 +60308,14 @@ ], "license_file": "LICENSE" }, - "rustc-demangle 0.1.23": { + "rustc-demangle 0.1.24": { "name": "rustc-demangle", - "version": "0.1.23", - "package_url": "https://github.com/alexcrichton/rustc-demangle", + "version": "0.1.24", + "package_url": "https://github.com/rust-lang/rustc-demangle", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustc-demangle/0.1.23/download", - "sha256": "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" + "url": "https://static.crates.io/crates/rustc-demangle/0.1.24/download", + "sha256": "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" } }, "targets": [ @@ -60289,7 +60338,7 @@ "**" ], "edition": "2015", - "version": "0.1.23" + "version": "0.1.24" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -60344,14 +60393,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustc-hash 2.0.0": { + "rustc-hash 2.1.0": { "name": "rustc-hash", - "version": "2.0.0", + "version": "2.1.0", "package_url": "https://github.com/rust-lang/rustc-hash", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustc-hash/2.0.0/download", - "sha256": "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" + "url": "https://static.crates.io/crates/rustc-hash/2.1.0/download", + "sha256": "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497" } }, "targets": [ @@ -60381,9 +60430,9 @@ "selects": {} }, "edition": "2021", - "version": "2.0.0" + "version": "2.1.0" }, - "license": "Apache-2.0/MIT", + "license": "Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" @@ -60435,14 +60484,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustc_version 0.4.0": { + "rustc_version 0.4.1": { "name": "rustc_version", - "version": "0.4.0", - "package_url": "https://github.com/Kimundi/rustc-version-rs", + "version": "0.4.1", + "package_url": "https://github.com/djc/rustc-version-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustc_version/0.4.0/download", - "sha256": "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" + "url": "https://static.crates.io/crates/rustc_version/0.4.1/download", + "sha256": "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" } }, "targets": [ @@ -60467,16 +60516,16 @@ "deps": { "common": [ { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" } ], "selects": {} }, "edition": "2018", - "version": "0.4.0" + "version": "0.4.1" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -60531,14 +60580,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustix 0.38.32": { + "rustix 0.38.43": { "name": "rustix", - "version": "0.38.32", + "version": "0.38.43", "package_url": "https://github.com/bytecodealliance/rustix", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustix/0.38.32/download", - "sha256": "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89", + "url": "https://static.crates.io/crates/rustix/0.38.43/download", + "sha256": "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6", "patch_args": [ "-p1" ], @@ -60582,6 +60631,7 @@ "common": [ "alloc", "fs", + "libc-extra-traits", "net", "std" ], @@ -60592,7 +60642,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60602,7 +60651,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60612,7 +60660,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60622,7 +60669,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60632,7 +60678,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60644,7 +60689,6 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" @@ -60657,7 +60701,6 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" @@ -60668,7 +60711,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60680,7 +60722,6 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" @@ -60691,7 +60732,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60703,7 +60743,6 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" @@ -60714,7 +60753,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60724,7 +60762,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60734,7 +60771,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60746,7 +60782,6 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" @@ -60759,21 +60794,10 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" ], - "riscv32imc-unknown-none-elf": [ - "default", - "termios", - "use-libc-auxv" - ], - "riscv64gc-unknown-none-elf": [ - "default", - "termios", - "use-libc-auxv" - ], "s390x-unknown-linux-gnu": [ "default", "event", @@ -60782,29 +60806,12 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" ], - "thumbv7em-none-eabi": [ - "default", - "termios", - "use-libc-auxv" - ], - "thumbv8m.main-none-eabi": [ - "default", - "termios", - "use-libc-auxv" - ], - "wasm32-wasi": [ - "default", - "termios", - "use-libc-auxv" - ], "wasm32-wasip1": [ "default", - "termios", "use-libc-auxv" ], "x86_64-apple-darwin": [ @@ -60813,7 +60820,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60823,7 +60829,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60833,7 +60838,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60843,7 +60847,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60853,7 +60856,6 @@ "mm", "pipe", "process", - "termios", "time", "use-libc-auxv" ], @@ -60865,7 +60867,6 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" @@ -60878,364 +60879,347 @@ "pipe", "process", "system", - "termios", "thread", "time", "use-libc-auxv" - ], - "x86_64-unknown-none": [ - "default", - "termios", - "use-libc-auxv" ] } }, "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "build_script_build" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-apple-ios": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-apple-ios-sim": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-linux-android": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-pc-windows-msvc": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" } ], "aarch64-unknown-fuchsia": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "armv7-linux-androideabi": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], - "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ { - "id": "linux-raw-sys 0.4.13", + "id": "linux-raw-sys 0.4.15", "target": "linux_raw_sys" } ], - "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ + "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ { - "id": "linux-raw-sys 0.4.13", + "id": "linux-raw-sys 0.4.15", "target": "linux_raw_sys" } ], - "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "cfg(windows)": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "windows-sys 0.52.0", + "id": "windows-sys 0.59.0", "target": "windows_sys" } ], "i686-apple-darwin": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-linux-android": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-pc-windows-msvc": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" } ], "i686-unknown-freebsd": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "powerpc-unknown-linux-gnu": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "riscv32imc-unknown-none-elf": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "riscv64gc-unknown-none-elf": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "s390x-unknown-linux-gnu": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "thumbv7em-none-eabi": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "thumbv8m.main-none-eabi": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "wasm32-unknown-unknown": [ { - "id": "errno 0.3.8", - "target": "errno", - "alias": "libc_errno" - }, - { - "id": "libc 0.2.158", - "target": "libc" - } - ], - "wasm32-wasi": [ - { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "wasm32-wasip1": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-apple-darwin": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-apple-ios": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-linux-android": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-pc-windows-msvc": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" } ], "x86_64-unknown-freebsd": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-unknown-fuchsia": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "x86_64-unknown-none": [ { - "id": "errno 0.3.8", + "id": "errno 0.3.10", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] } }, "edition": "2021", - "version": "0.38.32" + "version": "0.38.43" }, "build_script_attrs": { "compile_data_glob": [ @@ -61306,11 +61290,11 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { @@ -61322,7 +61306,7 @@ "target": "webpki" }, { - "id": "sct 0.7.0", + "id": "sct 0.7.1", "target": "sct" } ], @@ -61341,7 +61325,7 @@ "link_deps": { "common": [ { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" } ], @@ -61409,11 +61393,11 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { @@ -61421,7 +61405,7 @@ "target": "build_script_build" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" }, @@ -61453,7 +61437,7 @@ "link_deps": { "common": [ { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" } ], @@ -61468,14 +61452,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustls 0.23.18": { + "rustls 0.23.21": { "name": "rustls", - "version": "0.23.18", + "version": "0.23.21", "package_url": "https://github.com/rustls/rustls", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls/0.23.18/download", - "sha256": "9c9cc1d47e243d655ace55ed38201c19ae02c148ae56412ab8750e8f0166ab7f" + "url": "https://static.crates.io/crates/rustls/0.23.21/download", + "sha256": "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8" } }, "targets": [ @@ -61531,23 +61515,23 @@ "target": "brotli_decompressor" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "build_script_build" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" }, @@ -61567,7 +61551,7 @@ "selects": {} }, "edition": "2021", - "version": "0.23.18" + "version": "0.23.21" }, "build_script_attrs": { "compile_data_glob": [ @@ -61579,7 +61563,7 @@ "link_deps": { "common": [ { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" } ], @@ -61633,7 +61617,7 @@ "deps": { "common": [ { - "id": "async-io 2.3.4", + "id": "async-io 2.4.0", "target": "async_io" }, { @@ -61649,7 +61633,7 @@ "target": "blocking" }, { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { @@ -61665,19 +61649,19 @@ "target": "http" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "pem 3.0.3", + "id": "pem 3.0.4", "target": "pem" }, { - "id": "rcgen 0.13.1", + "id": "rcgen 0.13.2", "target": "rcgen" }, { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { @@ -61685,15 +61669,15 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "thiserror 2.0.3", + "id": "thiserror 2.0.11", "target": "thiserror" }, { - "id": "webpki-roots 0.26.1", + "id": "webpki-roots 0.26.7", "target": "webpki_roots" }, { @@ -61707,7 +61691,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -61754,7 +61738,7 @@ "deps": { "common": [ { - "id": "rustls-pemfile 1.0.3", + "id": "rustls-pemfile 1.0.4", "target": "rustls_pemfile" } ], @@ -61773,7 +61757,7 @@ ], "cfg(windows)": [ { - "id": "schannel 0.1.22", + "id": "schannel 0.1.27", "target": "schannel" } ] @@ -61790,14 +61774,14 @@ ], "license_file": "LICENSE" }, - "rustls-native-certs 0.7.0": { + "rustls-native-certs 0.7.3": { "name": "rustls-native-certs", - "version": "0.7.0", + "version": "0.7.3", "package_url": "https://github.com/rustls/rustls-native-certs", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-native-certs/0.7.0/download", - "sha256": "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" + "url": "https://static.crates.io/crates/rustls-native-certs/0.7.3/download", + "sha256": "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" } }, "targets": [ @@ -61826,7 +61810,7 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" } @@ -61846,14 +61830,14 @@ ], "cfg(windows)": [ { - "id": "schannel 0.1.22", + "id": "schannel 0.1.27", "target": "schannel" } ] } }, "edition": "2021", - "version": "0.7.0" + "version": "0.7.3" }, "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ @@ -61863,14 +61847,14 @@ ], "license_file": "LICENSE" }, - "rustls-native-certs 0.8.0": { + "rustls-native-certs 0.8.1": { "name": "rustls-native-certs", - "version": "0.8.0", + "version": "0.8.1", "package_url": "https://github.com/rustls/rustls-native-certs", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-native-certs/0.8.0/download", - "sha256": "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a" + "url": "https://static.crates.io/crates/rustls-native-certs/0.8.1/download", + "sha256": "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" } }, "targets": [ @@ -61895,11 +61879,7 @@ "deps": { "common": [ { - "id": "rustls-pemfile 2.2.0", - "target": "rustls_pemfile" - }, - { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" } @@ -61913,20 +61893,20 @@ ], "cfg(target_os = \"macos\")": [ { - "id": "security-framework 2.11.1", + "id": "security-framework 3.2.0", "target": "security_framework" } ], "cfg(windows)": [ { - "id": "schannel 0.1.22", + "id": "schannel 0.1.27", "target": "schannel" } ] } }, "edition": "2021", - "version": "0.8.0" + "version": "0.8.1" }, "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ @@ -61936,14 +61916,14 @@ ], "license_file": "LICENSE" }, - "rustls-pemfile 1.0.3": { + "rustls-pemfile 1.0.4": { "name": "rustls-pemfile", - "version": "1.0.3", + "version": "1.0.4", "package_url": "https://github.com/rustls/pemfile", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-pemfile/1.0.3/download", - "sha256": "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" + "url": "https://static.crates.io/crates/rustls-pemfile/1.0.4/download", + "sha256": "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" } }, "targets": [ @@ -61968,14 +61948,14 @@ "deps": { "common": [ { - "id": "base64 0.21.6", + "id": "base64 0.21.7", "target": "base64" } ], "selects": {} }, "edition": "2018", - "version": "1.0.3" + "version": "1.0.4" }, "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ @@ -62024,7 +62004,7 @@ "deps": { "common": [ { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" } @@ -62042,14 +62022,14 @@ ], "license_file": "LICENSE" }, - "rustls-pki-types 1.10.0": { + "rustls-pki-types 1.10.1": { "name": "rustls-pki-types", - "version": "1.10.0", + "version": "1.10.1", "package_url": "https://github.com/rustls/pki-types", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-pki-types/1.10.0/download", - "sha256": "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" + "url": "https://static.crates.io/crates/rustls-pki-types/1.10.1/download", + "sha256": "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37" } }, "targets": [ @@ -62077,10 +62057,26 @@ "default", "std" ], - "selects": {} + "selects": { + "wasm32-unknown-unknown": [ + "web", + "web-time" + ] + } + }, + "deps": { + "common": [], + "selects": { + "wasm32-unknown-unknown": [ + { + "id": "web-time 1.1.0", + "target": "web_time" + } + ] + } }, "edition": "2021", - "version": "1.10.0" + "version": "1.10.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -62121,22 +62117,22 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" } ], "selects": { "cfg(all(unix, not(target_os = \"android\"), not(target_vendor = \"apple\"), not(target_arch = \"wasm32\")))": [ { - "id": "rustls-native-certs 0.7.0", + "id": "rustls-native-certs 0.7.3", "target": "rustls_native_certs" }, { @@ -62158,7 +62154,7 @@ "target": "security_framework" }, { - "id": "security-framework-sys 2.12.0", + "id": "security-framework-sys 2.14.0", "target": "security_framework_sys" } ], @@ -62168,7 +62164,7 @@ "target": "webpki" }, { - "id": "webpki-root-certs 0.26.6", + "id": "webpki-root-certs 0.26.7", "target": "webpki_root_certs" } ], @@ -62283,7 +62279,7 @@ "deps": { "common": [ { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { @@ -62342,11 +62338,11 @@ "deps": { "common": [ { - "id": "ring 0.17.7", + "id": "ring 0.17.8", "target": "ring" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" }, @@ -62366,14 +62362,14 @@ ], "license_file": "LICENSE" }, - "rustversion 1.0.14": { + "rustversion 1.0.19": { "name": "rustversion", - "version": "1.0.14", + "version": "1.0.19", "package_url": "https://github.com/dtolnay/rustversion", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustversion/1.0.14/download", - "sha256": "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" + "url": "https://static.crates.io/crates/rustversion/1.0.19/download", + "sha256": "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" } }, "targets": [ @@ -62410,14 +62406,14 @@ "deps": { "common": [ { - "id": "rustversion 1.0.14", + "id": "rustversion 1.0.19", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.0.14" + "version": "1.0.19" }, "build_script_attrs": { "compile_data_glob": [ @@ -62482,7 +62478,7 @@ "target": "quick_error" }, { - "id": "tempfile 3.12.0", + "id": "tempfile 3.15.0", "target": "tempfile" }, { @@ -62502,14 +62498,14 @@ ], "license_file": "LICENSE-APACHE" }, - "ryu 1.0.15": { + "ryu 1.0.18": { "name": "ryu", - "version": "1.0.15", + "version": "1.0.18", "package_url": "https://github.com/dtolnay/ryu", "repository": { "Http": { - "url": "https://static.crates.io/crates/ryu/1.0.15/download", - "sha256": "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" + "url": "https://static.crates.io/crates/ryu/1.0.18/download", + "sha256": "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" } }, "targets": [ @@ -62532,7 +62528,7 @@ "**" ], "edition": "2018", - "version": "1.0.15" + "version": "1.0.18" }, "license": "Apache-2.0 OR BSL-1.0", "license_ids": [ @@ -62575,7 +62571,7 @@ "selects": { "cfg(windows)": [ { - "id": "winapi-util 0.1.5", + "id": "winapi-util 0.1.9", "target": "winapi_util" } ] @@ -62591,14 +62587,14 @@ ], "license_file": "LICENSE-MIT" }, - "scale-info 2.9.0": { + "scale-info 2.11.6": { "name": "scale-info", - "version": "2.9.0", + "version": "2.11.6", "package_url": "https://github.com/paritytech/scale-info", "repository": { "Http": { - "url": "https://static.crates.io/crates/scale-info/2.9.0/download", - "sha256": "35c0a159d0c45c12b20c5a844feb1fe4bea86e28f17b92a5f0c42193634d3782" + "url": "https://static.crates.io/crates/scale-info/2.11.6/download", + "sha256": "346a3b32eba2640d17a9cb5927056b08f3de90f65b72fe09402c2ad07d684d0b" } }, "targets": [ @@ -62634,7 +62630,11 @@ "target": "cfg_if" }, { - "id": "parity-scale-codec 3.6.3", + "id": "derive_more 1.0.0", + "target": "derive_more" + }, + { + "id": "parity-scale-codec 3.6.12", "target": "parity_scale_codec", "alias": "scale" } @@ -62645,17 +62645,13 @@ "proc_macro_deps": { "common": [ { - "id": "derive_more 0.99.17", - "target": "derive_more" - }, - { - "id": "scale-info-derive 2.9.0", + "id": "scale-info-derive 2.11.6", "target": "scale_info_derive" } ], "selects": {} }, - "version": "2.9.0" + "version": "2.11.6" }, "license": "Apache-2.0", "license_ids": [ @@ -62663,14 +62659,14 @@ ], "license_file": "LICENSE" }, - "scale-info-derive 2.9.0": { + "scale-info-derive 2.11.6": { "name": "scale-info-derive", - "version": "2.9.0", + "version": "2.11.6", "package_url": "https://github.com/paritytech/scale-info", "repository": { "Http": { - "url": "https://static.crates.io/crates/scale-info-derive/2.9.0/download", - "sha256": "912e55f6d20e0e80d63733872b40e1227c0bce1e1ab81ba67d696339bfd7fd29" + "url": "https://static.crates.io/crates/scale-info-derive/2.11.6/download", + "sha256": "c6630024bf739e2179b91fb424b28898baf819414262c5d376677dbff1fe7ebf" } }, "targets": [ @@ -62695,26 +62691,26 @@ "deps": { "common": [ { - "id": "proc-macro-crate 1.3.1", + "id": "proc-macro-crate 3.2.0", "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 1.0.109", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.9.0" + "version": "2.11.6" }, "license": "Apache-2.0", "license_ids": [ @@ -62722,14 +62718,14 @@ ], "license_file": null }, - "schannel 0.1.22": { + "schannel 0.1.27": { "name": "schannel", - "version": "0.1.22", + "version": "0.1.27", "package_url": "https://github.com/steffengy/schannel-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/schannel/0.1.22/download", - "sha256": "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" + "url": "https://static.crates.io/crates/schannel/0.1.27/download", + "sha256": "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" } }, "targets": [ @@ -62754,14 +62750,14 @@ "deps": { "common": [ { - "id": "windows-sys 0.48.0", + "id": "windows-sys 0.59.0", "target": "windows_sys" } ], "selects": {} }, "edition": "2018", - "version": "0.1.22" + "version": "0.1.27" }, "license": "MIT", "license_ids": [ @@ -62769,14 +62765,14 @@ ], "license_file": "LICENSE.md" }, - "schemars 0.8.16": { + "schemars 0.8.21": { "name": "schemars", - "version": "0.8.16", + "version": "0.8.21", "package_url": "https://github.com/GREsau/schemars", "repository": { "Http": { - "url": "https://static.crates.io/crates/schemars/0.8.16/download", - "sha256": "45a28f4c49489add4ce10783f7911893516f15afe45d015608d41faca6bc4d29" + "url": "https://static.crates.io/crates/schemars/0.8.21/download", + "sha256": "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92" } }, "targets": [ @@ -62823,16 +62819,16 @@ "deps": { "common": [ { - "id": "dyn-clone 1.0.14", + "id": "dyn-clone 1.0.17", "target": "dyn_clone" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap", "alias": "indexmap2" }, { - "id": "schemars 0.8.16", + "id": "schemars 0.8.21", "target": "build_script_build" }, { @@ -62840,7 +62836,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -62850,13 +62846,13 @@ "proc_macro_deps": { "common": [ { - "id": "schemars_derive 0.8.16", + "id": "schemars_derive 0.8.21", "target": "schemars_derive" } ], "selects": {} }, - "version": "0.8.16" + "version": "0.8.21" }, "build_script_attrs": { "compile_data_glob": [ @@ -62872,14 +62868,14 @@ ], "license_file": "LICENSE" }, - "schemars_derive 0.8.16": { + "schemars_derive 0.8.21": { "name": "schemars_derive", - "version": "0.8.16", + "version": "0.8.21", "package_url": "https://github.com/GREsau/schemars", "repository": { "Http": { - "url": "https://static.crates.io/crates/schemars_derive/0.8.16/download", - "sha256": "c767fd6fa65d9ccf9cf026122c1b555f2ef9a4f0cea69da4d7dbc3e258d30967" + "url": "https://static.crates.io/crates/schemars_derive/0.8.21/download", + "sha256": "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e" } }, "targets": [ @@ -62904,26 +62900,26 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "serde_derive_internals 0.26.0", + "id": "serde_derive_internals 0.29.1", "target": "serde_derive_internals" }, { - "id": "syn 1.0.109", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.8.16" + "version": "0.8.21" }, "license": "MIT", "license_ids": [ @@ -63103,7 +63099,7 @@ "target": "cssparser" }, { - "id": "ego-tree 0.6.2", + "id": "ego-tree 0.6.3", "target": "ego_tree" }, { @@ -63115,7 +63111,7 @@ "target": "html5ever" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -63142,14 +63138,14 @@ ], "license_file": "LICENSE" }, - "sct 0.7.0": { + "sct 0.7.1": { "name": "sct", - "version": "0.7.0", - "package_url": "https://github.com/ctz/sct.rs", + "version": "0.7.1", + "package_url": "https://github.com/rustls/sct.rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/sct/0.7.0/download", - "sha256": "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" + "url": "https://static.crates.io/crates/sct/0.7.1/download", + "sha256": "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" } }, "targets": [ @@ -63174,20 +63170,20 @@ "deps": { "common": [ { - "id": "ring 0.16.20", + "id": "ring 0.17.8", "target": "ring" }, { - "id": "untrusted 0.7.1", + "id": "untrusted 0.9.0", "target": "untrusted" } ], "selects": {} }, - "edition": "2018", - "version": "0.7.0" + "edition": "2021", + "version": "0.7.1" }, - "license": "Apache-2.0/ISC/MIT", + "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ "Apache-2.0", "ISC", @@ -63283,7 +63279,7 @@ "target": "base16ct" }, { - "id": "der 0.7.7", + "id": "der 0.7.9", "target": "der" }, { @@ -63453,14 +63449,14 @@ ], "license_file": "LICENSE" }, - "secp256k1 0.29.0": { + "secp256k1 0.29.1": { "name": "secp256k1", - "version": "0.29.0", + "version": "0.29.1", "package_url": "https://github.com/rust-bitcoin/rust-secp256k1/", "repository": { "Http": { - "url": "https://static.crates.io/crates/secp256k1/0.29.0/download", - "sha256": "0e0cc0f1cf93f4969faf3ea1c7d8a9faed25918d96affa959720823dfe86d4f3" + "url": "https://static.crates.io/crates/secp256k1/0.29.1/download", + "sha256": "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113" } }, "targets": [ @@ -63497,14 +63493,14 @@ "alias": "hashes" }, { - "id": "secp256k1-sys 0.10.0", + "id": "secp256k1-sys 0.10.1", "target": "secp256k1_sys" } ], "selects": {} }, "edition": "2021", - "version": "0.29.0" + "version": "0.29.1" }, "license": "CC0-1.0", "license_ids": [ @@ -63582,7 +63578,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -63667,7 +63663,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -63681,14 +63677,14 @@ ], "license_file": "LICENSE" }, - "secp256k1-sys 0.10.0": { + "secp256k1-sys 0.10.1": { "name": "secp256k1-sys", - "version": "0.10.0", + "version": "0.10.1", "package_url": "https://github.com/rust-bitcoin/rust-secp256k1/", "repository": { "Http": { - "url": "https://static.crates.io/crates/secp256k1-sys/0.10.0/download", - "sha256": "1433bd67156263443f14d603720b082dd3121779323fce20cba2aa07b874bc1b" + "url": "https://static.crates.io/crates/secp256k1-sys/0.10.1/download", + "sha256": "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9" } }, "targets": [ @@ -63731,7 +63727,7 @@ "deps": { "common": [ { - "id": "secp256k1-sys 0.10.0", + "id": "secp256k1-sys 0.10.1", "target": "build_script_build" } ], @@ -63744,7 +63740,7 @@ ], "selects": {} }, - "version": "0.10.0" + "version": "0.10.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -63756,7 +63752,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -63877,7 +63873,7 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -63889,7 +63885,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -63897,7 +63893,7 @@ "target": "num_bigint" }, { - "id": "security-framework-sys 2.12.0", + "id": "security-framework-sys 2.14.0", "target": "security_framework_sys" } ], @@ -63913,14 +63909,85 @@ ], "license_file": "LICENSE-APACHE" }, - "security-framework-sys 2.12.0": { + "security-framework 3.2.0": { + "name": "security-framework", + "version": "3.2.0", + "package_url": "https://github.com/kornelski/rust-security-framework", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/security-framework/3.2.0/download", + "sha256": "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" + } + }, + "targets": [ + { + "Library": { + "crate_name": "security_framework", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "security_framework", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "OSX_10_12", + "default" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "bitflags 2.8.0", + "target": "bitflags" + }, + { + "id": "core-foundation 0.10.0", + "target": "core_foundation" + }, + { + "id": "core-foundation-sys 0.8.7", + "target": "core_foundation_sys" + }, + { + "id": "libc 0.2.169", + "target": "libc" + }, + { + "id": "security-framework-sys 2.14.0", + "target": "security_framework_sys" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "3.2.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "security-framework-sys 2.14.0": { "name": "security-framework-sys", - "version": "2.12.0", + "version": "2.14.0", "package_url": "https://github.com/kornelski/rust-security-framework", "repository": { "Http": { - "url": "https://static.crates.io/crates/security-framework-sys/2.12.0/download", - "sha256": "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" + "url": "https://static.crates.io/crates/security-framework-sys/2.14.0/download", + "sha256": "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" } }, "targets": [ @@ -63961,14 +64028,14 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "selects": {} }, "edition": "2021", - "version": "2.12.0" + "version": "2.14.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -64021,7 +64088,7 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -64033,11 +64100,11 @@ "target": "fxhash" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "new_debug_unreachable 1.0.4", + "id": "new_debug_unreachable 1.0.6", "target": "debug_unreachable" }, { @@ -64067,7 +64134,7 @@ "proc_macro_deps": { "common": [ { - "id": "derive_more 0.99.17", + "id": "derive_more 0.99.18", "target": "derive_more" } ], @@ -64098,14 +64165,14 @@ ], "license_file": null }, - "semver 1.0.22": { + "semver 1.0.24": { "name": "semver", - "version": "1.0.22", + "version": "1.0.24", "package_url": "https://github.com/dtolnay/semver", "repository": { "Http": { - "url": "https://static.crates.io/crates/semver/1.0.22/download", - "sha256": "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" + "url": "https://static.crates.io/crates/semver/1.0.24/download", + "sha256": "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba" } }, "targets": [ @@ -64150,7 +64217,7 @@ "deps": { "common": [ { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "build_script_build" }, { @@ -64161,7 +64228,7 @@ "selects": {} }, "edition": "2018", - "version": "1.0.22" + "version": "1.0.24" }, "build_script_attrs": { "compile_data_glob": [ @@ -64353,7 +64420,7 @@ "deps": { "common": [ { - "id": "ordered-float 2.10.0", + "id": "ordered-float 2.10.1", "target": "ordered_float" }, { @@ -64404,7 +64471,7 @@ "deps": { "common": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { @@ -64412,7 +64479,7 @@ "target": "serde" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], @@ -64521,7 +64588,7 @@ "deps": { "common": [ { - "id": "half 1.8.2", + "id": "half 1.8.3", "target": "half" }, { @@ -64579,15 +64646,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -64603,14 +64670,14 @@ ], "license_file": "LICENSE-APACHE" }, - "serde_derive_internals 0.26.0": { + "serde_derive_internals 0.29.1": { "name": "serde_derive_internals", - "version": "0.26.0", + "version": "0.29.1", "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_derive_internals/0.26.0/download", - "sha256": "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c" + "url": "https://static.crates.io/crates/serde_derive_internals/0.29.1/download", + "sha256": "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" } }, "targets": [ @@ -64635,22 +64702,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 1.0.109", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2015", - "version": "0.26.0" + "version": "0.29.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -64659,14 +64726,14 @@ ], "license_file": "LICENSE-APACHE" }, - "serde_json 1.0.132": { + "serde_json 1.0.135": { "name": "serde_json", - "version": "1.0.132", + "version": "1.0.135", "package_url": "https://github.com/serde-rs/json", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_json/1.0.132/download", - "sha256": "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" + "url": "https://static.crates.io/crates/serde_json/1.0.135/download", + "sha256": "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" } }, "targets": [ @@ -64703,7 +64770,6 @@ "crate_features": { "common": [ "alloc", - "arbitrary_precision", "default", "raw_value", "std", @@ -64714,7 +64780,7 @@ "deps": { "common": [ { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { @@ -64722,7 +64788,7 @@ "target": "memchr" }, { - "id": "ryu 1.0.15", + "id": "ryu 1.0.18", "target": "ryu" }, { @@ -64730,14 +64796,14 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "1.0.132" + "version": "1.0.135" }, "build_script_attrs": { "compile_data_glob": [ @@ -64754,14 +64820,14 @@ ], "license_file": "LICENSE-APACHE" }, - "serde_path_to_error 0.1.14": { + "serde_path_to_error 0.1.16": { "name": "serde_path_to_error", - "version": "0.1.14", + "version": "0.1.16", "package_url": "https://github.com/dtolnay/path-to-error", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_path_to_error/0.1.14/download", - "sha256": "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335" + "url": "https://static.crates.io/crates/serde_path_to_error/0.1.16/download", + "sha256": "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" } }, "targets": [ @@ -64786,7 +64852,7 @@ "deps": { "common": [ { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { @@ -64797,7 +64863,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.14" + "version": "0.1.16" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -64846,7 +64912,7 @@ "target": "serde" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" } ], @@ -64894,7 +64960,7 @@ "deps": { "common": [ { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -64946,15 +65012,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -65002,7 +65068,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { @@ -65025,14 +65091,14 @@ ], "license_file": "LICENSE" }, - "serde_tokenstream 0.2.1": { + "serde_tokenstream 0.2.2": { "name": "serde_tokenstream", - "version": "0.2.1", + "version": "0.2.2", "package_url": "https://github.com/oxidecomputer/serde_tokenstream", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_tokenstream/0.2.1/download", - "sha256": "8790a7c3fe883e443eaa2af6f705952bc5d6e8671a220b9335c8cae92c037e74" + "url": "https://static.crates.io/crates/serde_tokenstream/0.2.2/download", + "sha256": "64060d864397305347a78851c51588fd283767e7e7589829e8121d65512340f1" } }, "targets": [ @@ -65057,11 +65123,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -65069,14 +65135,14 @@ "target": "serde" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.2.1" + "version": "0.2.2" }, "license": "Apache-2.0", "license_ids": [ @@ -65120,11 +65186,11 @@ "target": "form_urlencoded" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "ryu 1.0.15", + "id": "ryu 1.0.18", "target": "ryu" }, { @@ -65316,11 +65382,11 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -65376,15 +65442,15 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -65436,7 +65502,7 @@ "target": "indexmap" }, { - "id": "ryu 1.0.15", + "id": "ryu 1.0.18", "target": "ryu" }, { @@ -65492,15 +65558,15 @@ "deps": { "common": [ { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { - "id": "ryu 1.0.15", + "id": "ryu 1.0.18", "target": "ryu" }, { @@ -65622,7 +65688,7 @@ "selects": { "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))": [ { - "id": "cpufeatures 0.2.9", + "id": "cpufeatures 0.2.16", "target": "cpufeatures" } ] @@ -65689,14 +65755,14 @@ "target": "digest" }, { - "id": "opaque-debug 0.3.0", + "id": "opaque-debug 0.3.1", "target": "opaque_debug" } ], "selects": { "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.9", + "id": "cpufeatures 0.2.16", "target": "cpufeatures" } ] @@ -65770,7 +65836,7 @@ "selects": { "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.9", + "id": "cpufeatures 0.2.16", "target": "cpufeatures" } ] @@ -65845,7 +65911,7 @@ "target": "sha2" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -65855,7 +65921,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -65913,7 +65979,7 @@ "target": "digest" }, { - "id": "keccak 0.1.4", + "id": "keccak 0.1.5", "target": "keccak" } ], @@ -65929,14 +65995,14 @@ ], "license_file": "LICENSE-APACHE" }, - "sharded-slab 0.1.4": { + "sharded-slab 0.1.7": { "name": "sharded-slab", - "version": "0.1.4", + "version": "0.1.7", "package_url": "https://github.com/hawkw/sharded-slab", "repository": { "Http": { - "url": "https://static.crates.io/crates/sharded-slab/0.1.4/download", - "sha256": "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" + "url": "https://static.crates.io/crates/sharded-slab/0.1.7/download", + "sha256": "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" } }, "targets": [ @@ -65961,14 +66027,14 @@ "deps": { "common": [ { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" } ], "selects": {} }, "edition": "2018", - "version": "0.1.4" + "version": "0.1.7" }, "license": "MIT", "license_ids": [ @@ -66074,7 +66140,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -66082,7 +66148,7 @@ "target": "build_script_build" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" } ], @@ -66106,14 +66172,14 @@ ], "license_file": "LICENSE-APACHE" }, - "signal-hook-mio 0.2.3": { + "signal-hook-mio 0.2.4": { "name": "signal-hook-mio", - "version": "0.2.3", + "version": "0.2.4", "package_url": "https://github.com/vorner/signal-hook", "repository": { "Http": { - "url": "https://static.crates.io/crates/signal-hook-mio/0.2.3/download", - "sha256": "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" + "url": "https://static.crates.io/crates/signal-hook-mio/0.2.4/download", + "sha256": "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd" } }, "targets": [ @@ -66145,11 +66211,11 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "mio 0.8.10", + "id": "mio 0.8.11", "target": "mio", "alias": "mio_0_8" }, @@ -66161,7 +66227,7 @@ "selects": {} }, "edition": "2018", - "version": "0.2.3" + "version": "0.2.4" }, "license": "Apache-2.0/MIT", "license_ids": [ @@ -66170,14 +66236,14 @@ ], "license_file": "LICENSE-APACHE" }, - "signal-hook-registry 1.4.1": { + "signal-hook-registry 1.4.2": { "name": "signal-hook-registry", - "version": "1.4.1", + "version": "1.4.2", "package_url": "https://github.com/vorner/signal-hook", "repository": { "Http": { - "url": "https://static.crates.io/crates/signal-hook-registry/1.4.1/download", - "sha256": "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" + "url": "https://static.crates.io/crates/signal-hook-registry/1.4.2/download", + "sha256": "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" } }, "targets": [ @@ -66202,14 +66268,14 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "selects": {} }, "edition": "2015", - "version": "1.4.1" + "version": "1.4.2" }, "license": "Apache-2.0/MIT", "license_ids": [ @@ -66279,14 +66345,14 @@ ], "license_file": "LICENSE-APACHE" }, - "simdutf8 0.1.4": { + "simdutf8 0.1.5": { "name": "simdutf8", - "version": "0.1.4", + "version": "0.1.5", "package_url": "https://github.com/rusticstuff/simdutf8", "repository": { "Http": { - "url": "https://static.crates.io/crates/simdutf8/0.1.4/download", - "sha256": "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" + "url": "https://static.crates.io/crates/simdutf8/0.1.5/download", + "sha256": "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" } }, "targets": [ @@ -66309,7 +66375,7 @@ "**" ], "edition": "2018", - "version": "0.1.4" + "version": "0.1.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -66318,14 +66384,14 @@ ], "license_file": "LICENSE-Apache" }, - "similar 2.2.1": { + "similar 2.6.0": { "name": "similar", - "version": "2.2.1", + "version": "2.6.0", "package_url": "https://github.com/mitsuhiko/similar", "repository": { "Http": { - "url": "https://static.crates.io/crates/similar/2.2.1/download", - "sha256": "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf" + "url": "https://static.crates.io/crates/similar/2.6.0/download", + "sha256": "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e" } }, "targets": [ @@ -66356,7 +66422,7 @@ "selects": {} }, "edition": "2018", - "version": "2.2.1" + "version": "2.6.0" }, "license": "Apache-2.0", "license_ids": [ @@ -66364,14 +66430,14 @@ ], "license_file": "LICENSE" }, - "simple_asn1 0.6.2": { + "simple_asn1 0.6.3": { "name": "simple_asn1", - "version": "0.6.2", + "version": "0.6.3", "package_url": "https://github.com/acw/simple_asn1", "repository": { "Http": { - "url": "https://static.crates.io/crates/simple_asn1/0.6.2/download", - "sha256": "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" + "url": "https://static.crates.io/crates/simple_asn1/0.6.3/download", + "sha256": "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" } }, "targets": [ @@ -66404,18 +66470,18 @@ "target": "num_traits" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 2.0.11", "target": "thiserror" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], "selects": {} }, "edition": "2018", - "version": "0.6.2" + "version": "0.6.3" }, "license": "ISC", "license_ids": [ @@ -66465,15 +66531,15 @@ "deps": { "common": [ { - "id": "colored 2.0.4", + "id": "colored 2.2.0", "target": "colored" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -66582,7 +66648,7 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -66590,7 +66656,7 @@ "target": "termcolor" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -66652,14 +66718,60 @@ ], "license_file": null }, - "slab 0.4.8": { + "siphasher 1.0.1": { + "name": "siphasher", + "version": "1.0.1", + "package_url": "https://github.com/jedisct1/rust-siphash", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/siphasher/1.0.1/download", + "sha256": "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" + } + }, + "targets": [ + { + "Library": { + "crate_name": "siphasher", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "siphasher", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "std" + ], + "selects": {} + }, + "edition": "2018", + "version": "1.0.1" + }, + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": null + }, + "slab 0.4.9": { "name": "slab", - "version": "0.4.8", + "version": "0.4.9", "package_url": "https://github.com/tokio-rs/slab", "repository": { "Http": { - "url": "https://static.crates.io/crates/slab/0.4.8/download", - "sha256": "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" + "url": "https://static.crates.io/crates/slab/0.4.9/download", + "sha256": "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" } }, "targets": [ @@ -66703,14 +66815,14 @@ "deps": { "common": [ { - "id": "slab 0.4.8", + "id": "slab 0.4.9", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.4.8" + "version": "0.4.9" }, "build_script_attrs": { "compile_data_glob": [ @@ -66722,7 +66834,7 @@ "deps": { "common": [ { - "id": "autocfg 1.1.0", + "id": "autocfg 1.4.0", "target": "autocfg" } ], @@ -66790,7 +66902,7 @@ "deps": { "common": [ { - "id": "erased-serde 0.3.28", + "id": "erased-serde 0.3.31", "target": "erased_serde" }, { @@ -66870,7 +66982,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { @@ -66886,7 +66998,7 @@ "target": "take_mut" }, { - "id": "thread_local 1.1.7", + "id": "thread_local 1.1.8", "target": "thread_local" } ], @@ -66950,11 +67062,11 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -67030,7 +67142,7 @@ "deps": { "common": [ { - "id": "erased-serde 0.3.28", + "id": "erased-serde 0.3.31", "target": "erased_serde" }, { @@ -67038,7 +67150,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -67046,7 +67158,7 @@ "target": "slog" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -67099,7 +67211,7 @@ "target": "arc_swap" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -67158,7 +67270,7 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -67215,7 +67327,7 @@ "deps": { "common": [ { - "id": "is-terminal 0.4.9", + "id": "is-terminal 0.4.13", "target": "is_terminal" }, { @@ -67227,11 +67339,11 @@ "target": "term" }, { - "id": "thread_local 1.1.7", + "id": "thread_local 1.1.8", "target": "thread_local" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -67248,14 +67360,14 @@ ], "license_file": "LICENSE-APACHE" }, - "slotmap 1.0.6": { + "slotmap 1.0.7": { "name": "slotmap", - "version": "1.0.6", + "version": "1.0.7", "package_url": "https://github.com/orlp/slotmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/slotmap/1.0.6/download", - "sha256": "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342" + "url": "https://static.crates.io/crates/slotmap/1.0.7/download", + "sha256": "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" } }, "targets": [ @@ -67299,14 +67411,14 @@ "deps": { "common": [ { - "id": "slotmap 1.0.6", + "id": "slotmap 1.0.7", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.0.6" + "version": "1.0.7" }, "build_script_attrs": { "compile_data_glob": [ @@ -67318,7 +67430,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.4", + "id": "version_check 0.9.5", "target": "version_check" } ], @@ -67488,15 +67600,15 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -67512,14 +67624,14 @@ ], "license_file": "LICENSE-APACHE" }, - "socket2 0.4.9": { + "socket2 0.4.10": { "name": "socket2", - "version": "0.4.9", + "version": "0.4.10", "package_url": "https://github.com/rust-lang/socket2", "repository": { "Http": { - "url": "https://static.crates.io/crates/socket2/0.4.9/download", - "sha256": "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" + "url": "https://static.crates.io/crates/socket2/0.4.10/download", + "sha256": "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" } }, "targets": [ @@ -67552,7 +67664,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -67565,7 +67677,7 @@ } }, "edition": "2018", - "version": "0.4.9" + "version": "0.4.10" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -67574,14 +67686,14 @@ ], "license_file": "LICENSE-APACHE" }, - "socket2 0.5.7": { + "socket2 0.5.8": { "name": "socket2", - "version": "0.5.7", + "version": "0.5.8", "package_url": "https://github.com/rust-lang/socket2", "repository": { "Http": { - "url": "https://static.crates.io/crates/socket2/0.5.7/download", - "sha256": "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" + "url": "https://static.crates.io/crates/socket2/0.5.8/download", + "sha256": "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8" } }, "targets": [ @@ -67614,7 +67726,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -67627,7 +67739,7 @@ } }, "edition": "2021", - "version": "0.5.7" + "version": "0.5.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -67706,94 +67818,10 @@ "crate_features": { "common": [ "mutex", + "once", "spin_mutex" ], - "selects": { - "aarch64-apple-darwin": [ - "once" - ], - "aarch64-apple-ios": [ - "once" - ], - "aarch64-apple-ios-sim": [ - "once" - ], - "aarch64-linux-android": [ - "once" - ], - "aarch64-pc-windows-msvc": [ - "once" - ], - "aarch64-unknown-fuchsia": [ - "once" - ], - "aarch64-unknown-linux-gnu": [ - "once" - ], - "aarch64-unknown-nixos-gnu": [ - "once" - ], - "aarch64-unknown-nto-qnx710": [ - "once" - ], - "arm-unknown-linux-gnueabi": [ - "once" - ], - "armv7-linux-androideabi": [ - "once" - ], - "armv7-unknown-linux-gnueabi": [ - "once" - ], - "i686-apple-darwin": [ - "once" - ], - "i686-linux-android": [ - "once" - ], - "i686-pc-windows-msvc": [ - "once" - ], - "i686-unknown-freebsd": [ - "once" - ], - "i686-unknown-linux-gnu": [ - "once" - ], - "thumbv7em-none-eabi": [ - "once" - ], - "thumbv8m.main-none-eabi": [ - "once" - ], - "x86_64-apple-darwin": [ - "once" - ], - "x86_64-apple-ios": [ - "once" - ], - "x86_64-linux-android": [ - "once" - ], - "x86_64-pc-windows-msvc": [ - "once" - ], - "x86_64-unknown-freebsd": [ - "once" - ], - "x86_64-unknown-fuchsia": [ - "once" - ], - "x86_64-unknown-linux-gnu": [ - "once" - ], - "x86_64-unknown-nixos-gnu": [ - "once" - ], - "x86_64-unknown-none": [ - "once" - ] - } + "selects": {} }, "edition": "2015", "version": "0.9.8" @@ -67804,6 +67832,54 @@ ], "license_file": "LICENSE" }, + "spinning_top 0.3.0": { + "name": "spinning_top", + "version": "0.3.0", + "package_url": "https://github.com/rust-osdev/spinning_top", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/spinning_top/0.3.0/download", + "sha256": "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" + } + }, + "targets": [ + { + "Library": { + "crate_name": "spinning_top", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "spinning_top", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "lock_api 0.4.12", + "target": "lock_api" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.3.0" + }, + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "spki 0.7.3": { "name": "spki", "version": "0.7.3", @@ -67844,7 +67920,7 @@ "deps": { "common": [ { - "id": "der 0.7.7", + "id": "der 0.7.9", "target": "der" } ], @@ -67941,7 +68017,7 @@ "target": "bitflags" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -68012,14 +68088,14 @@ ], "license_file": "LICENSE-APACHE" }, - "stacker 0.1.15": { + "stacker 0.1.17": { "name": "stacker", - "version": "0.1.15", + "version": "0.1.17", "package_url": "https://github.com/rust-lang/stacker", "repository": { "Http": { - "url": "https://static.crates.io/crates/stacker/0.1.15/download", - "sha256": "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce" + "url": "https://static.crates.io/crates/stacker/0.1.17/download", + "sha256": "799c883d55abdb5e98af1a7b3f23b9b6de8ecada0ecac058672d7635eb48ca7b" } }, "targets": [ @@ -68060,29 +68136,29 @@ "target": "cfg_if" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "psm 0.1.21", + "id": "psm 0.1.24", "target": "psm" }, { - "id": "stacker 0.1.15", + "id": "stacker 0.1.17", "target": "build_script_build" } ], "selects": { "cfg(windows)": [ { - "id": "winapi 0.3.9", - "target": "winapi" + "id": "windows-sys 0.59.0", + "target": "windows_sys" } ] } }, "edition": "2015", - "version": "0.1.15" + "version": "0.1.17" }, "build_script_attrs": { "compile_data_glob": [ @@ -68094,7 +68170,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -68191,7 +68267,7 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], @@ -68286,15 +68362,15 @@ "deps": { "common": [ { - "id": "new_debug_unreachable 1.0.4", + "id": "new_debug_unreachable 1.0.6", "target": "debug_unreachable" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { @@ -68362,11 +68438,11 @@ "target": "phf_shared" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" } ], @@ -68490,15 +68566,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -68555,15 +68631,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -68579,62 +68655,6 @@ ], "license_file": null }, - "strum 0.25.0": { - "name": "strum", - "version": "0.25.0", - "package_url": "https://github.com/Peternator7/strum", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/strum/0.25.0/download", - "sha256": "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" - } - }, - "targets": [ - { - "Library": { - "crate_name": "strum", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "strum", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "derive", - "std", - "strum_macros" - ], - "selects": {} - }, - "edition": "2018", - "proc_macro_deps": { - "common": [ - { - "id": "strum_macros 0.25.3", - "target": "strum_macros" - } - ], - "selects": {} - }, - "version": "0.25.0" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, "strum 0.26.3": { "name": "strum", "version": "0.26.3", @@ -68691,74 +68711,6 @@ ], "license_file": "LICENSE" }, - "strum_macros 0.25.3": { - "name": "strum_macros", - "version": "0.25.3", - "package_url": "https://github.com/Peternator7/strum", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/strum_macros/0.25.3/download", - "sha256": "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "strum_macros", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "strum_macros", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "heck 0.4.1", - "target": "heck" - }, - { - "id": "proc-macro2 1.0.89", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.37", - "target": "quote" - }, - { - "id": "syn 2.0.87", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2018", - "proc_macro_deps": { - "common": [ - { - "id": "rustversion 1.0.14", - "target": "rustversion" - } - ], - "selects": {} - }, - "version": "0.25.3" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, "strum_macros 0.26.4": { "name": "strum_macros", "version": "0.26.4", @@ -68795,15 +68747,15 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -68813,7 +68765,7 @@ "proc_macro_deps": { "common": [ { - "id": "rustversion 1.0.14", + "id": "rustversion 1.0.19", "target": "rustversion" } ], @@ -68827,14 +68779,14 @@ ], "license_file": "LICENSE" }, - "stubborn-io 0.3.2": { + "stubborn-io 0.3.5": { "name": "stubborn-io", - "version": "0.3.2", + "version": "0.3.5", "package_url": "https://github.com/craftytrickster/stubborn-io", "repository": { "Http": { - "url": "https://static.crates.io/crates/stubborn-io/0.3.2/download", - "sha256": "b261fbca19f25e0ac726f6efb3c3f53949e18ba4b126c16f8ca625730daa1a9c" + "url": "https://static.crates.io/crates/stubborn-io/0.3.5/download", + "sha256": "373a722240991e091384a571e1fd8abde15eca4494a1a2bff95dbf603d15a866" } }, "targets": [ @@ -68856,10 +68808,17 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "default", + "log" + ], + "selects": {} + }, "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -68867,14 +68826,14 @@ "target": "rand" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "0.3.2" + "version": "0.3.5" }, "license": "MIT", "license_ids": [ @@ -68966,14 +68925,14 @@ ], "license_file": "LICENSE" }, - "symbolic-common 12.4.0": { + "symbolic-common 12.13.2": { "name": "symbolic-common", - "version": "12.4.0", + "version": "12.13.2", "package_url": "https://github.com/getsentry/symbolic", "repository": { "Http": { - "url": "https://static.crates.io/crates/symbolic-common/12.4.0/download", - "sha256": "9e0e9bc48b3852f36a84f8d0da275d50cb3c2b88b59b9ec35fdd8b7fa239e37d" + "url": "https://static.crates.io/crates/symbolic-common/12.13.2/download", + "sha256": "8150eae9699e3c73a3e6431dc1f80d87748797c0457336af23e94c1de619ed24" } }, "targets": [ @@ -69002,7 +68961,7 @@ "target": "debugid" }, { - "id": "memmap2 0.5.10", + "id": "memmap2 0.9.5", "target": "memmap2" }, { @@ -69010,14 +68969,14 @@ "target": "stable_deref_trait" }, { - "id": "uuid 1.11.0", + "id": "uuid 1.12.0", "target": "uuid" } ], "selects": {} }, "edition": "2021", - "version": "12.4.0" + "version": "12.13.2" }, "license": "MIT", "license_ids": [ @@ -69025,14 +68984,14 @@ ], "license_file": null }, - "symbolic-demangle 12.4.0": { + "symbolic-demangle 12.13.2": { "name": "symbolic-demangle", - "version": "12.4.0", + "version": "12.13.2", "package_url": "https://github.com/getsentry/symbolic", "repository": { "Http": { - "url": "https://static.crates.io/crates/symbolic-demangle/12.4.0/download", - "sha256": "691e53bdc0702aba3a5abc2cffff89346fcbd4050748883c7e2f714b33a69045" + "url": "https://static.crates.io/crates/symbolic-demangle/12.13.2/download", + "sha256": "95f4a9846f7a8933b6d198c022faa2c9bd89e1a970bed9d9a98d25708bf8de17" } }, "targets": [ @@ -69076,22 +69035,22 @@ "deps": { "common": [ { - "id": "rustc-demangle 0.1.23", + "id": "rustc-demangle 0.1.24", "target": "rustc_demangle" }, { - "id": "symbolic-common 12.4.0", + "id": "symbolic-common 12.13.2", "target": "symbolic_common" }, { - "id": "symbolic-demangle 12.4.0", + "id": "symbolic-demangle 12.13.2", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "12.4.0" + "version": "12.13.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -69163,84 +69122,70 @@ "selects": { "aarch64-apple-darwin": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "aarch64-pc-windows-msvc": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "aarch64-unknown-linux-gnu": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "aarch64-unknown-nixos-gnu": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "arm-unknown-linux-gnueabi": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "i686-pc-windows-msvc": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "i686-unknown-linux-gnu": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "powerpc-unknown-linux-gnu": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "s390x-unknown-linux-gnu": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "x86_64-apple-darwin": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "x86_64-pc-windows-msvc": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "x86_64-unknown-freebsd": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "x86_64-unknown-linux-gnu": [ "extra-traits", - "visit", - "visit-mut" + "visit" ], "x86_64-unknown-nixos-gnu": [ "extra-traits", - "visit", - "visit-mut" + "visit" ] } }, "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -69248,7 +69193,7 @@ "target": "build_script_build" }, { - "id": "unicode-ident 1.0.11", + "id": "unicode-ident 1.0.14", "target": "unicode_ident" } ], @@ -69272,14 +69217,14 @@ ], "license_file": "LICENSE-APACHE" }, - "syn 2.0.87": { + "syn 2.0.96": { "name": "syn", - "version": "2.0.87", + "version": "2.0.96", "package_url": "https://github.com/dtolnay/syn", "repository": { "Http": { - "url": "https://static.crates.io/crates/syn/2.0.87/download", - "sha256": "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" + "url": "https://static.crates.io/crates/syn/2.0.96/download", + "sha256": "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" } }, "targets": [ @@ -69375,22 +69320,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "unicode-ident 1.0.11", + "id": "unicode-ident 1.0.14", "target": "unicode_ident" } ], "selects": {} }, "edition": "2021", - "version": "2.0.87" + "version": "2.0.96" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -69437,14 +69382,14 @@ ], "license_file": "LICENSE" }, - "sync_wrapper 1.0.1": { + "sync_wrapper 1.0.2": { "name": "sync_wrapper", - "version": "1.0.1", + "version": "1.0.2", "package_url": "https://github.com/Actyx/sync_wrapper", "repository": { "Http": { - "url": "https://static.crates.io/crates/sync_wrapper/1.0.1/download", - "sha256": "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" + "url": "https://static.crates.io/crates/sync_wrapper/1.0.2/download", + "sha256": "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" } }, "targets": [ @@ -69482,8 +69427,8 @@ ], "selects": {} }, - "edition": "2018", - "version": "1.0.1" + "edition": "2021", + "version": "1.0.2" }, "license": "Apache-2.0", "license_ids": [ @@ -69530,15 +69475,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -69657,7 +69602,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -69685,14 +69630,14 @@ ], "license_file": null }, - "systemstat 0.2.3": { + "systemstat 0.2.4": { "name": "systemstat", - "version": "0.2.3", + "version": "0.2.4", "package_url": "https://github.com/valpackett/systemstat", "repository": { "Http": { - "url": "https://static.crates.io/crates/systemstat/0.2.3/download", - "sha256": "a24aec24a9312c83999a28e3ef9db7e2afd5c64bf47725b758cdc1cafd5b0bd2" + "url": "https://static.crates.io/crates/systemstat/0.2.4/download", + "sha256": "668a4db78b439df482c238f559e4ea869017f9e62ef0a059c8bfcd841a4df544" } }, "targets": [ @@ -69721,15 +69666,15 @@ "target": "bytesize" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -69749,7 +69694,7 @@ } }, "edition": "2018", - "version": "0.2.3" + "version": "0.2.4" }, "license": "Unlicense", "license_ids": [ @@ -69872,14 +69817,14 @@ ], "license_file": "LICENSE.txt" }, - "tar 0.4.39": { + "tar 0.4.43": { "name": "tar", - "version": "0.4.39", + "version": "0.4.43", "package_url": "https://github.com/alexcrichton/tar-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/tar/0.4.39/download", - "sha256": "ec96d2ffad078296368d46ff1cb309be1c23c513b4ab0e22a45de0185275ac96" + "url": "https://static.crates.io/crates/tar/0.4.43/download", + "sha256": "c65998313f8e17d0d553d28f91a0df93e4dbbbf770279c7bc21ca0f09ea1a1f6" } }, "targets": [ @@ -69911,167 +69856,167 @@ "deps": { "common": [ { - "id": "filetime 0.2.21", + "id": "filetime 0.2.25", "target": "filetime" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "aarch64-apple-ios": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "aarch64-apple-ios-sim": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "aarch64-linux-android": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "aarch64-unknown-fuchsia": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "aarch64-unknown-linux-gnu": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "arm-unknown-linux-gnueabi": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "armv7-linux-androideabi": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], "i686-apple-darwin": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "i686-linux-android": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "i686-unknown-freebsd": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "i686-unknown-linux-gnu": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "powerpc-unknown-linux-gnu": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "s390x-unknown-linux-gnu": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "x86_64-apple-darwin": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "x86_64-apple-ios": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "x86_64-linux-android": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "x86_64-unknown-freebsd": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "x86_64-unknown-fuchsia": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "x86_64-unknown-linux-gnu": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "xattr 0.2.3", + "id": "xattr 1.4.0", "target": "xattr" } ] } }, - "edition": "2018", - "version": "0.4.39" + "edition": "2021", + "version": "0.4.43" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -70199,7 +70144,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -70219,7 +70164,7 @@ "target": "opentelemetry" }, { - "id": "pin-project 1.1.2", + "id": "pin-project 1.1.8", "target": "pin_project" }, { @@ -70235,11 +70180,11 @@ "target": "static_assertions" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -70317,11 +70262,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -70340,14 +70285,14 @@ ], "license_file": "LICENSE" }, - "tempfile 3.12.0": { + "tempfile 3.15.0": { "name": "tempfile", - "version": "3.12.0", + "version": "3.15.0", "package_url": "https://github.com/Stebalien/tempfile", "repository": { "Http": { - "url": "https://static.crates.io/crates/tempfile/3.12.0/download", - "sha256": "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" + "url": "https://static.crates.io/crates/tempfile/3.15.0/download", + "sha256": "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" } }, "targets": [ @@ -70369,6 +70314,13 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "default", + "getrandom" + ], + "selects": {} + }, "deps": { "common": [ { @@ -70376,18 +70328,90 @@ "target": "cfg_if" }, { - "id": "fastrand 2.1.0", + "id": "fastrand 2.3.0", "target": "fastrand" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "selects": { + "aarch64-apple-darwin": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "aarch64-apple-ios": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "aarch64-apple-ios-sim": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "aarch64-linux-android": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "aarch64-pc-windows-msvc": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "aarch64-unknown-fuchsia": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "aarch64-unknown-linux-gnu": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "aarch64-unknown-nixos-gnu": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "aarch64-unknown-nto-qnx710": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "arm-unknown-linux-gnueabi": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "armv7-linux-androideabi": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "armv7-unknown-linux-gnueabi": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], "cfg(any(unix, target_os = \"wasi\"))": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -70396,11 +70420,107 @@ "id": "windows-sys 0.59.0", "target": "windows_sys" } + ], + "i686-apple-darwin": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "i686-linux-android": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "i686-pc-windows-msvc": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "i686-unknown-freebsd": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "i686-unknown-linux-gnu": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "powerpc-unknown-linux-gnu": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "s390x-unknown-linux-gnu": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "wasm32-wasip1": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "x86_64-apple-darwin": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "x86_64-apple-ios": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "x86_64-linux-android": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "x86_64-pc-windows-msvc": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "x86_64-unknown-freebsd": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "x86_64-unknown-fuchsia": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "x86_64-unknown-linux-gnu": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } + ], + "x86_64-unknown-nixos-gnu": [ + { + "id": "getrandom 0.2.15", + "target": "getrandom" + } ] } }, "edition": "2021", - "version": "3.12.0" + "version": "3.15.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -70583,7 +70703,7 @@ "selects": { "cfg(windows)": [ { - "id": "rustversion 1.0.14", + "id": "rustversion 1.0.19", "target": "rustversion" } ] @@ -70632,7 +70752,7 @@ "selects": { "cfg(windows)": [ { - "id": "winapi-util 0.1.5", + "id": "winapi-util 0.1.9", "target": "winapi_util" } ] @@ -70682,7 +70802,7 @@ "selects": { "cfg(not(windows))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -70736,7 +70856,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -70751,14 +70871,14 @@ ], "license_file": "LICENSE" }, - "termtree 0.4.1": { + "termtree 0.5.1": { "name": "termtree", - "version": "0.4.1", + "version": "0.5.1", "package_url": "https://github.com/rust-cli/termtree", "repository": { "Http": { - "url": "https://static.crates.io/crates/termtree/0.4.1/download", - "sha256": "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" + "url": "https://static.crates.io/crates/termtree/0.5.1/download", + "sha256": "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683" } }, "targets": [ @@ -70780,14 +70900,14 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "0.4.1" + "edition": "2021", + "version": "0.5.1" }, "license": "MIT", "license_ids": [ "MIT" ], - "license_file": "LICENSE" + "license_file": "LICENSE-MIT" }, "test-strategy 0.3.1": { "name": "test-strategy", @@ -70821,11 +70941,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -70833,7 +70953,7 @@ "target": "structmeta" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -70885,7 +71005,7 @@ "target": "getopts" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -70905,14 +71025,14 @@ ], "license_file": null }, - "textplots 0.8.4": { + "textplots 0.8.6": { "name": "textplots", - "version": "0.8.4", + "version": "0.8.6", "package_url": "https://github.com/loony-bean/textplots-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/textplots/0.8.4/download", - "sha256": "2171116bd71c738068fe42091b1509d70135a768443c9afd6c179b83dc6cdc79" + "url": "https://static.crates.io/crates/textplots/0.8.6/download", + "sha256": "f59b64803118dbff62f92842b3154a2c802dfd8e18660132bbcbfb141c637ae3" } }, "targets": [ @@ -70941,14 +71061,14 @@ "target": "drawille" }, { - "id": "rgb 0.8.37", + "id": "rgb 0.8.50", "target": "rgb" } ], "selects": {} }, "edition": "2021", - "version": "0.8.4" + "version": "0.8.6" }, "license": "MIT", "license_ids": [ @@ -70956,14 +71076,14 @@ ], "license_file": null }, - "textwrap 0.16.0": { + "textwrap 0.16.1": { "name": "textwrap", - "version": "0.16.0", + "version": "0.16.1", "package_url": "https://github.com/mgeisler/textwrap", "repository": { "Http": { - "url": "https://static.crates.io/crates/textwrap/0.16.0/download", - "sha256": "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" + "url": "https://static.crates.io/crates/textwrap/0.16.1/download", + "sha256": "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" } }, "targets": [ @@ -70986,7 +71106,7 @@ "**" ], "edition": "2021", - "version": "0.16.0" + "version": "0.16.1" }, "license": "MIT", "license_ids": [ @@ -70994,14 +71114,14 @@ ], "license_file": "LICENSE" }, - "thiserror 1.0.68": { + "thiserror 1.0.69": { "name": "thiserror", - "version": "1.0.68", + "version": "1.0.69", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror/1.0.68/download", - "sha256": "02dd99dc800bbb97186339685293e1cc5d9df1f8fae2d0aecd9ff1c77efea892" + "url": "https://static.crates.io/crates/thiserror/1.0.69/download", + "sha256": "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" } }, "targets": [ @@ -71038,7 +71158,7 @@ "deps": { "common": [ { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "build_script_build" } ], @@ -71048,13 +71168,13 @@ "proc_macro_deps": { "common": [ { - "id": "thiserror-impl 1.0.68", + "id": "thiserror-impl 1.0.69", "target": "thiserror_impl" } ], "selects": {} }, - "version": "1.0.68" + "version": "1.0.69" }, "build_script_attrs": { "compile_data_glob": [ @@ -71071,14 +71191,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thiserror 2.0.3": { + "thiserror 2.0.11": { "name": "thiserror", - "version": "2.0.3", + "version": "2.0.11", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror/2.0.3/download", - "sha256": "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa" + "url": "https://static.crates.io/crates/thiserror/2.0.11/download", + "sha256": "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" } }, "targets": [ @@ -71122,7 +71242,7 @@ "deps": { "common": [ { - "id": "thiserror 2.0.3", + "id": "thiserror 2.0.11", "target": "build_script_build" } ], @@ -71132,13 +71252,13 @@ "proc_macro_deps": { "common": [ { - "id": "thiserror-impl 2.0.3", + "id": "thiserror-impl 2.0.11", "target": "thiserror_impl" } ], "selects": {} }, - "version": "2.0.3" + "version": "2.0.11" }, "build_script_attrs": { "compile_data_glob": [ @@ -71155,14 +71275,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thiserror-impl 1.0.68": { + "thiserror-impl 1.0.69": { "name": "thiserror-impl", - "version": "1.0.68", + "version": "1.0.69", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror-impl/1.0.68/download", - "sha256": "a7c61ec9a6f64d2793d8a45faba21efbe3ced62a886d44c36a009b2b519b4c7e" + "url": "https://static.crates.io/crates/thiserror-impl/1.0.69/download", + "sha256": "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" } }, "targets": [ @@ -71187,22 +71307,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.0.68" + "version": "1.0.69" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -71211,14 +71331,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thiserror-impl 2.0.3": { + "thiserror-impl 2.0.11": { "name": "thiserror-impl", - "version": "2.0.3", + "version": "2.0.11", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror-impl/2.0.3/download", - "sha256": "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568" + "url": "https://static.crates.io/crates/thiserror-impl/2.0.11/download", + "sha256": "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" } }, "targets": [ @@ -71243,22 +71363,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.0.3" + "version": "2.0.11" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -71306,14 +71426,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thread_local 1.1.7": { + "thread_local 1.1.8": { "name": "thread_local", - "version": "1.1.7", + "version": "1.1.8", "package_url": "https://github.com/Amanieu/thread_local-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/thread_local/1.1.7/download", - "sha256": "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" + "url": "https://static.crates.io/crates/thread_local/1.1.8/download", + "sha256": "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" } }, "targets": [ @@ -71342,14 +71462,14 @@ "target": "cfg_if" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], "selects": {} }, "edition": "2021", - "version": "1.1.7" + "version": "1.1.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -71444,7 +71564,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -71524,7 +71644,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -71555,7 +71675,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -71617,7 +71737,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -71637,14 +71757,14 @@ ], "license_file": "LICENSE-APACHE" }, - "time 0.3.36": { + "time 0.3.37": { "name": "time", - "version": "0.3.36", + "version": "0.3.37", "package_url": "https://github.com/time-rs/time", "repository": { "Http": { - "url": "https://static.crates.io/crates/time/0.3.36/download", - "sha256": "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" + "url": "https://static.crates.io/crates/time/0.3.37/download", + "sha256": "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" } }, "targets": [ @@ -71685,7 +71805,7 @@ "target": "deranged" }, { - "id": "itoa 1.0.9", + "id": "itoa 1.0.14", "target": "itoa" }, { @@ -71704,241 +71824,241 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "aarch64-apple-ios": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "aarch64-apple-ios-sim": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "aarch64-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "aarch64-unknown-fuchsia": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "aarch64-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "arm-unknown-linux-gnueabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "armv7-linux-androideabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "i686-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "i686-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "i686-unknown-freebsd": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "i686-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "powerpc-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "s390x-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "x86_64-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "x86_64-apple-ios": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "x86_64-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "x86_64-unknown-freebsd": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "x86_64-unknown-fuchsia": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "x86_64-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "num_threads 0.1.6", + "id": "num_threads 0.1.7", "target": "num_threads" } ] @@ -71948,13 +72068,13 @@ "proc_macro_deps": { "common": [ { - "id": "time-macros 0.2.18", + "id": "time-macros 0.2.19", "target": "time_macros" } ], "selects": {} }, - "version": "0.3.36" + "version": "0.3.37" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -72002,14 +72122,14 @@ ], "license_file": "LICENSE-Apache" }, - "time-macros 0.2.18": { + "time-macros 0.2.19": { "name": "time-macros", - "version": "0.2.18", + "version": "0.2.19", "package_url": "https://github.com/time-rs/time", "repository": { "Http": { - "url": "https://static.crates.io/crates/time-macros/0.2.18/download", - "sha256": "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" + "url": "https://static.crates.io/crates/time-macros/0.2.19/download", + "sha256": "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" } }, "targets": [ @@ -72052,7 +72172,7 @@ "selects": {} }, "edition": "2021", - "version": "0.2.18" + "version": "0.2.19" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -72231,7 +72351,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.4", + "id": "displaydoc 0.2.5", "target": "displaydoc" } ], @@ -72281,7 +72401,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -72297,14 +72417,14 @@ ], "license_file": "LICENSE-APACHE" }, - "tinyvec 1.6.0": { + "tinyvec 1.8.1": { "name": "tinyvec", - "version": "1.6.0", + "version": "1.8.1", "package_url": "https://github.com/Lokathor/tinyvec", "repository": { "Http": { - "url": "https://static.crates.io/crates/tinyvec/1.6.0/download", - "sha256": "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" + "url": "https://static.crates.io/crates/tinyvec/1.8.1/download", + "sha256": "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" } }, "targets": [ @@ -72344,7 +72464,7 @@ "selects": {} }, "edition": "2018", - "version": "1.6.0" + "version": "1.8.1" }, "license": "Zlib OR Apache-2.0 OR MIT", "license_ids": [ @@ -72474,15 +72594,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -72498,14 +72618,14 @@ ], "license_file": null }, - "tokio 1.42.0": { + "tokio 1.43.0": { "name": "tokio", - "version": "1.42.0", + "version": "1.43.0", "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio/1.42.0/download", - "sha256": "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" + "url": "https://static.crates.io/crates/tokio/1.43.0/download", + "sha256": "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" } }, "targets": [ @@ -72570,78 +72690,78 @@ "target": "bytes" }, { - "id": "mio 1.0.2", + "id": "mio 1.0.3", "target": "mio" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "aarch64-apple-ios": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "aarch64-apple-ios-sim": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "aarch64-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "aarch64-pc-windows-msvc": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { @@ -72651,139 +72771,139 @@ ], "aarch64-unknown-fuchsia": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "aarch64-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "arm-unknown-linux-gnueabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "armv7-linux-androideabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "cfg(tokio_taskdump)": [ { - "id": "backtrace 0.3.68", + "id": "backtrace 0.3.74", "target": "backtrace" } ], "i686-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "i686-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "i686-pc-windows-msvc": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { @@ -72793,129 +72913,129 @@ ], "i686-unknown-freebsd": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "i686-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "powerpc-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "riscv32imc-unknown-none-elf": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "riscv64gc-unknown-none-elf": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "s390x-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "thumbv7em-none-eabi": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "thumbv8m.main-none-eabi": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "x86_64-apple-darwin": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "x86_64-apple-ios": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "x86_64-linux-android": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "x86_64-pc-windows-msvc": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { @@ -72925,63 +73045,63 @@ ], "x86_64-unknown-freebsd": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "x86_64-unknown-fuchsia": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "x86_64-unknown-linux-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "signal-hook-registry 1.4.1", + "id": "signal-hook-registry 1.4.2", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ], "x86_64-unknown-none": [ { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" } ] @@ -72991,13 +73111,13 @@ "proc_macro_deps": { "common": [ { - "id": "tokio-macros 2.4.0", + "id": "tokio-macros 2.5.0", "target": "tokio_macros" } ], "selects": {} }, - "version": "1.42.0" + "version": "1.43.0" }, "license": "MIT", "license_ids": [ @@ -73037,11 +73157,11 @@ "deps": { "common": [ { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -73057,14 +73177,14 @@ ], "license_file": "LICENSE-APACHE" }, - "tokio-macros 2.4.0": { + "tokio-macros 2.5.0": { "name": "tokio-macros", - "version": "2.4.0", + "version": "2.5.0", "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio-macros/2.4.0/download", - "sha256": "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" + "url": "https://static.crates.io/crates/tokio-macros/2.5.0/download", + "sha256": "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" } }, "targets": [ @@ -73089,22 +73209,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.4.0" + "version": "2.5.0" }, "license": "MIT", "license_ids": [ @@ -73156,11 +73276,11 @@ "target": "futures_util" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -73224,7 +73344,7 @@ "target": "rustls" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -73285,12 +73405,12 @@ "target": "rustls" }, { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -73306,14 +73426,14 @@ ], "license_file": "LICENSE-APACHE" }, - "tokio-rustls 0.26.0": { + "tokio-rustls 0.26.1": { "name": "tokio-rustls", - "version": "0.26.0", + "version": "0.26.1", "package_url": "https://github.com/rustls/tokio-rustls", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio-rustls/0.26.0/download", - "sha256": "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" + "url": "https://static.crates.io/crates/tokio-rustls/0.26.1/download", + "sha256": "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37" } }, "targets": [ @@ -73346,25 +73466,20 @@ "deps": { "common": [ { - "id": "rustls 0.23.18", + "id": "rustls 0.23.21", "target": "rustls" }, { - "id": "rustls-pki-types 1.10.0", - "target": "rustls_pki_types", - "alias": "pki_types" - }, - { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "0.26.0" + "version": "0.26.1" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -73431,7 +73546,7 @@ "target": "futures_sink" }, { - "id": "pin-project 1.1.2", + "id": "pin-project 1.1.8", "target": "pin_project" }, { @@ -73439,7 +73554,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -73449,7 +73564,7 @@ "proc_macro_deps": { "common": [ { - "id": "educe 0.4.22", + "id": "educe 0.4.23", "target": "educe" } ], @@ -73503,7 +73618,7 @@ "deps": { "common": [ { - "id": "either 1.8.1", + "id": "either 1.13.0", "target": "either" }, { @@ -73511,11 +73626,11 @@ "target": "futures_util" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -73574,11 +73689,11 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -73637,7 +73752,7 @@ "target": "futures_core" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -73701,11 +73816,11 @@ "target": "futures_util" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -73794,15 +73909,15 @@ "target": "futures_util" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "slab 0.4.8", + "id": "slab 0.4.9", "target": "slab" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" } ], @@ -73910,76 +74025,14 @@ ], "license_file": "LICENSE-APACHE" }, - "toml_edit 0.19.14": { - "name": "toml_edit", - "version": "0.19.14", - "package_url": "https://github.com/toml-rs/toml", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/toml_edit/0.19.14/download", - "sha256": "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" - } - }, - "targets": [ - { - "Library": { - "crate_name": "toml_edit", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "toml_edit", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "indexmap 2.2.6", - "target": "indexmap" - }, - { - "id": "toml_datetime 0.6.8", - "target": "toml_datetime" - }, - { - "id": "winnow 0.5.0", - "target": "winnow" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.19.14" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "toml_edit 0.22.20": { + "toml_edit 0.22.22": { "name": "toml_edit", - "version": "0.22.20", + "version": "0.22.22", "package_url": "https://github.com/toml-rs/toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml_edit/0.22.20/download", - "sha256": "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d" + "url": "https://static.crates.io/crates/toml_edit/0.22.22/download", + "sha256": "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" } }, "targets": [ @@ -74012,7 +74065,7 @@ "deps": { "common": [ { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { @@ -74020,14 +74073,14 @@ "target": "toml_datetime" }, { - "id": "winnow 0.6.20", + "id": "winnow 0.6.24", "target": "winnow" } ], "selects": {} }, "edition": "2021", - "version": "0.22.20" + "version": "0.22.22" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -74096,7 +74149,7 @@ "target": "bytes" }, { - "id": "h2 0.4.4", + "id": "h2 0.4.7", "target": "h2" }, { @@ -74112,11 +74165,11 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.1", + "id": "hyper 1.5.2", "target": "hyper" }, { - "id": "hyper-timeout 0.5.1", + "id": "hyper-timeout 0.5.2", "target": "hyper_timeout" }, { @@ -74128,19 +74181,19 @@ "target": "percent_encoding" }, { - "id": "pin-project 1.1.2", + "id": "pin-project 1.1.8", "target": "pin_project" }, { - "id": "prost 0.13.3", + "id": "prost 0.13.4", "target": "prost" }, { - "id": "socket2 0.5.7", + "id": "socket2 0.5.8", "target": "socket2" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -74170,7 +74223,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" } ], @@ -74225,27 +74278,27 @@ "deps": { "common": [ { - "id": "prettyplease 0.2.15", + "id": "prettyplease 0.2.29", "target": "prettyplease" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "prost-build 0.13.3", + "id": "prost-build 0.13.4", "target": "prost_build" }, { - "id": "prost-types 0.13.3", + "id": "prost-types 0.13.4", "target": "prost_types" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -74332,11 +74385,11 @@ "target": "indexmap" }, { - "id": "pin-project 1.1.2", + "id": "pin-project 1.1.8", "target": "pin_project" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -74344,11 +74397,11 @@ "target": "rand" }, { - "id": "slab 0.4.8", + "id": "slab 0.4.9", "target": "slab" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -74379,14 +74432,14 @@ ], "license_file": "LICENSE" }, - "tower 0.5.1": { + "tower 0.5.2": { "name": "tower", - "version": "0.5.1", + "version": "0.5.2", "package_url": "https://github.com/tower-rs/tower", "repository": { "Http": { - "url": "https://static.crates.io/crates/tower/0.5.1/download", - "sha256": "2873938d487c3cfb9aed7546dc9f2711d867c9f90c46b889989a2cb84eba6b4f" + "url": "https://static.crates.io/crates/tower/0.5.2/download", + "sha256": "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" } }, "targets": [ @@ -74453,27 +74506,27 @@ "target": "futures_util" }, { - "id": "hdrhistogram 7.5.2", + "id": "hdrhistogram 7.5.4", "target": "hdrhistogram" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "slab 0.4.8", + "id": "slab 0.4.9", "target": "slab" }, { - "id": "sync_wrapper 0.1.2", + "id": "sync_wrapper 1.0.2", "target": "sync_wrapper" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -74496,7 +74549,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.1" + "version": "0.5.2" }, "license": "MIT", "license_ids": [ @@ -74551,11 +74604,11 @@ "deps": { "common": [ { - "id": "base64 0.21.6", + "id": "base64 0.21.7", "target": "base64" }, { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -74579,11 +74632,11 @@ "target": "mime" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -74665,11 +74718,11 @@ "deps": { "common": [ { - "id": "async-compression 0.4.3", + "id": "async-compression 0.4.18", "target": "async_compression" }, { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -74693,11 +74746,11 @@ "target": "http_body_util" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -74705,7 +74758,7 @@ "target": "tokio_util" }, { - "id": "tower 0.5.1", + "id": "tower 0.5.2", "target": "tower" }, { @@ -74721,7 +74774,7 @@ "target": "tracing" }, { - "id": "uuid 1.11.0", + "id": "uuid 1.12.0", "target": "uuid" } ], @@ -74818,7 +74871,7 @@ "target": "tower_service" }, { - "id": "ulid 1.0.0", + "id": "ulid 1.1.4", "target": "ulid" } ], @@ -74907,11 +74960,11 @@ "target": "futures_util" }, { - "id": "pin-project 1.1.2", + "id": "pin-project 1.1.8", "target": "pin_project" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -74938,14 +74991,14 @@ ], "license_file": "LICENSE" }, - "tower_governor 0.4.2": { + "tower_governor 0.4.3": { "name": "tower_governor", - "version": "0.4.2", + "version": "0.4.3", "package_url": "https://github.com/benwis/tower-governor", "repository": { "Http": { - "url": "https://static.crates.io/crates/tower_governor/0.4.2/download", - "sha256": "313fa625fea5790ed56360a30ea980e41229cf482b4835801a67ef1922bf63b9" + "url": "https://static.crates.io/crates/tower_governor/0.4.3/download", + "sha256": "aea939ea6cfa7c4880f3e7422616624f97a567c16df67b53b11f0d03917a8e46" } }, "targets": [ @@ -74985,7 +75038,7 @@ "target": "forwarded_header_value" }, { - "id": "governor 0.6.0", + "id": "governor 0.6.3", "target": "governor" }, { @@ -74993,15 +75046,15 @@ "target": "http" }, { - "id": "pin-project 1.1.2", + "id": "pin-project 1.1.8", "target": "pin_project" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tower 0.4.13", + "id": "tower 0.5.2", "target": "tower" }, { @@ -75012,14 +75065,14 @@ "selects": {} }, "edition": "2021", - "version": "0.4.2" + "version": "0.4.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null + "license_file": "LICENSE" }, "tracing 0.1.41": { "name": "tracing", @@ -75063,11 +75116,11 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "pin-project-lite 0.2.13", + "id": "pin-project-lite 0.2.16", "target": "pin_project_lite" }, { @@ -75127,15 +75180,15 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.13", + "id": "crossbeam-channel 0.5.14", "target": "crossbeam_channel" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" }, { @@ -75186,15 +75239,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -75249,7 +75302,7 @@ "deps": { "common": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ], @@ -75303,7 +75356,7 @@ "deps": { "common": [ { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -75365,11 +75418,11 @@ "deps": { "common": [ { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -75420,7 +75473,7 @@ "deps": { "common": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -75492,11 +75545,11 @@ "deps": { "common": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "opentelemetry 0.27.0", + "id": "opentelemetry 0.27.1", "target": "opentelemetry" }, { @@ -75527,7 +75580,7 @@ "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { @@ -75687,7 +75740,7 @@ "deps": { "common": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { @@ -75776,11 +75829,11 @@ "target": "nu_ansi_term" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -75788,11 +75841,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "sharded-slab 0.1.4", + "id": "sharded-slab 0.1.7", "target": "sharded_slab" }, { @@ -75800,11 +75853,11 @@ "target": "smallvec" }, { - "id": "thread_local 1.1.7", + "id": "thread_local 1.1.8", "target": "thread_local" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" }, { @@ -75874,7 +75927,7 @@ "deps": { "common": [ { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -75890,45 +75943,6 @@ ], "license_file": null }, - "triomphe 0.1.9": { - "name": "triomphe", - "version": "0.1.9", - "package_url": "https://github.com/Manishearth/triomphe", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/triomphe/0.1.9/download", - "sha256": "0eee8098afad3fb0c54a9007aab6804558410503ad676d4633f9c2559a00ac0f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "triomphe", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "triomphe", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.1.9" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "trust-dns-proto 0.22.0": { "name": "trust-dns-proto", "version": "0.22.0", @@ -75972,7 +75986,7 @@ "target": "cfg_if" }, { - "id": "data-encoding 2.4.0", + "id": "data-encoding 2.7.0", "target": "data_encoding" }, { @@ -75996,7 +76010,7 @@ "target": "ipnet" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -76008,15 +76022,15 @@ "target": "smallvec" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tinyvec 1.6.0", + "id": "tinyvec 1.8.1", "target": "tinyvec" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -76024,7 +76038,7 @@ "target": "tracing" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" } ], @@ -76034,7 +76048,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.83", + "id": "async-trait 0.1.85", "target": "async_trait" }, { @@ -76104,7 +76118,7 @@ "target": "futures_util" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -76112,7 +76126,7 @@ "target": "lru_cache" }, { - "id": "parking_lot 0.12.1", + "id": "parking_lot 0.12.3", "target": "parking_lot" }, { @@ -76124,11 +76138,11 @@ "target": "smallvec" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -76171,14 +76185,14 @@ ], "license_file": "LICENSE-APACHE" }, - "try-lock 0.2.4": { + "try-lock 0.2.5": { "name": "try-lock", - "version": "0.2.4", + "version": "0.2.5", "package_url": "https://github.com/seanmonstar/try-lock", "repository": { "Http": { - "url": "https://static.crates.io/crates/try-lock/0.2.4/download", - "sha256": "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" + "url": "https://static.crates.io/crates/try-lock/0.2.5/download", + "sha256": "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" } }, "targets": [ @@ -76201,7 +76215,7 @@ "**" ], "edition": "2015", - "version": "0.2.4" + "version": "0.2.5" }, "license": "MIT", "license_ids": [ @@ -76260,7 +76274,7 @@ "target": "bytes" }, { - "id": "data-encoding 2.4.0", + "id": "data-encoding 2.7.0", "target": "data_encoding" }, { @@ -76268,11 +76282,11 @@ "target": "http" }, { - "id": "httparse 1.8.0", + "id": "httparse 1.9.5", "target": "httparse" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -76284,11 +76298,11 @@ "target": "sha1" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "url 2.5.3", + "id": "url 2.5.4", "target": "url" }, { @@ -76370,7 +76384,7 @@ "target": "scoped_tls" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -76518,14 +76532,14 @@ ], "license_file": "LICENSE" }, - "ucd-trie 0.1.6": { + "ucd-trie 0.1.7": { "name": "ucd-trie", - "version": "0.1.6", + "version": "0.1.7", "package_url": "https://github.com/BurntSushi/ucd-generate", "repository": { "Http": { - "url": "https://static.crates.io/crates/ucd-trie/0.1.6/download", - "sha256": "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" + "url": "https://static.crates.io/crates/ucd-trie/0.1.7/download", + "sha256": "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971" } }, "targets": [ @@ -76554,7 +76568,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.6" + "version": "0.1.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -76629,14 +76643,14 @@ ], "license_file": null }, - "ulid 1.0.0": { + "ulid 1.1.4": { "name": "ulid", - "version": "1.0.0", + "version": "1.1.4", "package_url": "https://github.com/dylanhart/ulid-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ulid/1.0.0/download", - "sha256": "13a3aaa69b04e5b66cc27309710a569ea23593612387d67daaf102e73aa974fd" + "url": "https://static.crates.io/crates/ulid/1.1.4/download", + "sha256": "f294bff79170ed1c5633812aff1e565c35d993a36e757f9bc0accf5eec4e6045" } }, "targets": [ @@ -76673,10 +76687,17 @@ "target": "rand" } ], - "selects": {} + "selects": { + "wasm32-unknown-unknown": [ + { + "id": "web-time 1.1.0", + "target": "web_time" + } + ] + } }, "edition": "2018", - "version": "1.0.0" + "version": "1.1.4" }, "license": "MIT", "license_ids": [ @@ -76723,14 +76744,14 @@ ], "license_file": "LICENSE-APACHE" }, - "unicase 2.6.0": { + "unicase 2.8.1": { "name": "unicase", - "version": "2.6.0", + "version": "2.8.1", "package_url": "https://github.com/seanmonstar/unicase", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicase/2.6.0/download", - "sha256": "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" + "url": "https://static.crates.io/crates/unicase/2.8.1/download", + "sha256": "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" } }, "targets": [ @@ -76745,18 +76766,6 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], "library_target_name": "unicase", @@ -76764,50 +76773,24 @@ "compile_data_glob": [ "**" ], - "deps": { - "common": [ - { - "id": "unicase 2.6.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "2.6.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "version_check 0.9.4", - "target": "version_check" - } - ], - "selects": {} - } + "edition": "2018", + "version": "2.8.1" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "unicode-bidi 0.3.13": { + "unicode-bidi 0.3.18": { "name": "unicode-bidi", - "version": "0.3.13", + "version": "0.3.18", "package_url": "https://github.com/servo/unicode-bidi", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-bidi/0.3.13/download", - "sha256": "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" + "url": "https://static.crates.io/crates/unicode-bidi/0.3.18/download", + "sha256": "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" } }, "targets": [ @@ -76838,7 +76821,7 @@ "selects": {} }, "edition": "2018", - "version": "0.3.13" + "version": "0.3.18" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -76847,14 +76830,14 @@ ], "license_file": "LICENSE-APACHE" }, - "unicode-ident 1.0.11": { + "unicode-ident 1.0.14": { "name": "unicode-ident", - "version": "1.0.11", + "version": "1.0.14", "package_url": "https://github.com/dtolnay/unicode-ident", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-ident/1.0.11/download", - "sha256": "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" + "url": "https://static.crates.io/crates/unicode-ident/1.0.14/download", + "sha256": "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" } }, "targets": [ @@ -76877,24 +76860,24 @@ "**" ], "edition": "2018", - "version": "1.0.11" + "version": "1.0.14" }, - "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", + "license": "(MIT OR Apache-2.0) AND Unicode-3.0", "license_ids": [ "Apache-2.0", "MIT", - "Unicode-DFS-2016" + "Unicode-3.0" ], "license_file": "LICENSE-APACHE" }, - "unicode-normalization 0.1.22": { + "unicode-normalization 0.1.24": { "name": "unicode-normalization", - "version": "0.1.22", + "version": "0.1.24", "package_url": "https://github.com/unicode-rs/unicode-normalization", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-normalization/0.1.22/download", - "sha256": "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" + "url": "https://static.crates.io/crates/unicode-normalization/0.1.24/download", + "sha256": "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" } }, "targets": [ @@ -76926,14 +76909,14 @@ "deps": { "common": [ { - "id": "tinyvec 1.6.0", + "id": "tinyvec 1.8.1", "target": "tinyvec" } ], "selects": {} }, "edition": "2018", - "version": "0.1.22" + "version": "0.1.24" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -76942,14 +76925,14 @@ ], "license_file": "LICENSE-APACHE" }, - "unicode-segmentation 1.10.1": { + "unicode-segmentation 1.12.0": { "name": "unicode-segmentation", - "version": "1.10.1", + "version": "1.12.0", "package_url": "https://github.com/unicode-rs/unicode-segmentation", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-segmentation/1.10.1/download", - "sha256": "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" + "url": "https://static.crates.io/crates/unicode-segmentation/1.12.0/download", + "sha256": "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" } }, "targets": [ @@ -76972,23 +76955,23 @@ "**" ], "edition": "2018", - "version": "1.10.1" + "version": "1.12.0" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "unicode-width 0.1.10": { + "unicode-width 0.1.14": { "name": "unicode-width", - "version": "0.1.10", + "version": "0.1.14", "package_url": "https://github.com/unicode-rs/unicode-width", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-width/0.1.10/download", - "sha256": "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" + "url": "https://static.crates.io/crates/unicode-width/0.1.14/download", + "sha256": "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" } }, "targets": [ @@ -77012,28 +76995,75 @@ ], "crate_features": { "common": [ + "cjk", "default" ], "selects": {} }, - "edition": "2015", - "version": "0.1.10" + "edition": "2021", + "version": "0.1.14" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "unicode-width 0.2.0": { + "name": "unicode-width", + "version": "0.2.0", + "package_url": "https://github.com/unicode-rs/unicode-width", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/unicode-width/0.2.0/download", + "sha256": "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" + } + }, + "targets": [ + { + "Library": { + "crate_name": "unicode_width", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "unicode_width", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "cjk", + "default" + ], + "selects": {} + }, + "edition": "2021", + "version": "0.2.0" + }, + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "unicode-xid 0.2.4": { + "unicode-xid 0.2.6": { "name": "unicode-xid", - "version": "0.2.4", + "version": "0.2.6", "package_url": "https://github.com/unicode-rs/unicode-xid", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-xid/0.2.4/download", - "sha256": "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" + "url": "https://static.crates.io/crates/unicode-xid/0.2.6/download", + "sha256": "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" } }, "targets": [ @@ -77062,7 +77092,7 @@ "selects": {} }, "edition": "2015", - "version": "0.2.4" + "version": "0.2.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -77279,7 +77309,7 @@ "target": "fnv" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" } ], @@ -77294,14 +77324,14 @@ ], "license_file": "LICENSE" }, - "url 2.5.3": { + "url 2.5.4": { "name": "url", - "version": "2.5.3", + "version": "2.5.4", "package_url": "https://github.com/servo/rust-url", "repository": { "Http": { - "url": "https://static.crates.io/crates/url/2.5.3/download", - "sha256": "8d157f1b96d14500ffdc1f10ba712e780825526c03d9a49b4d0324b0d9113ada" + "url": "https://static.crates.io/crates/url/2.5.4/download", + "sha256": "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" } }, "targets": [ @@ -77353,7 +77383,7 @@ "selects": {} }, "edition": "2018", - "version": "2.5.3" + "version": "2.5.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -77478,14 +77508,14 @@ ], "license_file": "LICENSE-APACHE" }, - "utf8-width 0.1.6": { + "utf8-width 0.1.7": { "name": "utf8-width", - "version": "0.1.6", + "version": "0.1.7", "package_url": "https://github.com/magiclen/utf8-width", "repository": { "Http": { - "url": "https://static.crates.io/crates/utf8-width/0.1.6/download", - "sha256": "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1" + "url": "https://static.crates.io/crates/utf8-width/0.1.7/download", + "sha256": "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" } }, "targets": [ @@ -77508,7 +77538,7 @@ "**" ], "edition": "2021", - "version": "0.1.6" + "version": "0.1.7" }, "license": "MIT", "license_ids": [ @@ -77555,14 +77585,14 @@ ], "license_file": "LICENSE-APACHE" }, - "utf8parse 0.2.1": { + "utf8parse 0.2.2": { "name": "utf8parse", - "version": "0.2.1", + "version": "0.2.2", "package_url": "https://github.com/alacritty/vte", "repository": { "Http": { - "url": "https://static.crates.io/crates/utf8parse/0.2.1/download", - "sha256": "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" + "url": "https://static.crates.io/crates/utf8parse/0.2.2/download", + "sha256": "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" } }, "targets": [ @@ -77591,7 +77621,7 @@ "selects": {} }, "edition": "2018", - "version": "0.2.1" + "version": "0.2.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -77600,14 +77630,14 @@ ], "license_file": "LICENSE-APACHE" }, - "uuid 1.11.0": { + "uuid 1.12.0": { "name": "uuid", - "version": "1.11.0", + "version": "1.12.0", "package_url": "https://github.com/uuid-rs/uuid", "repository": { "Http": { - "url": "https://static.crates.io/crates/uuid/1.11.0/download", - "sha256": "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" + "url": "https://static.crates.io/crates/uuid/1.12.0/download", + "sha256": "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4" } }, "targets": [ @@ -77643,7 +77673,7 @@ "deps": { "common": [ { - "id": "getrandom 0.2.10", + "id": "getrandom 0.2.15", "target": "getrandom" }, { @@ -77654,7 +77684,7 @@ "selects": {} }, "edition": "2018", - "version": "1.11.0" + "version": "1.12.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -77769,14 +77799,14 @@ ], "license_file": "LICENSE-APACHE" }, - "version_check 0.9.4": { + "version_check 0.9.5": { "name": "version_check", - "version": "0.9.4", + "version": "0.9.5", "package_url": "https://github.com/SergioBenitez/version_check", "repository": { "Http": { - "url": "https://static.crates.io/crates/version_check/0.9.4/download", - "sha256": "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" + "url": "https://static.crates.io/crates/version_check/0.9.5/download", + "sha256": "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" } }, "targets": [ @@ -77799,7 +77829,7 @@ "**" ], "edition": "2015", - "version": "0.9.4" + "version": "0.9.5" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -77867,19 +77897,19 @@ "target": "cfg_if" }, { - "id": "chrono 0.4.38", + "id": "chrono 0.4.39", "target": "chrono" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "ordered-float 4.2.0", + "id": "ordered-float 4.6.0", "target": "ordered_float" }, { - "id": "regex 1.11.0", + "id": "regex 1.11.1", "target": "regex" }, { @@ -77887,7 +77917,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -77918,7 +77948,7 @@ "deps": { "common": [ { - "id": "lalrpop 0.20.0", + "id": "lalrpop 0.20.2", "target": "lalrpop" } ], @@ -77963,7 +77993,7 @@ "deps": { "common": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { @@ -78016,7 +78046,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ] @@ -78032,53 +78062,14 @@ ], "license_file": "LICENSE-APACHE" }, - "waker-fn 1.1.0": { - "name": "waker-fn", - "version": "1.1.0", - "package_url": "https://github.com/stjepang/waker-fn", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/waker-fn/1.1.0/download", - "sha256": "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" - } - }, - "targets": [ - { - "Library": { - "crate_name": "waker_fn", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "waker_fn", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.1.0" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "walkdir 2.3.3": { + "walkdir 2.5.0": { "name": "walkdir", - "version": "2.3.3", + "version": "2.5.0", "package_url": "https://github.com/BurntSushi/walkdir", "repository": { "Http": { - "url": "https://static.crates.io/crates/walkdir/2.3.3/download", - "sha256": "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" + "url": "https://static.crates.io/crates/walkdir/2.5.0/download", + "sha256": "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" } }, "targets": [ @@ -78110,14 +78101,14 @@ "selects": { "cfg(windows)": [ { - "id": "winapi-util 0.1.5", + "id": "winapi-util 0.1.9", "target": "winapi_util" } ] } }, "edition": "2018", - "version": "2.3.3" + "version": "2.5.0" }, "license": "Unlicense/MIT", "license_ids": [ @@ -78126,14 +78117,14 @@ ], "license_file": "LICENSE-MIT" }, - "walrus 0.21.1": { + "walrus 0.21.3": { "name": "walrus", - "version": "0.21.1", + "version": "0.21.3", "package_url": "https://github.com/rustwasm/walrus", "repository": { "Http": { - "url": "https://static.crates.io/crates/walrus/0.21.1/download", - "sha256": "467611cafbc8a84834b77d2b4bb191fd2f5769752def8340407e924390c6883b" + "url": "https://static.crates.io/crates/walrus/0.21.3/download", + "sha256": "501ace8ec3492754a9b3c4b59eac7159ceff8414f9e43a05029fe8ef43b9218f" } }, "targets": [ @@ -78158,7 +78149,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -78174,7 +78165,7 @@ "target": "leb128" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -78198,7 +78189,7 @@ ], "selects": {} }, - "version": "0.21.1" + "version": "0.21.3" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -78243,11 +78234,11 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { @@ -78299,7 +78290,7 @@ "deps": { "common": [ { - "id": "try-lock 0.2.4", + "id": "try-lock 0.2.5", "target": "try_lock" } ], @@ -78371,7 +78362,7 @@ "target": "futures_util" }, { - "id": "headers 0.3.8", + "id": "headers 0.3.9", "target": "headers" }, { @@ -78379,11 +78370,11 @@ "target": "http" }, { - "id": "hyper 0.14.27", + "id": "hyper 0.14.32", "target": "hyper" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -78391,7 +78382,7 @@ "target": "mime" }, { - "id": "mime_guess 2.0.4", + "id": "mime_guess 2.0.5", "target": "mime_guess" }, { @@ -78403,7 +78394,7 @@ "target": "percent_encoding" }, { - "id": "pin-project 1.1.2", + "id": "pin-project 1.1.8", "target": "pin_project" }, { @@ -78419,7 +78410,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { @@ -78427,7 +78418,7 @@ "target": "serde_urlencoded" }, { - "id": "tokio 1.42.0", + "id": "tokio 1.43.0", "target": "tokio" }, { @@ -78508,14 +78499,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen 0.2.95": { + "wasm-bindgen 0.2.100": { "name": "wasm-bindgen", - "version": "0.2.95", + "version": "0.2.100", "package_url": "https://github.com/rustwasm/wasm-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen/0.2.95/download", - "sha256": "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e" + "url": "https://static.crates.io/crates/wasm-bindgen/0.2.100/download", + "sha256": "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" } }, "targets": [ @@ -78552,7 +78543,8 @@ "crate_features": { "common": [ "default", - "spans", + "msrv", + "rustversion", "std" ], "selects": {} @@ -78564,11 +78556,11 @@ "target": "cfg_if" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "build_script_build" } ], @@ -78578,13 +78570,17 @@ "proc_macro_deps": { "common": [ { - "id": "wasm-bindgen-macro 0.2.95", + "id": "rustversion 1.0.19", + "target": "rustversion" + }, + { + "id": "wasm-bindgen-macro 0.2.100", "target": "wasm_bindgen_macro" } ], "selects": {} }, - "version": "0.2.95" + "version": "0.2.100" }, "build_script_attrs": { "compile_data_glob": [ @@ -78601,14 +78597,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-backend 0.2.95": { + "wasm-bindgen-backend 0.2.100": { "name": "wasm-bindgen-backend", - "version": "0.2.95", + "version": "0.2.100", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-backend/0.2.95/download", - "sha256": "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358" + "url": "https://static.crates.io/crates/wasm-bindgen-backend/0.2.100/download", + "sha256": "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" } }, "targets": [ @@ -78630,12 +78626,6 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "spans" - ], - "selects": {} - }, "deps": { "common": [ { @@ -78643,34 +78633,30 @@ "target": "bumpalo" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "once_cell 1.19.0", - "target": "once_cell" - }, - { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" }, { - "id": "wasm-bindgen-shared 0.2.95", + "id": "wasm-bindgen-shared 0.2.100", "target": "wasm_bindgen_shared" } ], "selects": {} }, "edition": "2021", - "version": "0.2.95" + "version": "0.2.100" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -78679,14 +78665,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-futures 0.4.37": { + "wasm-bindgen-futures 0.4.50": { "name": "wasm-bindgen-futures", - "version": "0.4.37", + "version": "0.4.50", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-futures/0.4.37/download", - "sha256": "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" + "url": "https://static.crates.io/crates/wasm-bindgen-futures/0.4.50/download", + "sha256": "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" } }, "targets": [ @@ -78708,6 +78694,13 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "default", + "std" + ], + "selects": {} + }, "deps": { "common": [ { @@ -78715,41 +78708,45 @@ "target": "cfg_if" }, { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.95", + "id": "once_cell 1.20.2", + "target": "once_cell" + }, + { + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], "selects": { "cfg(target_feature = \"atomics\")": [ { - "id": "web-sys 0.3.64", + "id": "web-sys 0.3.77", "target": "web_sys" } ] } }, - "edition": "2018", - "version": "0.4.37" + "edition": "2021", + "version": "0.4.50" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-macro 0.2.95": { + "wasm-bindgen-macro 0.2.100": { "name": "wasm-bindgen-macro", - "version": "0.2.95", + "version": "0.2.100", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-macro/0.2.95/download", - "sha256": "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56" + "url": "https://static.crates.io/crates/wasm-bindgen-macro/0.2.100/download", + "sha256": "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" } }, "targets": [ @@ -78771,27 +78768,21 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "spans" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "wasm-bindgen-macro-support 0.2.95", + "id": "wasm-bindgen-macro-support 0.2.100", "target": "wasm_bindgen_macro_support" } ], "selects": {} }, "edition": "2021", - "version": "0.2.95" + "version": "0.2.100" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -78800,14 +78791,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-macro-support 0.2.95": { + "wasm-bindgen-macro-support 0.2.100": { "name": "wasm-bindgen-macro-support", - "version": "0.2.95", + "version": "0.2.100", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.95/download", - "sha256": "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68" + "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.100/download", + "sha256": "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" } }, "targets": [ @@ -78829,39 +78820,33 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "spans" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" }, { - "id": "wasm-bindgen-backend 0.2.95", + "id": "wasm-bindgen-backend 0.2.100", "target": "wasm_bindgen_backend" }, { - "id": "wasm-bindgen-shared 0.2.95", + "id": "wasm-bindgen-shared 0.2.100", "target": "wasm_bindgen_shared" } ], "selects": {} }, "edition": "2021", - "version": "0.2.95" + "version": "0.2.100" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -78870,14 +78855,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-shared 0.2.95": { + "wasm-bindgen-shared 0.2.100": { "name": "wasm-bindgen-shared", - "version": "0.2.95", + "version": "0.2.100", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-shared/0.2.95/download", - "sha256": "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" + "url": "https://static.crates.io/crates/wasm-bindgen-shared/0.2.100/download", + "sha256": "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" } }, "targets": [ @@ -78914,14 +78899,18 @@ "deps": { "common": [ { - "id": "wasm-bindgen-shared 0.2.95", + "id": "unicode-ident 1.0.14", + "target": "unicode_ident" + }, + { + "id": "wasm-bindgen-shared 0.2.100", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.2.95" + "version": "0.2.100" }, "build_script_attrs": { "compile_data_glob": [ @@ -79109,6 +79098,85 @@ ], "license_file": null }, + "wasm-encoder 0.223.0": { + "name": "wasm-encoder", + "version": "0.223.0", + "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-encoder", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/wasm-encoder/0.223.0/download", + "sha256": "7e636076193fa68103e937ac951b5f2f587624097017d764b8984d9c0f149464" + } + }, + "targets": [ + { + "Library": { + "crate_name": "wasm_encoder", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "wasm_encoder", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "component-model", + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "leb128 0.2.5", + "target": "leb128" + }, + { + "id": "wasm-encoder 0.223.0", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.223.0" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": null + }, "wasm-smith 0.212.0": { "name": "wasm-smith", "version": "0.212.0", @@ -79147,19 +79215,19 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "arbitrary 1.3.2", + "id": "arbitrary 1.4.1", "target": "arbitrary" }, { - "id": "flagset 0.4.3", + "id": "flagset 0.4.6", "target": "flagset" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { @@ -79186,14 +79254,14 @@ ], "license_file": "LICENSE" }, - "wasm-streams 0.4.0": { + "wasm-streams 0.4.2": { "name": "wasm-streams", - "version": "0.4.0", + "version": "0.4.2", "package_url": "https://github.com/MattiasBuelens/wasm-streams/", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-streams/0.4.0/download", - "sha256": "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" + "url": "https://static.crates.io/crates/wasm-streams/0.4.2/download", + "sha256": "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" } }, "targets": [ @@ -79222,26 +79290,26 @@ "target": "futures_util" }, { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" }, { - "id": "wasm-bindgen-futures 0.4.37", + "id": "wasm-bindgen-futures 0.4.50", "target": "wasm_bindgen_futures" }, { - "id": "web-sys 0.3.64", + "id": "web-sys 0.3.77", "target": "web_sys" } ], "selects": {} }, "edition": "2021", - "version": "0.4.0" + "version": "0.4.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -79282,15 +79350,15 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" } ], @@ -79350,7 +79418,7 @@ "target": "ahash" }, { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -79358,11 +79426,11 @@ "target": "hashbrown" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -79427,7 +79495,7 @@ "target": "ahash" }, { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -79435,11 +79503,11 @@ "target": "hashbrown" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -79514,11 +79582,11 @@ "deps": { "common": [ { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -79550,6 +79618,78 @@ ], "license_file": null }, + "wasmparser 0.223.0": { + "name": "wasmparser", + "version": "0.223.0", + "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/wasmparser/0.223.0/download", + "sha256": "d5a99faceb1a5a84dd6084ec4bfa4b2ab153b5793b43fd8f58b89232634afc35" + } + }, + "targets": [ + { + "Library": { + "crate_name": "wasmparser", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "wasmparser", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "bitflags 2.8.0", + "target": "bitflags" + }, + { + "id": "wasmparser 0.223.0", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.223.0" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": null + }, "wasmprinter 0.217.0": { "name": "wasmprinter", "version": "0.217.0", @@ -79582,7 +79722,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -79645,7 +79785,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -79669,14 +79809,14 @@ ], "license_file": null }, - "wasmtime 28.0.0": { + "wasmtime 28.0.1": { "name": "wasmtime", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime/28.0.0/download", - "sha256": "f639ecae347b9a2227e453a7b7671e84370a0b61f47a15e0390fe9b7725e47b3" + "url": "https://static.crates.io/crates/wasmtime/28.0.1/download", + "sha256": "edd30973c65eceb0f37dfcc430d83abd5eb24015fdfcab6912f52949287e04f0" } }, "targets": [ @@ -79726,11 +79866,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "bitflags 2.6.0", + "id": "bitflags 2.8.0", "target": "bitflags" }, { @@ -79746,19 +79886,19 @@ "target": "hashbrown" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" }, { - "id": "libm 0.2.7", + "id": "libm 0.2.11", "target": "libm" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -79766,11 +79906,11 @@ "target": "object" }, { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" }, { - "id": "postcard 1.0.8", + "id": "postcard 1.1.1", "target": "postcard" }, { @@ -79798,27 +79938,27 @@ "target": "wasmparser" }, { - "id": "wasmtime 28.0.0", + "id": "wasmtime 28.0.1", "target": "build_script_build" }, { - "id": "wasmtime-asm-macros 28.0.0", + "id": "wasmtime-asm-macros 28.0.1", "target": "wasmtime_asm_macros" }, { - "id": "wasmtime-cranelift 28.0.0", + "id": "wasmtime-cranelift 28.0.1", "target": "wasmtime_cranelift" }, { - "id": "wasmtime-environ 28.0.0", + "id": "wasmtime-environ 28.0.1", "target": "wasmtime_environ" }, { - "id": "wasmtime-jit-icache-coherence 28.0.0", + "id": "wasmtime-jit-icache-coherence 28.0.1", "target": "wasmtime_jit_icache_coherence" }, { - "id": "wasmtime-slab 28.0.0", + "id": "wasmtime-slab 28.0.1", "target": "wasmtime_slab" } ], @@ -79829,25 +79969,25 @@ "target": "mach2" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "aarch64-apple-ios": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "aarch64-apple-ios-sim": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "aarch64-linux-android": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -79859,7 +79999,7 @@ ], "aarch64-unknown-fuchsia": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -79869,7 +80009,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -79879,13 +80019,13 @@ "target": "memfd" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -79895,13 +80035,13 @@ "target": "memfd" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "armv7-linux-androideabi": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -79911,7 +80051,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -79921,13 +80061,13 @@ "target": "mach2" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "i686-linux-android": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -79939,7 +80079,7 @@ ], "i686-unknown-freebsd": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -79949,7 +80089,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -79959,7 +80099,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -79969,11 +80109,11 @@ "target": "memfd" }, { - "id": "psm 0.1.21", + "id": "psm 0.1.24", "target": "psm" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -79983,19 +80123,19 @@ "target": "mach2" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "x86_64-apple-ios": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "x86_64-linux-android": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80007,13 +80147,13 @@ ], "x86_64-unknown-freebsd": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], "x86_64-unknown-fuchsia": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80023,7 +80163,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80033,7 +80173,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ] @@ -80051,13 +80191,13 @@ "target": "serde_derive" }, { - "id": "wasmtime-versioned-export-macros 28.0.0", + "id": "wasmtime-versioned-export-macros 28.0.1", "target": "wasmtime_versioned_export_macros" } ], "selects": {} }, - "version": "28.0.0" + "version": "28.0.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -80069,7 +80209,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -80078,7 +80218,7 @@ "proc_macro_deps": { "common": [ { - "id": "wasmtime-versioned-export-macros 28.0.0", + "id": "wasmtime-versioned-export-macros 28.0.1", "target": "wasmtime_versioned_export_macros" } ], @@ -80091,14 +80231,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-asm-macros 28.0.0": { + "wasmtime-asm-macros 28.0.1": { "name": "wasmtime-asm-macros", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-asm-macros/28.0.0/download", - "sha256": "882a18800471cfc063c8b3ccf75723784acc3fd534009ac09421f2fac2fcdcec" + "url": "https://static.crates.io/crates/wasmtime-asm-macros/28.0.1/download", + "sha256": "c6c21dd30d1f3f93ee390ac1a7ec304ecdbfdab6390e1add41a1f52727b0992b" } }, "targets": [ @@ -80130,7 +80270,7 @@ "selects": {} }, "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80138,14 +80278,14 @@ ], "license_file": null }, - "wasmtime-component-macro 28.0.0": { + "wasmtime-component-macro 28.0.1": { "name": "wasmtime-component-macro", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-component-macro/28.0.0/download", - "sha256": "eb5c0a77c9e1927c3d471f53cc13767c3d3438e5d5ffd394e3eb31c86445fd60" + "url": "https://static.crates.io/crates/wasmtime-component-macro/28.0.1/download", + "sha256": "9f948a6ef3119d52c9f12936970de28ddf3f9bea04bc65571f4a92d2e5ab38f4" } }, "targets": [ @@ -80182,31 +80322,31 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" }, { - "id": "wasmtime-component-macro 28.0.0", + "id": "wasmtime-component-macro 28.0.1", "target": "build_script_build" }, { - "id": "wasmtime-component-util 28.0.0", + "id": "wasmtime-component-util 28.0.1", "target": "wasmtime_component_util" }, { - "id": "wasmtime-wit-bindgen 28.0.0", + "id": "wasmtime-wit-bindgen 28.0.1", "target": "wasmtime_wit_bindgen" }, { @@ -80217,7 +80357,7 @@ "selects": {} }, "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -80233,14 +80373,14 @@ ], "license_file": null }, - "wasmtime-component-util 28.0.0": { + "wasmtime-component-util 28.0.1": { "name": "wasmtime-component-util", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-component-util/28.0.0/download", - "sha256": "43702ca98bf5162eca0573db691ed9ecd36d716f8c6688410fe26ec16b6f9bcb" + "url": "https://static.crates.io/crates/wasmtime-component-util/28.0.1/download", + "sha256": "b9275aa01ceaaa2fa6c0ecaa5267518d80b9d6e9ae7c7ea42f4c6e073e6a69ef" } }, "targets": [ @@ -80263,7 +80403,7 @@ "**" ], "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80271,14 +80411,14 @@ ], "license_file": null }, - "wasmtime-cranelift 28.0.0": { + "wasmtime-cranelift 28.0.1": { "name": "wasmtime-cranelift", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-cranelift/28.0.0/download", - "sha256": "20070aa5b75080a8932ec328419faf841df2bc6ceb16b55b0df2b952098392a2" + "url": "https://static.crates.io/crates/wasmtime-cranelift/28.0.1/download", + "sha256": "0701a44a323267aae4499672dae422b266cee3135a23b640972ec8c0e10a44a2" } }, "targets": [ @@ -80310,7 +80450,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -80318,23 +80458,23 @@ "target": "cfg_if" }, { - "id": "cranelift-codegen 0.115.0", + "id": "cranelift-codegen 0.115.1", "target": "cranelift_codegen" }, { - "id": "cranelift-control 0.115.0", + "id": "cranelift-control 0.115.1", "target": "cranelift_control" }, { - "id": "cranelift-entity 0.115.0", + "id": "cranelift-entity 0.115.1", "target": "cranelift_entity" }, { - "id": "cranelift-frontend 0.115.0", + "id": "cranelift-frontend 0.115.1", "target": "cranelift_frontend" }, { - "id": "cranelift-native 0.115.0", + "id": "cranelift-native 0.115.1", "target": "cranelift_native" }, { @@ -80342,11 +80482,11 @@ "target": "gimli" }, { - "id": "itertools 0.12.0", + "id": "itertools 0.12.1", "target": "itertools" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -80362,7 +80502,7 @@ "target": "target_lexicon" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { @@ -80370,7 +80510,7 @@ "target": "wasmparser" }, { - "id": "wasmtime-environ 28.0.0", + "id": "wasmtime-environ 28.0.1", "target": "wasmtime_environ" } ], @@ -80380,13 +80520,13 @@ "proc_macro_deps": { "common": [ { - "id": "wasmtime-versioned-export-macros 28.0.0", + "id": "wasmtime-versioned-export-macros 28.0.1", "target": "wasmtime_versioned_export_macros" } ], "selects": {} }, - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80394,14 +80534,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-environ 28.0.0": { + "wasmtime-environ 28.0.1": { "name": "wasmtime-environ", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-environ/28.0.0/download", - "sha256": "2604ddb24879d4dc1dedcb7081d7a8e017259bce916fdae097a97db52cbaab80" + "url": "https://static.crates.io/crates/wasmtime-environ/28.0.1/download", + "sha256": "264c968c1b81d340355ece2be0bc31a10f567ccb6ce08512c3b7d10e26f3cbe5" } }, "targets": [ @@ -80435,15 +80575,15 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "cranelift-bitset 0.115.0", + "id": "cranelift-bitset 0.115.1", "target": "cranelift_bitset" }, { - "id": "cranelift-entity 0.115.0", + "id": "cranelift-entity 0.115.1", "target": "cranelift_entity" }, { @@ -80451,11 +80591,11 @@ "target": "gimli" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { @@ -80463,7 +80603,7 @@ "target": "object" }, { - "id": "postcard 1.0.8", + "id": "postcard 1.1.1", "target": "postcard" }, { @@ -80503,7 +80643,7 @@ ], "selects": {} }, - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80511,14 +80651,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-fiber 28.0.0": { + "wasmtime-fiber 28.0.1": { "name": "wasmtime-fiber", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-fiber/28.0.0/download", - "sha256": "98593412d2b167ebe2b59d4a17a184978a72f976b53b3a0ec05629451079ac1d" + "url": "https://static.crates.io/crates/wasmtime-fiber/28.0.1/download", + "sha256": "78505221fd5bd7b07b4e1fa2804edea49dc231e626ad6861adc8f531812973e6" } }, "targets": [ @@ -80555,7 +80695,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -80563,18 +80703,18 @@ "target": "cfg_if" }, { - "id": "wasmtime-asm-macros 28.0.0", + "id": "wasmtime-asm-macros 28.0.1", "target": "wasmtime_asm_macros" }, { - "id": "wasmtime-fiber 28.0.0", + "id": "wasmtime-fiber 28.0.1", "target": "build_script_build" } ], "selects": { "cfg(unix)": [ { - "id": "rustix 0.38.32", + "id": "rustix 0.38.43", "target": "rustix" } ], @@ -80590,13 +80730,13 @@ "proc_macro_deps": { "common": [ { - "id": "wasmtime-versioned-export-macros 28.0.0", + "id": "wasmtime-versioned-export-macros 28.0.1", "target": "wasmtime_versioned_export_macros" } ], "selects": {} }, - "version": "28.0.0" + "version": "28.0.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -80608,7 +80748,7 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" } ], @@ -80617,7 +80757,7 @@ "proc_macro_deps": { "common": [ { - "id": "wasmtime-versioned-export-macros 28.0.0", + "id": "wasmtime-versioned-export-macros 28.0.1", "target": "wasmtime_versioned_export_macros" } ], @@ -80630,14 +80770,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-jit-icache-coherence 28.0.0": { + "wasmtime-jit-icache-coherence 28.0.1": { "name": "wasmtime-jit-icache-coherence", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-jit-icache-coherence/28.0.0/download", - "sha256": "d40d7722b9e1fbeae135715710a8a2570b1e6cf72b74dd653962d89831c6c70d" + "url": "https://static.crates.io/crates/wasmtime-jit-icache-coherence/28.0.1/download", + "sha256": "9bedb677ca1b549d98f95e9e1f9251b460090d99a2c196a0614228c064bf2e59" } }, "targets": [ @@ -80662,7 +80802,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -80673,7 +80813,7 @@ "selects": { "cfg(any(target_os = \"linux\", target_os = \"macos\", target_os = \"freebsd\", target_os = \"android\"))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -80686,7 +80826,7 @@ } }, "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80694,14 +80834,14 @@ ], "license_file": null }, - "wasmtime-slab 28.0.0": { + "wasmtime-slab 28.0.1": { "name": "wasmtime-slab", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-slab/28.0.0/download", - "sha256": "8579c335220b4ece9aa490a0e8b46de78cd342b195ab21ff981d095e14b52383" + "url": "https://static.crates.io/crates/wasmtime-slab/28.0.1/download", + "sha256": "564905638c132c275d365c1fa074f0b499790568f43148d29de84ccecfb5cb31" } }, "targets": [ @@ -80724,7 +80864,7 @@ "**" ], "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80732,14 +80872,14 @@ ], "license_file": null }, - "wasmtime-versioned-export-macros 28.0.0": { + "wasmtime-versioned-export-macros 28.0.1": { "name": "wasmtime-versioned-export-macros", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-versioned-export-macros/28.0.0/download", - "sha256": "d7de0a56fb0a69b185968f2d7a9ba54750920a806470dff7ad8de91ac06d277e" + "url": "https://static.crates.io/crates/wasmtime-versioned-export-macros/28.0.1/download", + "sha256": "1e91092e6cf77390eeccee273846a9327f3e8f91c3c6280f60f37809f0e62d29" } }, "targets": [ @@ -80764,22 +80904,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80787,14 +80927,14 @@ ], "license_file": null }, - "wasmtime-winch 28.0.0": { + "wasmtime-winch 28.0.1": { "name": "wasmtime-winch", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-winch/28.0.0/download", - "sha256": "abd309943c443f5590d12f9aba9ba63c481091c955a0a14de0c2a9e0e3aaeca9" + "url": "https://static.crates.io/crates/wasmtime-winch/28.0.1/download", + "sha256": "b111d909dc604c741bd8ac2f4af373eaa5c68c34b5717271bcb687688212cef8" } }, "targets": [ @@ -80819,11 +80959,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "cranelift-codegen 0.115.0", + "id": "cranelift-codegen 0.115.1", "target": "cranelift_codegen" }, { @@ -80843,22 +80983,22 @@ "target": "wasmparser" }, { - "id": "wasmtime-cranelift 28.0.0", + "id": "wasmtime-cranelift 28.0.1", "target": "wasmtime_cranelift" }, { - "id": "wasmtime-environ 28.0.0", + "id": "wasmtime-environ 28.0.1", "target": "wasmtime_environ" }, { - "id": "winch-codegen 28.0.0", + "id": "winch-codegen 28.0.1", "target": "winch_codegen" } ], "selects": {} }, "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80866,14 +81006,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-wit-bindgen 28.0.0": { + "wasmtime-wit-bindgen 28.0.1": { "name": "wasmtime-wit-bindgen", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-wit-bindgen/28.0.0/download", - "sha256": "969f83022dac3435d6469edb582ceed04cfe32aa44dc3ef16e5cb55574633df8" + "url": "https://static.crates.io/crates/wasmtime-wit-bindgen/28.0.1/download", + "sha256": "5f38f7a5eb2f06f53fe943e7fb8bf4197f7cf279f1bc52c0ce56e9d3ffd750a4" } }, "targets": [ @@ -80898,7 +81038,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -80906,7 +81046,7 @@ "target": "heck" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { @@ -80917,7 +81057,7 @@ "selects": {} }, "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80976,7 +81116,7 @@ "target": "memchr" }, { - "id": "unicode-width 0.1.10", + "id": "unicode-width 0.1.14", "target": "unicode_width" }, { @@ -80995,14 +81135,85 @@ ], "license_file": "LICENSE" }, - "wat 1.212.0": { + "wast 223.0.0": { + "name": "wast", + "version": "223.0.0", + "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wast", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/wast/223.0.0/download", + "sha256": "d59b2ba8a2ff9f06194b7be9524f92e45e70149f4dacc0d0c7ad92b59ac875e4" + } + }, + "targets": [ + { + "Library": { + "crate_name": "wast", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "wast", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "component-model", + "wasm-module" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "bumpalo 3.16.0", + "target": "bumpalo" + }, + { + "id": "leb128 0.2.5", + "target": "leb128" + }, + { + "id": "memchr 2.7.4", + "target": "memchr" + }, + { + "id": "unicode-width 0.2.0", + "target": "unicode_width" + }, + { + "id": "wasm-encoder 0.223.0", + "target": "wasm_encoder" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "223.0.0" + }, + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": null + }, + "wat 1.223.0": { "name": "wat", - "version": "1.212.0", + "version": "1.223.0", "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wat", "repository": { "Http": { - "url": "https://static.crates.io/crates/wat/1.212.0/download", - "sha256": "c74ca7f93f11a5d6eed8499f2a8daaad6e225cab0151bc25a091fff3b987532f" + "url": "https://static.crates.io/crates/wat/1.223.0/download", + "sha256": "662786915c427e4918ff01eabb3c4756d4d947cd8f635761526b4cc9da2eaaad" } }, "targets": [ @@ -81024,32 +81235,40 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "component-model", + "default" + ], + "selects": {} + }, "deps": { "common": [ { - "id": "wast 212.0.0", + "id": "wast 223.0.0", "target": "wast" } ], "selects": {} }, "edition": "2021", - "version": "1.212.0" + "version": "1.223.0" }, - "license": "Apache-2.0 WITH LLVM-exception", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ - "Apache-2.0" + "Apache-2.0", + "MIT" ], - "license_file": "LICENSE" + "license_file": null }, - "web-sys 0.3.64": { + "web-sys 0.3.77": { "name": "web-sys", - "version": "0.3.64", + "version": "0.3.77", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/web-sys/0.3.64/download", - "sha256": "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" + "url": "https://static.crates.io/crates/web-sys/0.3.77/download", + "sha256": "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" } }, "targets": [ @@ -81109,7 +81328,9 @@ "WorkerGlobalScope", "WritableStream", "WritableStreamDefaultController", - "WritableStreamDefaultWriter" + "WritableStreamDefaultWriter", + "default", + "std" ], "selects": { "wasm32-unknown-unknown": [ @@ -81129,20 +81350,20 @@ "deps": { "common": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ], "selects": {} }, - "edition": "2018", - "version": "0.3.64" + "edition": "2021", + "version": "0.3.77" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -81183,11 +81404,11 @@ "selects": { "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ { - "id": "js-sys 0.3.64", + "id": "js-sys 0.3.77", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.95", + "id": "wasm-bindgen 0.2.100", "target": "wasm_bindgen" } ] @@ -81203,14 +81424,14 @@ ], "license_file": "LICENSE-APACHE" }, - "webpki-root-certs 0.26.6": { + "webpki-root-certs 0.26.7": { "name": "webpki-root-certs", - "version": "0.26.6", + "version": "0.26.7", "package_url": "https://github.com/rustls/webpki-roots", "repository": { "Http": { - "url": "https://static.crates.io/crates/webpki-root-certs/0.26.6/download", - "sha256": "e8c6dfa3ac045bc517de14c7b1384298de1dbd229d38e08e169d9ae8c170937c" + "url": "https://static.crates.io/crates/webpki-root-certs/0.26.7/download", + "sha256": "9cd5da49bdf1f30054cfe0b8ce2958b8fbeb67c4d82c8967a598af481bef255c" } }, "targets": [ @@ -81235,7 +81456,7 @@ "deps": { "common": [ { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" } @@ -81243,7 +81464,7 @@ "selects": {} }, "edition": "2018", - "version": "0.26.6" + "version": "0.26.7" }, "license": "MPL-2.0", "license_ids": [ @@ -81251,14 +81472,14 @@ ], "license_file": "LICENSE" }, - "webpki-roots 0.25.2": { + "webpki-roots 0.25.4": { "name": "webpki-roots", - "version": "0.25.2", + "version": "0.25.4", "package_url": "https://github.com/rustls/webpki-roots", "repository": { "Http": { - "url": "https://static.crates.io/crates/webpki-roots/0.25.2/download", - "sha256": "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" + "url": "https://static.crates.io/crates/webpki-roots/0.25.4/download", + "sha256": "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" } }, "targets": [ @@ -81281,7 +81502,7 @@ "**" ], "edition": "2018", - "version": "0.25.2" + "version": "0.25.4" }, "license": "MPL-2.0", "license_ids": [ @@ -81289,14 +81510,14 @@ ], "license_file": "LICENSE" }, - "webpki-roots 0.26.1": { + "webpki-roots 0.26.7": { "name": "webpki-roots", - "version": "0.26.1", + "version": "0.26.7", "package_url": "https://github.com/rustls/webpki-roots", "repository": { "Http": { - "url": "https://static.crates.io/crates/webpki-roots/0.26.1/download", - "sha256": "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" + "url": "https://static.crates.io/crates/webpki-roots/0.26.7/download", + "sha256": "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e" } }, "targets": [ @@ -81321,7 +81542,7 @@ "deps": { "common": [ { - "id": "rustls-pki-types 1.10.0", + "id": "rustls-pki-types 1.10.1", "target": "rustls_pki_types", "alias": "pki_types" } @@ -81329,7 +81550,7 @@ "selects": {} }, "edition": "2018", - "version": "0.26.1" + "version": "0.26.7" }, "license": "MPL-2.0", "license_ids": [ @@ -81403,7 +81624,7 @@ "selects": { "cfg(all(unix, not(target_arch = \"wasm32\")))": [ { - "id": "libc 0.2.158", + "id": "libc 0.2.169", "target": "libc" } ], @@ -81432,14 +81653,14 @@ ], "license_file": null }, - "which 4.4.0": { + "which 4.4.2": { "name": "which", - "version": "4.4.0", + "version": "4.4.2", "package_url": "https://github.com/harryfei/which-rs.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/which/4.4.0/download", - "sha256": "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" + "url": "https://static.crates.io/crates/which/4.4.2/download", + "sha256": "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" } }, "targets": [ @@ -81464,25 +81685,31 @@ "deps": { "common": [ { - "id": "either 1.8.1", + "id": "either 1.13.0", "target": "either" }, { - "id": "libc 0.2.158", - "target": "libc" + "id": "rustix 0.38.43", + "target": "rustix" } ], "selects": { + "cfg(any(windows, unix, target_os = \"redox\"))": [ + { + "id": "home 0.5.11", + "target": "home" + } + ], "cfg(windows)": [ { - "id": "once_cell 1.19.0", + "id": "once_cell 1.20.2", "target": "once_cell" } ] } }, - "edition": "2018", - "version": "4.4.0" + "edition": "2021", + "version": "4.4.2" }, "license": "MIT", "license_ids": [ @@ -81490,14 +81717,14 @@ ], "license_file": "LICENSE.txt" }, - "widestring 1.0.2": { + "widestring 1.1.0": { "name": "widestring", - "version": "1.0.2", + "version": "1.1.0", "package_url": "https://github.com/starkat99/widestring-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/widestring/1.0.2/download", - "sha256": "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" + "url": "https://static.crates.io/crates/widestring/1.1.0/download", + "sha256": "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" } }, "targets": [ @@ -81528,7 +81755,7 @@ "selects": {} }, "edition": "2021", - "version": "1.0.2" + "version": "1.1.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -81620,7 +81847,6 @@ "common": [ "consoleapi", "errhandlingapi", - "fibersapi", "fileapi", "handleapi", "impl-default", @@ -81639,7 +81865,6 @@ "profileapi", "psapi", "shlobj", - "std", "synchapi", "sysinfoapi", "winbase", @@ -81762,14 +81987,14 @@ ], "license_file": null }, - "winapi-util 0.1.5": { + "winapi-util 0.1.9": { "name": "winapi-util", - "version": "0.1.5", + "version": "0.1.9", "package_url": "https://github.com/BurntSushi/winapi-util", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi-util/0.1.5/download", - "sha256": "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" + "url": "https://static.crates.io/crates/winapi-util/0.1.9/download", + "sha256": "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" } }, "targets": [ @@ -81796,16 +82021,16 @@ "selects": { "cfg(windows)": [ { - "id": "winapi 0.3.9", - "target": "winapi" + "id": "windows-sys 0.59.0", + "target": "windows_sys" } ] } }, - "edition": "2018", - "version": "0.1.5" + "edition": "2021", + "version": "0.1.9" }, - "license": "Unlicense/MIT", + "license": "Unlicense OR MIT", "license_ids": [ "MIT", "Unlicense" @@ -81880,14 +82105,14 @@ ], "license_file": null }, - "winch-codegen 28.0.0": { + "winch-codegen 28.0.1": { "name": "winch-codegen", - "version": "28.0.0", + "version": "28.0.1", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/winch-codegen/28.0.0/download", - "sha256": "9110decc2983ed94de904804dcd979ba59cbabc78a94fec6b1d8468ec513d0f6" + "url": "https://static.crates.io/crates/winch-codegen/28.0.1/download", + "sha256": "6232f40a795be2ce10fc761ed3b403825126a60d12491ac556ea104a932fd18a" } }, "targets": [ @@ -81924,11 +82149,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { - "id": "cranelift-codegen 0.115.0", + "id": "cranelift-codegen 0.115.1", "target": "cranelift_codegen" }, { @@ -81952,22 +82177,22 @@ "target": "wasmparser" }, { - "id": "wasmtime-cranelift 28.0.0", + "id": "wasmtime-cranelift 28.0.1", "target": "wasmtime_cranelift" }, { - "id": "wasmtime-environ 28.0.0", + "id": "wasmtime-environ 28.0.1", "target": "wasmtime_environ" }, { - "id": "winch-codegen 28.0.0", + "id": "winch-codegen 28.0.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "28.0.0" + "version": "28.0.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -81983,6 +82208,58 @@ ], "license_file": "LICENSE" }, + "windows 0.58.0": { + "name": "windows", + "version": "0.58.0", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows/0.58.0/download", + "sha256": "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows-core 0.58.0", + "target": "windows_core" + }, + { + "id": "windows-targets 0.52.6", + "target": "windows_targets" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.58.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, "windows-core 0.52.0": { "name": "windows-core", "version": "0.52.0", @@ -82031,6 +82308,187 @@ ], "license_file": "license-apache-2.0" }, + "windows-core 0.58.0": { + "name": "windows-core", + "version": "0.58.0", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows-core/0.58.0/download", + "sha256": "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_core", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_core", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows-result 0.2.0", + "target": "windows_result" + }, + { + "id": "windows-strings 0.1.0", + "target": "windows_strings" + }, + { + "id": "windows-targets 0.52.6", + "target": "windows_targets" + } + ], + "selects": {} + }, + "edition": "2021", + "proc_macro_deps": { + "common": [ + { + "id": "windows-implement 0.58.0", + "target": "windows_implement" + }, + { + "id": "windows-interface 0.58.0", + "target": "windows_interface" + } + ], + "selects": {} + }, + "version": "0.58.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows-implement 0.58.0": { + "name": "windows-implement", + "version": "0.58.0", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows-implement/0.58.0/download", + "sha256": "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "windows_implement", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_implement", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "proc-macro2 1.0.93", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.38", + "target": "quote" + }, + { + "id": "syn 2.0.96", + "target": "syn" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.58.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows-interface 0.58.0": { + "name": "windows-interface", + "version": "0.58.0", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows-interface/0.58.0/download", + "sha256": "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "windows_interface", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_interface", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "proc-macro2 1.0.93", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.38", + "target": "quote" + }, + { + "id": "syn 2.0.96", + "target": "syn" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.58.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, "windows-registry 0.2.0": { "name": "windows-registry", "version": "0.2.0", @@ -82201,71 +82659,6 @@ ], "license_file": "license-apache-2.0" }, - "windows-sys 0.45.0": { - "name": "windows-sys", - "version": "0.45.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-sys/0.45.0/download", - "sha256": "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "Win32", - "Win32_Foundation", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_Console", - "Win32_UI", - "Win32_UI_Input", - "Win32_UI_Input_KeyboardAndMouse", - "default" - ], - "selects": {} - }, - "deps": { - "common": [], - "selects": { - "cfg(not(windows_raw_dylib))": [ - { - "id": "windows-targets 0.42.2", - "target": "windows_targets" - } - ] - } - }, - "edition": "2018", - "version": "0.45.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, "windows-sys 0.48.0": { "name": "windows-sys", "version": "0.48.0", @@ -82305,33 +82698,23 @@ "Win32_Networking", "Win32_Networking_WinSock", "Win32_Security", - "Win32_Security_Authentication", - "Win32_Security_Authentication_Identity", - "Win32_Security_Credentials", - "Win32_Security_Cryptography", "Win32_Storage", "Win32_Storage_FileSystem", "Win32_System", "Win32_System_Console", "Win32_System_Diagnostics", "Win32_System_Diagnostics_Debug", - "Win32_System_IO", "Win32_System_Memory", "Win32_System_Registry", "Win32_System_Time", - "Win32_System_WindowsProgramming", "default" ], - "selects": { - "aarch64-pc-windows-msvc": [ - "Win32_System_Threading" - ] - } + "selects": {} }, "deps": { "common": [ { - "id": "windows-targets 0.48.1", + "id": "windows-targets 0.48.5", "target": "windows_targets" } ], @@ -82386,8 +82769,6 @@ "Wdk_System_IO", "Win32", "Win32_Foundation", - "Win32_NetworkManagement", - "Win32_NetworkManagement_IpHelper", "Win32_Networking", "Win32_Networking_WinSock", "Win32_Security", @@ -82395,17 +82776,12 @@ "Win32_Storage", "Win32_Storage_FileSystem", "Win32_System", - "Win32_System_Com", "Win32_System_Console", - "Win32_System_Diagnostics", - "Win32_System_Diagnostics_Debug", "Win32_System_IO", "Win32_System_Pipes", "Win32_System_SystemServices", "Win32_System_Threading", "Win32_System_WindowsProgramming", - "Win32_UI", - "Win32_UI_Shell", "default" ], "selects": {} @@ -82466,12 +82842,19 @@ "Wdk_Storage_FileSystem", "Win32", "Win32_Foundation", + "Win32_NetworkManagement", + "Win32_NetworkManagement_IpHelper", "Win32_Networking", "Win32_Networking_WinSock", "Win32_Security", + "Win32_Security_Authentication", + "Win32_Security_Authentication_Identity", + "Win32_Security_Credentials", + "Win32_Security_Cryptography", "Win32_Storage", "Win32_Storage_FileSystem", "Win32_System", + "Win32_System_Com", "Win32_System_Console", "Win32_System_Diagnostics", "Win32_System_Diagnostics_Debug", @@ -82482,6 +82865,10 @@ "Win32_System_SystemInformation", "Win32_System_Threading", "Win32_System_WindowsProgramming", + "Win32_UI", + "Win32_UI_Input", + "Win32_UI_Input_KeyboardAndMouse", + "Win32_UI_Shell", "default" ], "selects": {} @@ -82505,130 +82892,14 @@ ], "license_file": "license-apache-2.0" }, - "windows-targets 0.42.2": { - "name": "windows-targets", - "version": "0.42.2", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-targets/0.42.2/download", - "sha256": "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_targets", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_targets", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [], - "selects": { - "aarch64-pc-windows-gnullvm": [ - { - "id": "windows_aarch64_gnullvm 0.42.2", - "target": "windows_aarch64_gnullvm" - } - ], - "aarch64-pc-windows-msvc": [ - { - "id": "windows_aarch64_msvc 0.42.2", - "target": "windows_aarch64_msvc" - } - ], - "aarch64-uwp-windows-msvc": [ - { - "id": "windows_aarch64_msvc 0.42.2", - "target": "windows_aarch64_msvc" - } - ], - "i686-pc-windows-gnu": [ - { - "id": "windows_i686_gnu 0.42.2", - "target": "windows_i686_gnu" - } - ], - "i686-pc-windows-msvc": [ - { - "id": "windows_i686_msvc 0.42.2", - "target": "windows_i686_msvc" - } - ], - "i686-uwp-windows-gnu": [ - { - "id": "windows_i686_gnu 0.42.2", - "target": "windows_i686_gnu" - } - ], - "i686-uwp-windows-msvc": [ - { - "id": "windows_i686_msvc 0.42.2", - "target": "windows_i686_msvc" - } - ], - "x86_64-pc-windows-gnu": [ - { - "id": "windows_x86_64_gnu 0.42.2", - "target": "windows_x86_64_gnu" - } - ], - "x86_64-pc-windows-gnullvm": [ - { - "id": "windows_x86_64_gnullvm 0.42.2", - "target": "windows_x86_64_gnullvm" - } - ], - "x86_64-pc-windows-msvc": [ - { - "id": "windows_x86_64_msvc 0.42.2", - "target": "windows_x86_64_msvc" - } - ], - "x86_64-uwp-windows-gnu": [ - { - "id": "windows_x86_64_gnu 0.42.2", - "target": "windows_x86_64_gnu" - } - ], - "x86_64-uwp-windows-msvc": [ - { - "id": "windows_x86_64_msvc 0.42.2", - "target": "windows_x86_64_msvc" - } - ] - } - }, - "edition": "2018", - "version": "0.42.2" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-targets 0.48.1": { + "windows-targets 0.48.5": { "name": "windows-targets", - "version": "0.48.1", + "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-targets/0.48.1/download", - "sha256": "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" + "url": "https://static.crates.io/crates/windows-targets/0.48.5/download", + "sha256": "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" } }, "targets": [ @@ -82655,50 +82926,50 @@ "selects": { "aarch64-pc-windows-gnullvm": [ { - "id": "windows_aarch64_gnullvm 0.48.0", + "id": "windows_aarch64_gnullvm 0.48.5", "target": "windows_aarch64_gnullvm" } ], "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ { - "id": "windows_aarch64_msvc 0.48.0", + "id": "windows_aarch64_msvc 0.48.5", "target": "windows_aarch64_msvc" } ], "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))": [ { - "id": "windows_i686_gnu 0.48.0", + "id": "windows_i686_gnu 0.48.5", "target": "windows_i686_gnu" } ], "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [ { - "id": "windows_i686_msvc 0.48.0", + "id": "windows_i686_msvc 0.48.5", "target": "windows_i686_msvc" } ], "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ { - "id": "windows_x86_64_gnu 0.48.0", + "id": "windows_x86_64_gnu 0.48.5", "target": "windows_x86_64_gnu" } ], "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ { - "id": "windows_x86_64_msvc 0.48.0", + "id": "windows_x86_64_msvc 0.48.5", "target": "windows_x86_64_msvc" } ], "x86_64-pc-windows-gnullvm": [ { - "id": "windows_x86_64_gnullvm 0.48.0", + "id": "windows_x86_64_gnullvm 0.48.5", "target": "windows_x86_64_gnullvm" } ] } }, "edition": "2018", - "version": "0.48.1" + "version": "0.48.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -82799,14 +83070,14 @@ ], "license_file": "license-apache-2.0" }, - "windows_aarch64_gnullvm 0.42.2": { + "windows_aarch64_gnullvm 0.48.5": { "name": "windows_aarch64_gnullvm", - "version": "0.42.2", + "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.42.2/download", - "sha256": "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" + "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.48.5/download", + "sha256": "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" } }, "targets": [ @@ -82843,82 +83114,14 @@ "deps": { "common": [ { - "id": "windows_aarch64_gnullvm 0.42.2", + "id": "windows_aarch64_gnullvm 0.48.5", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.42.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_aarch64_gnullvm 0.48.0": { - "name": "windows_aarch64_gnullvm", - "version": "0.48.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.48.0/download", - "sha256": "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_aarch64_gnullvm", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_aarch64_gnullvm", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_aarch64_gnullvm 0.48.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.48.0" + "version": "0.48.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -83003,82 +83206,14 @@ ], "license_file": "license-apache-2.0" }, - "windows_aarch64_msvc 0.42.2": { - "name": "windows_aarch64_msvc", - "version": "0.42.2", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.42.2/download", - "sha256": "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_aarch64_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_aarch64_msvc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_aarch64_msvc 0.42.2", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.42.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_aarch64_msvc 0.48.0": { + "windows_aarch64_msvc 0.48.5": { "name": "windows_aarch64_msvc", - "version": "0.48.0", + "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.48.0/download", - "sha256": "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" + "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.48.5/download", + "sha256": "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" } }, "targets": [ @@ -83115,14 +83250,14 @@ "deps": { "common": [ { - "id": "windows_aarch64_msvc 0.48.0", + "id": "windows_aarch64_msvc 0.48.5", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.48.0" + "version": "0.48.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -83207,14 +83342,14 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_gnu 0.42.2": { + "windows_i686_gnu 0.48.5": { "name": "windows_i686_gnu", - "version": "0.42.2", + "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.42.2/download", - "sha256": "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" + "url": "https://static.crates.io/crates/windows_i686_gnu/0.48.5/download", + "sha256": "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" } }, "targets": [ @@ -83251,82 +83386,14 @@ "deps": { "common": [ { - "id": "windows_i686_gnu 0.42.2", + "id": "windows_i686_gnu 0.48.5", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.42.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_i686_gnu 0.48.0": { - "name": "windows_i686_gnu", - "version": "0.48.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.48.0/download", - "sha256": "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_i686_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_i686_gnu", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_i686_gnu 0.48.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.48.0" + "version": "0.48.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -83447,143 +83514,7 @@ } } ], - "library_target_name": "windows_i686_gnullvm", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_i686_gnullvm 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_i686_msvc 0.42.2": { - "name": "windows_i686_msvc", - "version": "0.42.2", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.42.2/download", - "sha256": "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_i686_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_i686_msvc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_i686_msvc 0.42.2", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.42.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_i686_msvc 0.48.0": { - "name": "windows_i686_msvc", - "version": "0.48.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.48.0/download", - "sha256": "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_i686_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_i686_msvc", + "library_target_name": "windows_i686_gnullvm", "common_attrs": { "compile_data_glob": [ "**" @@ -83591,14 +83522,14 @@ "deps": { "common": [ { - "id": "windows_i686_msvc 0.48.0", + "id": "windows_i686_gnullvm 0.52.6", "target": "build_script_build" } ], "selects": {} }, - "edition": "2018", - "version": "0.48.0" + "edition": "2021", + "version": "0.52.6" }, "build_script_attrs": { "compile_data_glob": [ @@ -83615,14 +83546,14 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_msvc 0.52.6": { + "windows_i686_msvc 0.48.5": { "name": "windows_i686_msvc", - "version": "0.52.6", + "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.52.6/download", - "sha256": "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + "url": "https://static.crates.io/crates/windows_i686_msvc/0.48.5/download", + "sha256": "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" } }, "targets": [ @@ -83659,14 +83590,14 @@ "deps": { "common": [ { - "id": "windows_i686_msvc 0.52.6", + "id": "windows_i686_msvc 0.48.5", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.52.6" + "edition": "2018", + "version": "0.48.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -83683,20 +83614,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_gnu 0.42.2": { - "name": "windows_x86_64_gnu", - "version": "0.42.2", + "windows_i686_msvc 0.52.6": { + "name": "windows_i686_msvc", + "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.42.2/download", - "sha256": "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" + "url": "https://static.crates.io/crates/windows_i686_msvc/0.52.6/download", + "sha256": "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_gnu", + "crate_name": "windows_i686_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -83719,7 +83650,7 @@ } } ], - "library_target_name": "windows_x86_64_gnu", + "library_target_name": "windows_i686_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -83727,14 +83658,14 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnu 0.42.2", + "id": "windows_i686_msvc 0.52.6", "target": "build_script_build" } ], "selects": {} }, - "edition": "2018", - "version": "0.42.2" + "edition": "2021", + "version": "0.52.6" }, "build_script_attrs": { "compile_data_glob": [ @@ -83751,14 +83682,14 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_gnu 0.48.0": { + "windows_x86_64_gnu 0.48.5": { "name": "windows_x86_64_gnu", - "version": "0.48.0", + "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.48.0/download", - "sha256": "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" + "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.48.5/download", + "sha256": "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" } }, "targets": [ @@ -83795,14 +83726,14 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnu 0.48.0", + "id": "windows_x86_64_gnu 0.48.5", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.48.0" + "version": "0.48.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -83887,14 +83818,14 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_gnullvm 0.42.2": { + "windows_x86_64_gnullvm 0.48.5": { "name": "windows_x86_64_gnullvm", - "version": "0.42.2", + "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.42.2/download", - "sha256": "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" + "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.48.5/download", + "sha256": "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" } }, "targets": [ @@ -83931,82 +83862,14 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnullvm 0.42.2", + "id": "windows_x86_64_gnullvm 0.48.5", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.42.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_gnullvm 0.48.0": { - "name": "windows_x86_64_gnullvm", - "version": "0.48.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.48.0/download", - "sha256": "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_x86_64_gnullvm", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_x86_64_gnullvm", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_x86_64_gnullvm 0.48.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.48.0" + "version": "0.48.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -84091,82 +83954,14 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_msvc 0.42.2": { - "name": "windows_x86_64_msvc", - "version": "0.42.2", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.42.2/download", - "sha256": "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_x86_64_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_x86_64_msvc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_x86_64_msvc 0.42.2", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.42.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_msvc 0.48.0": { + "windows_x86_64_msvc 0.48.5": { "name": "windows_x86_64_msvc", - "version": "0.48.0", + "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.48.0/download", - "sha256": "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" + "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.48.5/download", + "sha256": "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" } }, "targets": [ @@ -84203,14 +83998,14 @@ "deps": { "common": [ { - "id": "windows_x86_64_msvc 0.48.0", + "id": "windows_x86_64_msvc 0.48.5", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.48.0" + "version": "0.48.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -84295,14 +84090,14 @@ ], "license_file": "license-apache-2.0" }, - "winnow 0.5.0": { + "winnow 0.6.24": { "name": "winnow", - "version": "0.5.0", + "version": "0.6.24", "package_url": "https://github.com/winnow-rs/winnow", "repository": { "Http": { - "url": "https://static.crates.io/crates/winnow/0.5.0/download", - "sha256": "81fac9742fd1ad1bd9643b991319f72dd031016d44b77039a26977eb667141e7" + "url": "https://static.crates.io/crates/winnow/0.6.24/download", + "sha256": "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a" } }, "targets": [ @@ -84333,53 +84128,7 @@ "selects": {} }, "edition": "2021", - "version": "0.5.0" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE-MIT" - }, - "winnow 0.6.20": { - "name": "winnow", - "version": "0.6.20", - "package_url": "https://github.com/winnow-rs/winnow", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/winnow/0.6.20/download", - "sha256": "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "winnow", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "winnow", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.6.20" + "version": "0.6.24" }, "license": "MIT", "license_ids": [ @@ -84479,7 +84228,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.93", + "id": "anyhow 1.0.95", "target": "anyhow" }, { @@ -84487,15 +84236,15 @@ "target": "id_arena" }, { - "id": "indexmap 2.2.6", + "id": "indexmap 2.7.0", "target": "indexmap" }, { - "id": "log 0.4.20", + "id": "log 0.4.25", "target": "log" }, { - "id": "semver 1.0.22", + "id": "semver 1.0.24", "target": "semver" }, { @@ -84503,11 +84252,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" }, { - "id": "unicode-xid 0.2.4", + "id": "unicode-xid 0.2.6", "target": "unicode_xid" }, { @@ -84737,7 +84486,7 @@ "deps": { "common": [ { - "id": "data-encoding 2.4.0", + "id": "data-encoding 2.7.0", "target": "data_encoding" }, { @@ -84745,7 +84494,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.132", + "id": "serde_json 1.0.135", "target": "serde_json" } ], @@ -84851,11 +84600,11 @@ "deps": { "common": [ { - "id": "const-oid 0.9.4", + "id": "const-oid 0.9.6", "target": "const_oid" }, { - "id": "der 0.7.7", + "id": "der 0.7.9", "target": "der" }, { @@ -84921,11 +84670,11 @@ "deps": { "common": [ { - "id": "asn1-rs 0.6.1", + "id": "asn1-rs 0.6.2", "target": "asn1_rs" }, { - "id": "data-encoding 2.4.0", + "id": "data-encoding 2.7.0", "target": "data_encoding" }, { @@ -84933,7 +84682,7 @@ "target": "der_parser" }, { - "id": "lazy_static 1.4.0", + "id": "lazy_static 1.5.0", "target": "lazy_static" }, { @@ -84941,7 +84690,7 @@ "target": "nom" }, { - "id": "oid-registry 0.7.0", + "id": "oid-registry 0.7.1", "target": "oid_registry" }, { @@ -84949,11 +84698,11 @@ "target": "rusticata_macros" }, { - "id": "thiserror 1.0.68", + "id": "thiserror 1.0.69", "target": "thiserror" }, { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -84969,14 +84718,14 @@ ], "license_file": "LICENSE-APACHE" }, - "xattr 0.2.3": { + "xattr 1.4.0": { "name": "xattr", - "version": "0.2.3", + "version": "1.4.0", "package_url": "https://github.com/Stebalien/xattr", "repository": { "Http": { - "url": "https://static.crates.io/crates/xattr/0.2.3/download", - "sha256": "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" + "url": "https://static.crates.io/crates/xattr/1.4.0/download", + "sha256": "e105d177a3871454f754b33bb0ee637ecaaac997446375fd3e5d43a2ed00c909" } }, "targets": [ @@ -85008,14 +84757,27 @@ "deps": { "common": [ { - "id": "libc 0.2.158", - "target": "libc" + "id": "rustix 0.38.43", + "target": "rustix" } ], - "selects": {} + "selects": { + "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))": [ + { + "id": "libc 0.2.169", + "target": "libc" + } + ], + "cfg(target_os = \"linux\")": [ + { + "id": "linux-raw-sys 0.4.15", + "target": "linux_raw_sys" + } + ] + } }, - "edition": "2015", - "version": "0.2.3" + "edition": "2021", + "version": "1.4.0" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -85149,10 +84911,57 @@ "compile_data_glob": [ "**" ], - "edition": "2015", - "version": "0.5.1" + "edition": "2015", + "version": "0.5.1" + }, + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "yansi 1.0.1": { + "name": "yansi", + "version": "1.0.1", + "package_url": "https://github.com/SergioBenitez/yansi", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/yansi/1.0.1/download", + "sha256": "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" + } + }, + "targets": [ + { + "Library": { + "crate_name": "yansi", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "yansi", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc", + "default", + "std" + ], + "selects": {} + }, + "edition": "2021", + "version": "1.0.1" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -85199,7 +85008,7 @@ "deps": { "common": [ { - "id": "time 0.3.36", + "id": "time 0.3.37", "target": "time" } ], @@ -85215,14 +85024,14 @@ ], "license_file": null }, - "yoke 0.7.4": { + "yoke 0.7.5": { "name": "yoke", - "version": "0.7.4", + "version": "0.7.5", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/yoke/0.7.4/download", - "sha256": "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" + "url": "https://static.crates.io/crates/yoke/0.7.5/download", + "sha256": "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" } }, "targets": [ @@ -85260,7 +85069,7 @@ "target": "stable_deref_trait" }, { - "id": "zerofrom 0.1.4", + "id": "zerofrom 0.1.5", "target": "zerofrom" } ], @@ -85270,13 +85079,13 @@ "proc_macro_deps": { "common": [ { - "id": "yoke-derive 0.7.4", + "id": "yoke-derive 0.7.5", "target": "yoke_derive" } ], "selects": {} }, - "version": "0.7.4" + "version": "0.7.5" }, "license": "Unicode-3.0", "license_ids": [ @@ -85284,14 +85093,14 @@ ], "license_file": "LICENSE" }, - "yoke-derive 0.7.4": { + "yoke-derive 0.7.5": { "name": "yoke-derive", - "version": "0.7.4", + "version": "0.7.5", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/yoke-derive/0.7.4/download", - "sha256": "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" + "url": "https://static.crates.io/crates/yoke-derive/0.7.5/download", + "sha256": "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" } }, "targets": [ @@ -85316,15 +85125,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" }, { @@ -85335,7 +85144,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.4" + "version": "0.7.5" }, "license": "Unicode-3.0", "license_ids": [ @@ -85343,14 +85152,14 @@ ], "license_file": "LICENSE" }, - "zerocopy 0.7.32": { + "zerocopy 0.7.35": { "name": "zerocopy", - "version": "0.7.32", + "version": "0.7.35", "package_url": "https://github.com/google/zerocopy", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerocopy/0.7.32/download", - "sha256": "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" + "url": "https://static.crates.io/crates/zerocopy/0.7.35/download", + "sha256": "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" } }, "targets": [ @@ -85374,23 +85183,34 @@ ], "crate_features": { "common": [ - "simd" + "byteorder", + "default", + "derive", + "simd", + "zerocopy-derive" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "byteorder 1.5.0", + "target": "byteorder" + } ], "selects": {} }, "edition": "2018", "proc_macro_deps": { - "common": [], - "selects": { - "cfg(any())": [ - { - "id": "zerocopy-derive 0.7.32", - "target": "zerocopy_derive" - } - ] - } + "common": [ + { + "id": "zerocopy-derive 0.7.35", + "target": "zerocopy_derive" + } + ], + "selects": {} }, - "version": "0.7.32" + "version": "0.7.35" }, "license": "BSD-2-Clause OR Apache-2.0 OR MIT", "license_ids": [ @@ -85400,14 +85220,14 @@ ], "license_file": "LICENSE-APACHE" }, - "zerocopy-derive 0.7.32": { + "zerocopy-derive 0.7.35": { "name": "zerocopy-derive", - "version": "0.7.32", + "version": "0.7.35", "package_url": "https://github.com/google/zerocopy", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerocopy-derive/0.7.32/download", - "sha256": "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" + "url": "https://static.crates.io/crates/zerocopy-derive/0.7.35/download", + "sha256": "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" } }, "targets": [ @@ -85432,22 +85252,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.7.32" + "version": "0.7.35" }, "license": "BSD-2-Clause OR Apache-2.0 OR MIT", "license_ids": [ @@ -85457,14 +85277,14 @@ ], "license_file": "LICENSE-APACHE" }, - "zerofrom 0.1.4": { + "zerofrom 0.1.5": { "name": "zerofrom", - "version": "0.1.4", + "version": "0.1.5", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerofrom/0.1.4/download", - "sha256": "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" + "url": "https://static.crates.io/crates/zerofrom/0.1.5/download", + "sha256": "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" } }, "targets": [ @@ -85497,13 +85317,13 @@ "proc_macro_deps": { "common": [ { - "id": "zerofrom-derive 0.1.4", + "id": "zerofrom-derive 0.1.5", "target": "zerofrom_derive" } ], "selects": {} }, - "version": "0.1.4" + "version": "0.1.5" }, "license": "Unicode-3.0", "license_ids": [ @@ -85511,14 +85331,14 @@ ], "license_file": "LICENSE" }, - "zerofrom-derive 0.1.4": { + "zerofrom-derive 0.1.5": { "name": "zerofrom-derive", - "version": "0.1.4", + "version": "0.1.5", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerofrom-derive/0.1.4/download", - "sha256": "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" + "url": "https://static.crates.io/crates/zerofrom-derive/0.1.5/download", + "sha256": "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" } }, "targets": [ @@ -85543,15 +85363,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" }, { @@ -85562,7 +85382,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.4" + "version": "0.1.5" }, "license": "Unicode-3.0", "license_ids": [ @@ -85659,15 +85479,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -85722,11 +85542,11 @@ "deps": { "common": [ { - "id": "yoke 0.7.4", + "id": "yoke 0.7.5", "target": "yoke" }, { - "id": "zerofrom 0.1.4", + "id": "zerofrom 0.1.5", "target": "zerofrom" } ], @@ -85782,15 +85602,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.89", + "id": "proc-macro2 1.0.93", "target": "proc_macro2" }, { - "id": "quote 1.0.37", + "id": "quote 1.0.38", "target": "quote" }, { - "id": "syn 2.0.87", + "id": "syn 2.0.96", "target": "syn" } ], @@ -85805,53 +85625,6 @@ ], "license_file": "LICENSE" }, - "zstd 0.12.4": { - "name": "zstd", - "version": "0.12.4", - "package_url": "https://github.com/gyscos/zstd-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/zstd/0.12.4/download", - "sha256": "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c" - } - }, - "targets": [ - { - "Library": { - "crate_name": "zstd", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "zstd", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "zstd-safe 6.0.5+zstd.1.5.4", - "target": "zstd_safe" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.12.4" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, "zstd 0.13.2": { "name": "zstd", "version": "0.13.2", @@ -85893,7 +85666,7 @@ "deps": { "common": [ { - "id": "zstd-safe 7.1.0", + "id": "zstd-safe 7.2.1", "target": "zstd_safe" } ], @@ -85908,105 +85681,14 @@ ], "license_file": "LICENSE" }, - "zstd-safe 6.0.5+zstd.1.5.4": { - "name": "zstd-safe", - "version": "6.0.5+zstd.1.5.4", - "package_url": "https://github.com/gyscos/zstd-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/zstd-safe/6.0.5+zstd.1.5.4/download", - "sha256": "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "zstd_safe", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "zstd_safe", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "libc 0.2.158", - "target": "libc" - }, - { - "id": "zstd-safe 6.0.5+zstd.1.5.4", - "target": "build_script_build" - }, - { - "id": "zstd-sys 2.0.10+zstd.1.5.6", - "target": "zstd_sys" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "6.0.5+zstd.1.5.4" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ], - "link_deps": { - "common": [ - { - "id": "zstd-sys 2.0.10+zstd.1.5.6", - "target": "zstd_sys" - } - ], - "selects": {} - } - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE" - }, - "zstd-safe 7.1.0": { + "zstd-safe 7.2.1": { "name": "zstd-safe", - "version": "7.1.0", + "version": "7.2.1", "package_url": "https://github.com/gyscos/zstd-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/zstd-safe/7.1.0/download", - "sha256": "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a" + "url": "https://static.crates.io/crates/zstd-safe/7.2.1/download", + "sha256": "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059" } }, "targets": [ @@ -86052,18 +85734,18 @@ "deps": { "common": [ { - "id": "zstd-safe 7.1.0", + "id": "zstd-safe 7.2.1", "target": "build_script_build" }, { - "id": "zstd-sys 2.0.10+zstd.1.5.6", + "id": "zstd-sys 2.0.13+zstd.1.5.6", "target": "zstd_sys" } ], "selects": {} }, "edition": "2018", - "version": "7.1.0" + "version": "7.2.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -86075,7 +85757,7 @@ "link_deps": { "common": [ { - "id": "zstd-sys 2.0.10+zstd.1.5.6", + "id": "zstd-sys 2.0.13+zstd.1.5.6", "target": "zstd_sys" } ], @@ -86089,14 +85771,14 @@ ], "license_file": "LICENSE" }, - "zstd-sys 2.0.10+zstd.1.5.6": { + "zstd-sys 2.0.13+zstd.1.5.6": { "name": "zstd-sys", - "version": "2.0.10+zstd.1.5.6", + "version": "2.0.13+zstd.1.5.6", "package_url": "https://github.com/gyscos/zstd-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/zstd-sys/2.0.10+zstd.1.5.6/download", - "sha256": "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa" + "url": "https://static.crates.io/crates/zstd-sys/2.0.13+zstd.1.5.6/download", + "sha256": "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" } }, "targets": [ @@ -86141,14 +85823,14 @@ "deps": { "common": [ { - "id": "zstd-sys 2.0.10+zstd.1.5.6", + "id": "zstd-sys 2.0.13+zstd.1.5.6", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "2.0.10+zstd.1.5.6" + "version": "2.0.13+zstd.1.5.6" }, "build_script_attrs": { "compile_data_glob": [ @@ -86160,11 +85842,11 @@ "deps": { "common": [ { - "id": "cc 1.0.83", + "id": "cc 1.2.9", "target": "cc" }, { - "id": "pkg-config 0.3.27", + "id": "pkg-config 0.3.31", "target": "pkg_config" } ], @@ -86182,7 +85864,7 @@ }, "binary_crates": [ "canbench 0.1.8", - "ic-wasm 0.8.4", + "ic-wasm 0.8.6", "metrics-proxy 0.1.0" ], "workspace_members": { @@ -86218,7 +85900,6 @@ "aarch64-unknown-nto-qnx710": [ "aarch64-unknown-nto-qnx710" ], - "aarch64-uwp-windows-msvc": [], "arm-unknown-linux-gnueabi": [ "arm-unknown-linux-gnueabi" ], @@ -86231,7 +85912,7 @@ "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))": [ "x86_64-pc-windows-msvc" ], - "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ "aarch64-linux-android", "armv7-linux-androideabi", "i686-linux-android", @@ -86258,7 +85939,7 @@ "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], - "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ + "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ "aarch64-unknown-linux-gnu", "aarch64-unknown-nixos-gnu", "arm-unknown-linux-gnueabi", @@ -86267,7 +85948,7 @@ "x86_64-unknown-linux-gnu", "x86_64-unknown-nixos-gnu" ], - "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", @@ -86285,7 +85966,6 @@ "thumbv7em-none-eabi", "thumbv8m.main-none-eabi", "wasm32-unknown-unknown", - "wasm32-wasi", "wasm32-wasip1", "x86_64-apple-darwin", "x86_64-apple-ios", @@ -86309,6 +85989,7 @@ "aarch64-apple-ios", "aarch64-apple-ios-sim" ], + "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))": [], "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ "wasm32-unknown-unknown" ], @@ -86316,7 +85997,6 @@ "wasm32-unknown-unknown" ], "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\"))": [ - "wasm32-wasi", "wasm32-wasip1" ], "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\", target_env = \"\"))": [ @@ -86491,6 +86171,22 @@ "riscv64gc-unknown-none-elf", "s390x-unknown-linux-gnu" ], + "cfg(any(target_arch = \"x86\", target_arch = \"x86_64\"))": [ + "i686-apple-darwin", + "i686-linux-android", + "i686-pc-windows-msvc", + "i686-unknown-freebsd", + "i686-unknown-linux-gnu", + "x86_64-apple-darwin", + "x86_64-apple-ios", + "x86_64-linux-android", + "x86_64-pc-windows-msvc", + "x86_64-unknown-freebsd", + "x86_64-unknown-fuchsia", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu", + "x86_64-unknown-none" + ], "cfg(any(target_arch = \"x86\", target_arch = \"x86_64\", all(any(target_arch = \"aarch64\", target_arch = \"arm\"), any(target_os = \"android\", target_os = \"fuchsia\", target_os = \"linux\"))))": [ "aarch64-linux-android", "aarch64-unknown-fuchsia", @@ -86549,6 +86245,10 @@ "i686-unknown-freebsd", "x86_64-unknown-freebsd" ], + "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))": [ + "i686-unknown-freebsd", + "x86_64-unknown-freebsd" + ], "cfg(any(target_os = \"linux\", target_os = \"android\"))": [ "aarch64-linux-android", "aarch64-unknown-linux-gnu", @@ -86583,7 +86283,6 @@ "i686-unknown-linux-gnu", "powerpc-unknown-linux-gnu", "s390x-unknown-linux-gnu", - "wasm32-wasi", "wasm32-wasip1", "x86_64-apple-darwin", "x86_64-apple-ios", @@ -86710,7 +86409,6 @@ "i686-unknown-linux-gnu", "powerpc-unknown-linux-gnu", "s390x-unknown-linux-gnu", - "wasm32-wasi", "wasm32-wasip1", "x86_64-apple-darwin", "x86_64-apple-ios", @@ -86720,8 +86418,7 @@ "x86_64-unknown-linux-gnu", "x86_64-unknown-nixos-gnu" ], - "cfg(curve25519_dalek_backend = \"fiat\")": [], - "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))": [ + "cfg(any(windows, unix, target_os = \"redox\"))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", @@ -86740,12 +86437,7 @@ "i686-unknown-freebsd", "i686-unknown-linux-gnu", "powerpc-unknown-linux-gnu", - "riscv32imc-unknown-none-elf", - "riscv64gc-unknown-none-elf", "s390x-unknown-linux-gnu", - "wasm32-unknown-unknown", - "wasm32-wasi", - "wasm32-wasip1", "x86_64-apple-darwin", "x86_64-apple-ios", "x86_64-linux-android", @@ -86753,39 +86445,16 @@ "x86_64-unknown-freebsd", "x86_64-unknown-fuchsia", "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu", - "x86_64-unknown-none" - ], - "cfg(not(any(target_os = \"macos\", target_os = \"ios\", target_os = \"windows\", target_arch = \"wasm32\")))": [ - "aarch64-linux-android", - "aarch64-unknown-fuchsia", - "aarch64-unknown-linux-gnu", - "aarch64-unknown-nixos-gnu", - "aarch64-unknown-nto-qnx710", - "arm-unknown-linux-gnueabi", - "armv7-linux-androideabi", - "armv7-unknown-linux-gnueabi", - "i686-linux-android", - "i686-unknown-freebsd", - "i686-unknown-linux-gnu", - "powerpc-unknown-linux-gnu", - "riscv32imc-unknown-none-elf", - "riscv64gc-unknown-none-elf", - "s390x-unknown-linux-gnu", - "thumbv7em-none-eabi", - "thumbv8m.main-none-eabi", - "x86_64-linux-android", - "x86_64-unknown-freebsd", - "x86_64-unknown-fuchsia", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu", - "x86_64-unknown-none" + "x86_64-unknown-nixos-gnu" ], - "cfg(not(any(target_os = \"windows\", target_arch = \"wasm32\")))": [ + "cfg(curve25519_dalek_backend = \"fiat\")": [], + "cfg(moka_loom)": [], + "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", "aarch64-linux-android", + "aarch64-pc-windows-msvc", "aarch64-unknown-fuchsia", "aarch64-unknown-linux-gnu", "aarch64-unknown-nixos-gnu", @@ -86795,24 +86464,26 @@ "armv7-unknown-linux-gnueabi", "i686-apple-darwin", "i686-linux-android", + "i686-pc-windows-msvc", "i686-unknown-freebsd", "i686-unknown-linux-gnu", "powerpc-unknown-linux-gnu", "riscv32imc-unknown-none-elf", "riscv64gc-unknown-none-elf", "s390x-unknown-linux-gnu", - "thumbv7em-none-eabi", - "thumbv8m.main-none-eabi", + "wasm32-unknown-unknown", + "wasm32-wasip1", "x86_64-apple-darwin", "x86_64-apple-ios", "x86_64-linux-android", + "x86_64-pc-windows-msvc", "x86_64-unknown-freebsd", "x86_64-unknown-fuchsia", "x86_64-unknown-linux-gnu", "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], - "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))": [ + "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", @@ -86834,7 +86505,7 @@ "s390x-unknown-linux-gnu", "thumbv7em-none-eabi", "thumbv8m.main-none-eabi", - "wasm32-wasi", + "wasm32-unknown-unknown", "wasm32-wasip1", "x86_64-apple-darwin", "x86_64-apple-ios", @@ -86845,12 +86516,11 @@ "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], - "cfg(not(target_arch = \"wasm32\"))": [ + "cfg(not(any(target_os = \"windows\", target_arch = \"wasm32\")))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", "aarch64-linux-android", - "aarch64-pc-windows-msvc", "aarch64-unknown-fuchsia", "aarch64-unknown-linux-gnu", "aarch64-unknown-nixos-gnu", @@ -86860,7 +86530,6 @@ "armv7-unknown-linux-gnueabi", "i686-apple-darwin", "i686-linux-android", - "i686-pc-windows-msvc", "i686-unknown-freebsd", "i686-unknown-linux-gnu", "powerpc-unknown-linux-gnu", @@ -86872,14 +86541,13 @@ "x86_64-apple-darwin", "x86_64-apple-ios", "x86_64-linux-android", - "x86_64-pc-windows-msvc", "x86_64-unknown-freebsd", "x86_64-unknown-fuchsia", "x86_64-unknown-linux-gnu", "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], - "cfg(not(target_family = \"wasm\"))": [ + "cfg(not(target_arch = \"wasm32\"))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", @@ -86913,11 +86581,12 @@ "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], - "cfg(not(windows))": [ + "cfg(not(target_family = \"wasm\"))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", "aarch64-linux-android", + "aarch64-pc-windows-msvc", "aarch64-unknown-fuchsia", "aarch64-unknown-linux-gnu", "aarch64-unknown-nixos-gnu", @@ -86927,6 +86596,7 @@ "armv7-unknown-linux-gnueabi", "i686-apple-darwin", "i686-linux-android", + "i686-pc-windows-msvc", "i686-unknown-freebsd", "i686-unknown-linux-gnu", "powerpc-unknown-linux-gnu", @@ -86935,24 +86605,21 @@ "s390x-unknown-linux-gnu", "thumbv7em-none-eabi", "thumbv8m.main-none-eabi", - "wasm32-unknown-unknown", - "wasm32-wasi", - "wasm32-wasip1", "x86_64-apple-darwin", "x86_64-apple-ios", "x86_64-linux-android", + "x86_64-pc-windows-msvc", "x86_64-unknown-freebsd", "x86_64-unknown-fuchsia", "x86_64-unknown-linux-gnu", "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], - "cfg(not(windows_raw_dylib))": [ + "cfg(not(windows))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", "aarch64-linux-android", - "aarch64-pc-windows-msvc", "aarch64-unknown-fuchsia", "aarch64-unknown-linux-gnu", "aarch64-unknown-nixos-gnu", @@ -86962,7 +86629,6 @@ "armv7-unknown-linux-gnueabi", "i686-apple-darwin", "i686-linux-android", - "i686-pc-windows-msvc", "i686-unknown-freebsd", "i686-unknown-linux-gnu", "powerpc-unknown-linux-gnu", @@ -86972,12 +86638,10 @@ "thumbv7em-none-eabi", "thumbv8m.main-none-eabi", "wasm32-unknown-unknown", - "wasm32-wasi", "wasm32-wasip1", "x86_64-apple-darwin", "x86_64-apple-ios", "x86_64-linux-android", - "x86_64-pc-windows-msvc", "x86_64-unknown-freebsd", "x86_64-unknown-fuchsia", "x86_64-unknown-linux-gnu", @@ -86996,9 +86660,9 @@ "aarch64-unknown-nixos-gnu", "aarch64-unknown-nto-qnx710" ], + "cfg(target_arch = \"spirv\")": [], "cfg(target_arch = \"wasm32\")": [ "wasm32-unknown-unknown", - "wasm32-wasi", "wasm32-wasip1" ], "cfg(target_arch = \"x86\")": [ @@ -87040,11 +86704,6 @@ ], "cfg(target_os = \"haiku\")": [], "cfg(target_os = \"hermit\")": [], - "cfg(target_os = \"ios\")": [ - "aarch64-apple-ios", - "aarch64-apple-ios-sim", - "x86_64-apple-ios" - ], "cfg(target_os = \"linux\")": [ "aarch64-unknown-linux-gnu", "aarch64-unknown-nixos-gnu", @@ -87063,7 +86722,6 @@ ], "cfg(target_os = \"redox\")": [], "cfg(target_os = \"wasi\")": [ - "wasm32-wasi", "wasm32-wasip1" ], "cfg(target_os = \"windows\")": [ @@ -87120,8 +86778,6 @@ "i686-unknown-linux-gnu": [ "i686-unknown-linux-gnu" ], - "i686-uwp-windows-gnu": [], - "i686-uwp-windows-msvc": [], "powerpc-unknown-linux-gnu": [ "powerpc-unknown-linux-gnu" ], @@ -87143,9 +86799,6 @@ "wasm32-unknown-unknown": [ "wasm32-unknown-unknown" ], - "wasm32-wasi": [ - "wasm32-wasi" - ], "wasm32-wasip1": [ "wasm32-wasip1" ], @@ -87178,101 +86831,99 @@ ], "x86_64-unknown-none": [ "x86_64-unknown-none" - ], - "x86_64-uwp-windows-gnu": [], - "x86_64-uwp-windows-msvc": [] + ] }, "direct_deps": [ "actix-rt 2.10.0", "actix-web 4.9.0", "addr 0.15.6", - "aide 0.13.4", - "anyhow 1.0.93", - "arbitrary 1.3.2", + "aide 0.13.5", + "anyhow 1.0.95", + "arbitrary 1.4.1", "arc-swap 1.7.1", - "arrayvec 0.7.4", + "arrayvec 0.7.6", "askama 0.12.1", "assert-json-diff 2.0.2", "assert_cmd 2.0.16", "assert_matches 1.5.0", - "async-recursion 1.0.5", + "async-recursion 1.1.1", "async-scoped 0.8.0", "async-stream 0.3.6", - "async-trait 0.1.83", + "async-trait 0.1.85", "axum 0.7.9", "axum-extra 0.9.6", "axum-server 0.6.0", "backoff 0.4.0", - "backon 0.4.1", + "backon 0.4.4", "base32 0.4.0", "base64 0.13.1", "bech32 0.9.1", "bincode 1.3.3", "bindgen 0.65.1", - "bip32 0.5.1", + "bip32 0.5.2", "bit-vec 0.6.3", "bitcoin 0.28.2", - "bitcoin 0.32.2", + "bitcoin 0.32.5", "bitcoincore-rpc 0.15.0", "bitcoind 0.32.0", "bitflags 1.3.2", - "bs58 0.5.0", + "bs58 0.5.1", "build-info 0.0.27", "build-info-build 0.0.27", - "by_address 1.1.0", + "by_address 1.2.1", "byte-unit 4.0.19", "byteorder 1.5.0", "bytes 1.9.0", - "cached 0.49.2", + "cached 0.49.3", "canbench 0.1.8", "canbench-rs 0.1.8", - "candid 0.10.10", - "candid_parser 0.1.2", + "candid 0.10.12", + "candid_parser 0.1.4", "cargo_metadata 0.14.2", - "cc 1.0.83", + "cc 1.2.9", "cddl 0.9.4", "cfg-if 1.0.0", "chacha20poly1305 0.10.1", - "chrono 0.4.38", - "ciborium 0.2.1", + "chrono 0.4.39", + "ciborium 0.2.2", "cidr 0.2.3", - "clap 4.5.20", + "clap 4.5.26", "cloudflare 0.12.0", - "colored 2.0.4", - "comparable 0.5.4", + "colored 2.2.0", + "comparable 0.5.5", "console 0.11.3", "convert_case 0.6.0", - "crc32fast 1.3.2", + "crc32fast 1.4.2", "criterion 0.5.1", "crossbeam 0.8.4", - "crossbeam-channel 0.5.13", - "csv 1.2.2", + "crossbeam-channel 0.5.14", + "csv 1.3.1", "ctrlc 3.4.5", "curve25519-dalek 4.1.3", "cvt 0.1.2", - "dashmap 5.5.0", - "dyn-clone 1.0.14", + "dashmap 5.5.3", + "dyn-clone 1.0.17", "ed25519-dalek 2.1.1", - "educe 0.4.22", + "educe 0.4.23", "env-file-reader 0.3.0", - "erased-serde 0.3.28", - "escargot 0.5.7", - "ethers-core 2.0.8", - "ethnum 1.3.2", + "erased-serde 0.3.31", + "escargot 0.5.13", + "ethers-core 2.0.14", + "ethnum 1.5.0", "evm_rpc_types 1.2.0", "exec 0.3.1", - "eyre 0.6.8", + "eyre 0.6.12", "ff 0.12.1", - "flate2 1.0.31", + "flate2 1.0.35", "form_urlencoded 1.2.1", - "fqdn 0.3.11", + "fqdn 0.3.12", "fs_extra 1.3.0", "futures 0.3.31", "futures-util 0.3.31", "get_if_addrs 0.5.3", - "getrandom 0.2.10", + "getrandom 0.2.15", "group 0.13.0", - "hashlink 0.8.3", + "hashlink 0.8.4", "hex 0.4.3", "hex-literal 0.4.1", "hkdf 0.12.4", @@ -87282,8 +86933,8 @@ "http-body-util 0.1.2", "humantime 2.1.0", "humantime-serde 1.1.1", - "hyper 1.5.1", - "hyper-rustls 0.27.3", + "hyper 1.5.2", + "hyper-rustls 0.27.5", "hyper-socks2 0.9.1", "hyper-util 0.1.10", "ic-agent 0.39.2", @@ -87303,12 +86954,12 @@ "ic-metrics-encoder 1.1.1", "ic-response-verification 3.0.2", "ic-sha3 1.0.0", - "ic-stable-structures 0.6.5", + "ic-stable-structures 0.6.7", "ic-test-state-machine-client 3.0.1", "ic-transport-types 0.39.2", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "ic-verify-bls-signature 0.6.0", - "ic-wasm 0.8.4", + "ic-wasm 0.8.6", "ic-xrc-types 1.2.0", "ic0 0.18.11", "ic_bls12_381 0.10.0", @@ -87316,31 +86967,31 @@ "icrc1-test-env 0.1.1", "icrc1-test-suite 0.1.1", "idna 1.0.3", - "indexmap 2.2.6", - "indicatif 0.17.5", + "indexmap 2.7.0", + "indicatif 0.17.9", "indoc 1.0.9", - "inferno 0.12.0", - "insta 1.31.0", + "inferno 0.12.1", + "insta 1.42.0", "instant-acme 0.7.2", "intmap 1.1.0", "ipnet 2.10.1", "isocountry 0.3.2", - "itertools 0.12.0", + "itertools 0.12.1", "json-patch 0.2.7", "json5 0.4.1", "k256 0.13.4", "k8s-openapi 0.22.0", "kube 0.93.1", - "lazy_static 1.4.0", + "lazy_static 1.5.0", "leb128 0.2.5", - "libc 0.2.158", + "libc 0.2.169", "libflate 2.1.0", - "libfuzzer-sys 0.4.7", + "libfuzzer-sys 0.4.8", "libnss 0.5.0", "little-loadshedder 0.2.0", "lmdb-rkv 0.14.99", "lmdb-rkv-sys 0.11.99", - "local-ip-address 0.5.6", + "local-ip-address 0.5.7", "lru 0.7.8", "macaddr 1.0.1", "mach2 0.4.2", @@ -87349,9 +87000,9 @@ "metrics-proxy 0.1.0", "minicbor 0.19.1", "minicbor-derive 0.13.0", - "mockall 0.13.0", - "mockito 1.2.0", - "moka 0.12.8", + "mockall 0.13.1", + "mockito 1.6.1", + "moka 0.12.10", "more-asserts 0.3.1", "nftables 0.4.1", "nix 0.24.3", @@ -87360,81 +87011,81 @@ "num-rational 0.2.4", "num-traits 0.2.19", "num_cpus 1.16.0", - "once_cell 1.19.0", + "once_cell 1.20.2", "openssh-keys 0.5.0", "opentelemetry 0.20.0", - "opentelemetry 0.27.0", + "opentelemetry 0.27.1", "opentelemetry-otlp 0.27.0", "opentelemetry-prometheus 0.13.0", "opentelemetry_sdk 0.27.1", "p256 0.13.2", "pairing 0.23.0", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "paste 1.0.15", - "pcre2 0.2.6", + "pcre2 0.2.9", "pem 1.1.1", - "pin-project-lite 0.2.13", - "ping 0.5.0", + "pin-project-lite 0.2.16", + "ping 0.5.2", "pkcs8 0.10.2", - "pkg-config 0.3.27", + "pkg-config 0.3.31", "pprof 0.14.0", - "predicates 3.1.2", + "predicates 3.1.3", "pretty-bytes 0.2.2", - "pretty_assertions 1.4.0", - "priority-queue 1.3.2", - "proc-macro2 1.0.89", + "pretty_assertions 1.4.1", + "priority-queue 1.4.0", + "proc-macro2 1.0.93", "procfs 0.9.1", "prometheus 0.13.4", - "prometheus-parse 0.2.4", - "proptest 1.5.0", - "proptest-derive 0.5.0", - "prost 0.12.2", - "prost 0.13.3", - "prost-build 0.13.3", + "prometheus-parse 0.2.5", + "proptest 1.6.0", + "proptest-derive 0.5.1", + "prost 0.12.6", + "prost 0.13.4", + "prost-build 0.13.4", "protobuf 2.28.0", - "publicsuffix 2.2.3", + "publicsuffix 2.3.0", "quickcheck 1.0.3", - "quinn 0.11.5", - "quinn-udp 0.5.5", - "quote 1.0.37", + "quinn 0.11.6", + "quinn-udp 0.5.9", + "quote 1.0.38", "rand 0.8.5", "rand_chacha 0.3.1", "rand_distr 0.4.3", "rand_pcg 0.3.1", "ratelimit 0.9.1", "rayon 1.10.0", - "rcgen 0.13.1", - "regex 1.11.0", - "reqwest 0.12.9", - "rgb 0.8.37", - "ring 0.17.7", + "rcgen 0.13.2", + "regex 1.11.1", + "reqwest 0.12.12", + "rgb 0.8.50", + "ring 0.17.8", "ripemd 0.1.3", "rlp 0.5.2", "rocksdb 0.22.0", "rolling-file 0.2.0", - "rsa 0.9.6", + "rsa 0.9.7", "rstest 0.19.0", - "rusb 0.9.3", + "rusb 0.9.4", "rusqlite 0.28.0", "rust_decimal 1.36.0", "rust_decimal_macros 1.36.0", - "rustc-demangle 0.1.23", + "rustc-demangle 0.1.24", "rustc-hash 1.1.0", - "rustls 0.23.18", + "rustls 0.23.21", "rustls-pemfile 2.2.0", - "rustversion 1.0.14", + "rustversion 1.0.19", "rusty-fork 0.3.0", - "schemars 0.8.16", + "schemars 0.8.21", "scoped_threadpool 0.1.9", "scopeguard 1.2.0", "scraper 0.17.1", "secp256k1 0.22.2", - "semver 1.0.22", + "semver 1.0.24", "serde 1.0.217", "serde-bytes-repr 0.1.5", "serde_bytes 0.11.15", "serde_cbor 0.11.2", - "serde_json 1.0.132", + "serde_json 1.0.135", "serde_regex 1.1.0", "serde_with 1.14.0", "serde_yaml 0.9.34+deprecated", @@ -87442,7 +87093,7 @@ "sha3 0.10.8", "signal-hook 0.3.17", "signature 2.2.0", - "simple_asn1 0.6.2", + "simple_asn1 0.6.3", "simple_moving_average 1.0.2", "slog 2.7.0", "slog-async 2.8.0", @@ -87450,30 +87101,30 @@ "slog-json 2.6.1", "slog-scope 4.4.0", "slog-term 2.9.1", - "socket2 0.5.7", + "socket2 0.5.8", "ssh2 0.9.4", "static_assertions 1.1.0", "strum 0.26.3", "strum_macros 0.26.4", - "stubborn-io 0.3.2", + "stubborn-io 0.3.5", "subtle 2.6.1", "syn 1.0.109", - "tar 0.4.39", + "tar 0.4.43", "tarpc 0.34.0", - "tempfile 3.12.0", + "tempfile 3.15.0", "test-strategy 0.3.1", "tester 0.7.0", - "textplots 0.8.4", - "thiserror 2.0.3", + "textplots 0.8.6", + "thiserror 2.0.11", "thousands 0.2.0", "threadpool 1.8.1", "tikv-jemalloc-ctl 0.5.4", "tikv-jemallocator 0.5.4", - "time 0.3.36", - "tokio 1.42.0", + "time 0.3.37", + "tokio 1.43.0", "tokio-io-timeout 1.2.0", "tokio-metrics 0.4.0", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.1", "tokio-serde 0.8.0", "tokio-socks 0.5.2", "tokio-stream 0.1.17", @@ -87482,11 +87133,11 @@ "toml 0.5.11", "tonic 0.12.3", "tonic-build 0.12.3", - "tower 0.5.1", + "tower 0.5.2", "tower-http 0.6.2", "tower-request-id 0.3.0", "tower-test 0.4.0", - "tower_governor 0.4.2", + "tower_governor 0.4.3", "tracing 0.1.41", "tracing-appender 0.2.3", "tracing-flame 0.2.0", @@ -87496,22 +87147,22 @@ "tracing-subscriber 0.3.19", "trust-dns-resolver 0.22.0", "turmoil 0.6.4", - "url 2.5.3", - "uuid 1.11.0", + "url 2.5.4", + "uuid 1.12.0", "vsock 0.4.0", - "walkdir 2.3.3", + "walkdir 2.5.0", "warp 0.3.7", - "wasm-bindgen 0.2.95", + "wasm-bindgen 0.2.100", "wasm-encoder 0.217.0", "wasm-smith 0.212.0", "wasmparser 0.217.0", "wasmprinter 0.217.0", - "wasmtime 28.0.0", - "wasmtime-environ 28.0.0", + "wasmtime 28.0.1", + "wasmtime-environ 28.0.1", "wast 212.0.0", - "wat 1.212.0", + "wat 1.223.0", "wee_alloc 0.4.5", - "which 4.4.0", + "which 4.4.2", "wsl 0.1.0", "wycheproof 0.6.0", "x509-cert 0.2.5", @@ -87520,5 +87171,6 @@ "zeroize 1.8.1", "zstd 0.13.2" ], - "direct_dev_deps": [] + "direct_dev_deps": [], + "unused_patches": [] } diff --git a/Cargo.Bazel.toml.lock b/Cargo.Bazel.toml.lock index a41a0957dbd..46ca2139721 100644 --- a/Cargo.Bazel.toml.lock +++ b/Cargo.Bazel.toml.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "abnf" @@ -35,11 +35,11 @@ dependencies = [ [[package]] name = "actix-codec" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8" +checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.8.0", "bytes", "futures-core", "futures-sink", @@ -62,11 +62,11 @@ dependencies = [ "actix-utils", "ahash 0.8.11", "base64 0.22.1", - "bitflags 2.6.0", + "bitflags 2.8.0", "brotli 6.0.0", "bytes", "bytestring", - "derive_more", + "derive_more 0.99.18", "encoding_rs", "flate2", "futures-core", @@ -86,17 +86,17 @@ dependencies = [ "tokio", "tokio-util", "tracing", - "zstd 0.13.2", + "zstd", ] [[package]] name = "actix-macros" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6" +checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" dependencies = [ "quote", - "syn 1.0.109", + "syn 2.0.96", ] [[package]] @@ -127,18 +127,17 @@ dependencies = [ [[package]] name = "actix-server" -version = "2.2.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e8613a75dd50cc45f473cee3c34d59ed677c0f7b44480ce3b8247d7dc519327" +checksum = "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894" dependencies = [ "actix-rt", "actix-service", "actix-utils", "futures-core", "futures-util", - "mio 0.8.10", - "num_cpus", - "socket2 0.4.9", + "mio 1.0.3", + "socket2 0.5.8", "tokio", "tracing", ] @@ -184,7 +183,7 @@ dependencies = [ "bytestring", "cfg-if 1.0.0", "cookie", - "derive_more", + "derive_more 0.99.18", "encoding_rs", "futures-core", "futures-util", @@ -201,7 +200,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "smallvec", - "socket2 0.5.7", + "socket2 0.5.8", "time", "url", ] @@ -215,7 +214,7 @@ dependencies = [ "actix-router", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -229,18 +228,18 @@ dependencies = [ [[package]] name = "addr2line" -version = "0.20.0" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" +checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" dependencies = [ - "gimli 0.27.3", + "gimli 0.31.1", ] [[package]] -name = "adler" -version = "1.0.2" +name = "adler2" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" +checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" [[package]] name = "adler32" @@ -284,29 +283,29 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.0.2" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" dependencies = [ "memchr", ] [[package]] name = "aide" -version = "0.13.4" +version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b0e3b97a21e41ec5c19bfd9b4fc1f7086be104f8b988681230247ffc91cc8ed" +checksum = "5678d2978845ddb4bd736a026f467dd652d831e9e6254b0e41b07f7ee7523309" dependencies = [ "axum", "bytes", "cfg-if 1.0.0", "http 1.2.0", - "indexmap 2.2.6", + "indexmap 2.7.0", "schemars", "serde", "serde_json", "serde_qs", - "thiserror 1.0.68", + "thiserror 1.0.69", "tower-layer", "tower-service", "tracing", @@ -365,9 +364,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" [[package]] name = "anstream" -version = "0.6.15" +version = "0.6.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" +checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" dependencies = [ "anstyle", "anstyle-parse", @@ -380,49 +379,50 @@ dependencies = [ [[package]] name = "anstyle" -version = "1.0.8" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" +checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" [[package]] name = "anstyle-parse" -version = "0.2.1" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" +checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.0.0" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" +checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" dependencies = [ - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] name = "anstyle-wincon" -version = "3.0.1" +version = "3.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" +checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" dependencies = [ "anstyle", - "windows-sys 0.48.0", + "once_cell", + "windows-sys 0.59.0", ] [[package]] name = "anyhow" -version = "1.0.93" +version = "1.0.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775" +checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" [[package]] name = "arbitrary" -version = "1.3.2" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" +checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223" dependencies = [ "derive_arbitrary", ] @@ -441,9 +441,9 @@ checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" [[package]] name = "arrayvec" -version = "0.7.4" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" +checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "ascii-canvas" @@ -471,9 +471,9 @@ dependencies = [ [[package]] name = "askama_derive" -version = "0.12.2" +version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a0fc7dcf8bd4ead96b1d36b41df47c14beedf7b0301fc543d8f2384e66a2ec0" +checksum = "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83" dependencies = [ "askama_parser", "basic-toml", @@ -482,7 +482,7 @@ dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -493,18 +493,18 @@ checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341" [[package]] name = "askama_parser" -version = "0.1.1" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c268a96e01a4c47c8c5c2472aaa570707e006a875ea63e819f75474ceedaf7b4" +checksum = "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0" dependencies = [ "nom", ] [[package]] name = "asn1-rs" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22ad1373757efa0f70ec53939aabc7152e1591cb485208052993070ac8d2429d" +checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" dependencies = [ "asn1-rs-derive", "asn1-rs-impl", @@ -512,19 +512,19 @@ dependencies = [ "nom", "num-traits", "rusticata-macros", - "thiserror 1.0.68", + "thiserror 1.0.69", "time", ] [[package]] name = "asn1-rs-derive" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7378575ff571966e99a744addeff0bff98b8ada0dedf1956d59e634db95eaac1" +checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", "synstructure", ] @@ -536,7 +536,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -589,25 +589,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" dependencies = [ "concurrent-queue", - "event-listener-strategy 0.5.2", + "event-listener-strategy", "futures-core", "pin-project-lite", ] [[package]] name = "async-compression" -version = "0.4.3" +version = "0.4.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb42b2197bf15ccb092b62c74515dbd8b86d0effd934795f6687c93b6e679a2c" +checksum = "df895a515f70646414f4b45c0b79082783b80552b373a68283012928df56f522" dependencies = [ - "brotli 3.3.4", + "brotli 7.0.0", "flate2", "futures-core", "memchr", "pin-project-lite", "tokio", - "zstd 0.12.4", - "zstd-safe 6.0.5+zstd.1.5.4", + "zstd", + "zstd-safe", ] [[package]] @@ -625,9 +625,9 @@ dependencies = [ [[package]] name = "async-io" -version = "2.3.4" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" +checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059" dependencies = [ "async-lock", "cfg-if 1.0.0", @@ -644,12 +644,12 @@ dependencies = [ [[package]] name = "async-lock" -version = "3.3.0" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" +checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" dependencies = [ - "event-listener 4.0.3", - "event-listener-strategy 0.4.0", + "event-listener 5.4.0", + "event-listener-strategy", "pin-project-lite", ] @@ -666,13 +666,13 @@ dependencies = [ [[package]] name = "async-recursion" -version = "1.0.5" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" +checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -692,7 +692,7 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8da2537846e16b96d2972ee52a3b355663872a1a687ce6d57a3b6f6b6a181c89" dependencies = [ - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", ] @@ -715,7 +715,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -726,13 +726,13 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.83" +version = "0.1.85" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" +checksum = "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -758,8 +758,8 @@ dependencies = [ "lazy_static", "log", "rustls-pki-types", - "thiserror 1.0.68", - "webpki-roots 0.26.1", + "thiserror 1.0.69", + "webpki-roots 0.26.7", ] [[package]] @@ -781,14 +781,13 @@ dependencies = [ [[package]] name = "auto_impl" -version = "1.1.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fee3da8ef1276b0bee5dd1c7258010d8fffd31801447323115a25560e1327b89" +checksum = "e12882f59de5360c748c4cbf569a042d5fb0eb515f7bea9c1f470b47f6ffbd73" dependencies = [ - "proc-macro-error", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.96", ] [[package]] @@ -797,14 +796,14 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", ] [[package]] name = "autocfg" -version = "1.1.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" +checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" [[package]] name = "axum" @@ -820,7 +819,7 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-util", "itoa", "matchit", @@ -833,9 +832,9 @@ dependencies = [ "serde_json", "serde_path_to_error", "serde_urlencoded", - "sync_wrapper 1.0.1", + "sync_wrapper 1.0.2", "tokio", - "tower 0.5.1", + "tower 0.5.2", "tower-layer", "tower-service", "tracing", @@ -856,7 +855,7 @@ dependencies = [ "mime", "pin-project-lite", "rustversion", - "sync_wrapper 1.0.1", + "sync_wrapper 1.0.2", "tower-layer", "tower-service", "tracing", @@ -871,7 +870,7 @@ dependencies = [ "axum", "axum-core", "bytes", - "fastrand 2.1.0", + "fastrand", "futures-util", "headers 0.4.0", "http 1.2.0", @@ -881,7 +880,7 @@ dependencies = [ "multer 3.1.0", "pin-project-lite", "serde", - "tower 0.5.1", + "tower 0.5.2", "tower-layer", "tower-service", ] @@ -894,7 +893,7 @@ checksum = "57d123550fa8d071b7255cb0cc04dc302baa6c8c4a79f55701552684d8399bce" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -927,7 +926,7 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-util", "pin-project-lite", "rustls 0.21.12", @@ -954,11 +953,11 @@ dependencies = [ [[package]] name = "backon" -version = "0.4.1" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c1a6197b2120bb2185a267f6515038558b019e92b832bb0320e96d66268dcf9" +checksum = "d67782c3f868daa71d3533538e98a8e13713231969def7536e8039606fc46bf0" dependencies = [ - "fastrand 1.9.0", + "fastrand", "futures-core", "pin-project", "tokio", @@ -966,17 +965,17 @@ dependencies = [ [[package]] name = "backtrace" -version = "0.3.68" +version = "0.3.74" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" +checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" dependencies = [ "addr2line", - "cc", "cfg-if 1.0.0", "libc", "miniz_oxide", - "object 0.31.1", + "object", "rustc-demangle", + "windows-targets 0.52.6", ] [[package]] @@ -1015,9 +1014,9 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" [[package]] name = "base64" -version = "0.21.6" +version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c79fed4cdb43e993fcdadc7e58a09fd0e3e649c4436fa11da71c9f1f3ee7feb9" +checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" [[package]] name = "base64" @@ -1031,7 +1030,7 @@ version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb9fb9fb058cc3063b5fc88d9a21eefa2735871498a04e1650da76ed511c8569" dependencies = [ - "base64 0.21.6", + "base64 0.21.7", ] [[package]] @@ -1042,9 +1041,9 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "basic-toml" -version = "0.1.7" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f2139706359229bfa8f19142ac1155b4b80beafb7a60471ac5dd109d4a19778" +checksum = "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8" dependencies = [ "serde", ] @@ -1100,19 +1099,19 @@ dependencies = [ "regex", "rustc-hash 1.1.0", "shlex", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "bindgen" -version = "0.69.4" +version = "0.69.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" +checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "cexpr", "clang-sys", - "itertools 0.12.0", + "itertools 0.12.1", "lazy_static", "lazycell", "proc-macro2", @@ -1120,7 +1119,7 @@ dependencies = [ "regex", "rustc-hash 1.1.0", "shlex", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -1148,9 +1147,9 @@ dependencies = [ [[package]] name = "bip32" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e141fb0f8be1c7b45887af94c88b182472b57c96b56773250ae00cd6a14a164" +checksum = "aa13fae8b6255872fd86f7faf4b41168661d7d78609f7bfe6771b85c6739a15b" dependencies = [ "bs58", "hmac", @@ -1170,7 +1169,16 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" dependencies = [ - "bit-vec", + "bit-vec 0.6.3", +] + +[[package]] +name = "bit-set" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" +dependencies = [ + "bit-vec 0.8.0", ] [[package]] @@ -1179,6 +1187,12 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" +[[package]] +name = "bit-vec" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" + [[package]] name = "bitcoin" version = "0.28.2" @@ -1193,9 +1207,9 @@ dependencies = [ [[package]] name = "bitcoin" -version = "0.30.0" +version = "0.30.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b36f4c848f6bd9ff208128f08751135846cc23ae57d66ab10a22efff1c675f3c" +checksum = "1945a5048598e4189e239d3f809b19bdad4845c4b2ba400d304d2dcf26d2c462" dependencies = [ "bech32 0.9.1", "bitcoin-private", @@ -1207,9 +1221,9 @@ dependencies = [ [[package]] name = "bitcoin" -version = "0.32.2" +version = "0.32.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea507acc1cd80fc084ace38544bbcf7ced7c2aa65b653b102de0ce718df668f6" +checksum = "ce6bc65742dea50536e35ad42492b234c27904a27f0abdcbce605015cb4ea026" dependencies = [ "base58ck", "bech32 0.11.0", @@ -1219,7 +1233,7 @@ dependencies = [ "bitcoin_hashes 0.14.0", "hex-conservative", "hex_lit", - "secp256k1 0.29.0", + "secp256k1 0.29.1", ] [[package]] @@ -1230,9 +1244,9 @@ checksum = "30bdbe14aa07b06e6cfeffc529a1f099e5fbe249524f8125358604df99a4bed2" [[package]] name = "bitcoin-io" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "340e09e8399c7bd8912f495af6aa58bea0c9214773417ffaa8f6460f93aaee56" +checksum = "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf" [[package]] name = "bitcoin-private" @@ -1323,9 +1337,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.6.0" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" +checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" [[package]] name = "bitvec" @@ -1372,9 +1386,9 @@ dependencies = [ [[package]] name = "borsh" -version = "1.5.2" +version = "1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5327f6c99920069d1fe374aa743be1af0031dea9f250852cdf1ae6a0861ee24" +checksum = "9fb65153674e51d3a42c8f27b05b9508cea85edfaade8aa46bc8fc18cecdfef3" dependencies = [ "borsh-derive", "cfg_aliases", @@ -1382,26 +1396,15 @@ dependencies = [ [[package]] name = "borsh-derive" -version = "1.5.2" +version = "1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10aedd8f1a81a8aafbfde924b0e3061cd6fedd6f6bbcfc6a76e6fd426d7bfe26" +checksum = "a396e17ad94059c650db3d253bb6e25927f1eb462eede7e7a153bb6e75dce0a7" dependencies = [ "once_cell", - "proc-macro-crate 3.2.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.87", -] - -[[package]] -name = "brotli" -version = "3.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" -dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", - "brotli-decompressor 2.3.4", + "syn 2.0.96", ] [[package]] @@ -1412,7 +1415,7 @@ checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", - "brotli-decompressor 4.0.1", + "brotli-decompressor", ] [[package]] @@ -1423,17 +1426,7 @@ checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", - "brotli-decompressor 4.0.1", -] - -[[package]] -name = "brotli-decompressor" -version = "2.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744" -dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", + "brotli-decompressor", ] [[package]] @@ -1448,9 +1441,9 @@ dependencies = [ [[package]] name = "bs58" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896" +checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" dependencies = [ "sha2 0.10.8", "tinyvec", @@ -1458,12 +1451,12 @@ dependencies = [ [[package]] name = "bstr" -version = "1.6.0" +version = "1.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05" +checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0" dependencies = [ "memchr", - "regex-automata 0.3.3", + "regex-automata 0.4.9", "serde", ] @@ -1501,7 +1494,7 @@ name = "build-info-common" version = "0.0.27" source = "git+https://github.com/dfinity-lab/build-info?rev=701a696844fba5c87df162fbbc1ccef96f27c9d7#701a696844fba5c87df162fbbc1ccef96f27c9d7" dependencies = [ - "derive_more", + "derive_more 0.99.18", "semver", "serde", ] @@ -1537,9 +1530,9 @@ dependencies = [ [[package]] name = "by_address" -version = "1.1.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf8dba2868114ed769a1f2590fc9ae5eb331175b44313b6c9b922f8f7ca813d0" +checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06" [[package]] name = "byte-slice-cast" @@ -1559,9 +1552,9 @@ dependencies = [ [[package]] name = "bytecheck" -version = "0.6.11" +version = "0.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627" +checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" dependencies = [ "bytecheck_derive", "ptr_meta", @@ -1570,9 +1563,9 @@ dependencies = [ [[package]] name = "bytecheck_derive" -version = "0.6.11" +version = "0.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61" +checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" dependencies = [ "proc-macro2", "quote", @@ -1581,9 +1574,9 @@ dependencies = [ [[package]] name = "bytemuck" -version = "1.13.1" +version = "1.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" +checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3" [[package]] name = "byteorder" @@ -1608,9 +1601,9 @@ checksum = "a3e368af43e418a04d52505cf3dbc23dda4e3407ae2fa99fd0e4f308ce546acc" [[package]] name = "bytestring" -version = "1.3.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae" +checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f" dependencies = [ "bytes", ] @@ -1634,14 +1627,14 @@ checksum = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b" [[package]] name = "cached" -version = "0.49.2" +version = "0.49.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f251fd1e72720ca07bf5d8e310f54a193fd053479a1f6342c6663ee4fa01cf96" +checksum = "8e8e463fceca5674287f32d252fb1d94083758b8709c160efae66d263e5f4eba" dependencies = [ "hashbrown 0.14.5", "instant", "once_cell", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -1654,7 +1647,7 @@ dependencies = [ "hashbrown 0.14.5", "instant", "once_cell", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -1668,7 +1661,7 @@ dependencies = [ "cached_proc_macro_types", "hashbrown 0.14.5", "once_cell", - "thiserror 1.0.68", + "thiserror 1.0.69", "web-time", ] @@ -1681,7 +1674,7 @@ dependencies = [ "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -1692,9 +1685,9 @@ checksum = "ade8366b8bd5ba243f0a58f036cc0ca8a2f069cff1a2351ef1cac6b083e16fc0" [[package]] name = "camino" -version = "1.1.6" +version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" +checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" dependencies = [ "serde", ] @@ -1707,7 +1700,7 @@ checksum = "cb548f9e006ad29b160d37e07435c499af7d2741918e18d95ddc87dfe97a0b8d" dependencies = [ "canbench-rs", "candid", - "clap 4.5.20", + "clap 4.5.26", "colored", "flate2", "hex", @@ -1746,9 +1739,9 @@ dependencies = [ [[package]] name = "candid" -version = "0.10.10" +version = "0.10.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c30ee7f886f296b6422c0ff017e89dd4f831521dfdcc76f3f71aae1ce817222" +checksum = "51e129c4051c57daf943586e01ef72faae48b04a8f692d5f646febf17a264c38" dependencies = [ "anyhow", "binread", @@ -1760,11 +1753,11 @@ dependencies = [ "num-bigint 0.4.6", "num-traits", "paste", - "pretty 0.12.1", + "pretty 0.12.3", "serde", "serde_bytes", "stacker", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -1776,33 +1769,33 @@ dependencies = [ "lazy_static", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "candid_parser" -version = "0.1.2" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36381de3ba8a312deb028552c0d63f7c7fe6e204f44bae4c58a3643308cfa9d5" +checksum = "48a3da76f989cd350b7342c64c6c6008341bb6186f6832ef04e56dc50ba0fd76" dependencies = [ "anyhow", "candid", "codespan-reporting", "convert_case 0.6.0", "hex", - "lalrpop 0.20.0", - "lalrpop-util 0.20.0", + "lalrpop 0.20.2", + "lalrpop-util 0.20.2", "logos 0.13.0", "num-bigint 0.4.6", - "pretty 0.12.1", - "thiserror 1.0.68", + "pretty 0.12.3", + "thiserror 1.0.69", ] [[package]] name = "cargo-platform" -version = "0.1.3" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2cfa25e60aea747ec7e1124f238816749faa93759c6ff5b31f1ccdda137f4479" +checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" dependencies = [ "serde", ] @@ -1828,12 +1821,13 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] name = "cc" -version = "1.0.83" +version = "1.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" +checksum = "c8293772165d9345bdaaa39b45b2109591e63fe5e6fbc23c6ff930a048aa310b" dependencies = [ "jobserver", "libc", + "shlex", ] [[package]] @@ -1860,7 +1854,7 @@ dependencies = [ "pest_meta", "pest_vm", "regex", - "regex-syntax 0.7.4", + "regex-syntax 0.7.5", "serde", "serde-wasm-bindgen", "serde_json", @@ -1928,9 +1922,9 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.38" +version = "0.4.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" +checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825" dependencies = [ "android-tzdata", "iana-time-zone", @@ -1943,9 +1937,9 @@ dependencies = [ [[package]] name = "ciborium" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" +checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" dependencies = [ "ciborium-io", "ciborium-ll", @@ -1954,18 +1948,18 @@ dependencies = [ [[package]] name = "ciborium-io" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" +checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" [[package]] name = "ciborium-ll" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" +checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" dependencies = [ "ciborium-io", - "half", + "half 2.4.1", ] [[package]] @@ -1987,9 +1981,9 @@ dependencies = [ [[package]] name = "clang-sys" -version = "1.6.1" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" +checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" dependencies = [ "glob", "libc", @@ -2015,23 +2009,23 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.20" +version = "4.5.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" +checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783" dependencies = [ "clap_builder", - "clap_derive 4.5.18", + "clap_derive 4.5.24", ] [[package]] name = "clap_builder" -version = "4.5.20" +version = "4.5.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" +checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121" dependencies = [ "anstream", "anstyle", - "clap_lex 0.7.2", + "clap_lex 0.7.4", "strsim 0.11.1", ] @@ -2050,14 +2044,14 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.18" +version = "4.5.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" +checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -2071,9 +2065,9 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.7.2" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" +checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" [[package]] name = "clocksource" @@ -2108,7 +2102,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "serde_with 2.3.3", - "thiserror 1.0.68", + "thiserror 1.0.69", "url", "uuid", ] @@ -2126,7 +2120,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "serde_with 2.3.3", - "thiserror 1.0.68", + "thiserror 1.0.69", "url", "uuid", ] @@ -2144,24 +2138,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" dependencies = [ "termcolor", - "unicode-width", + "unicode-width 0.1.14", ] [[package]] name = "colorchoice" -version = "1.0.0" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" +checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" [[package]] name = "colored" -version = "2.0.4" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2674ec482fbc38012cf31e6c42ba0177b431a0cb6f15fe40efa5aab1bda516f6" +checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c" dependencies = [ - "is-terminal", "lazy_static", - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] @@ -2176,9 +2169,9 @@ dependencies = [ [[package]] name = "comparable" -version = "0.5.4" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb513ee8037bf08c5270ecefa48da249f4c58e57a71ccfce0a5b0877d2a20eb2" +checksum = "8606f9aa5b5a2df738584b139c79413d0c1545ed0ffd16e76e0944d1de7388c0" dependencies = [ "comparable_derive", "comparable_helper", @@ -2188,9 +2181,9 @@ dependencies = [ [[package]] name = "comparable_derive" -version = "0.5.4" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a54b9c40054eb8999c5d1d36fdc90e4e5f7ff0d1d9621706f360b3cbc8beb828" +checksum = "41f36ea7383b9a2a9ae0a4e225d8a9c1c3aeadde78c59cdc35bad5c02b4dad01" dependencies = [ "convert_case 0.4.0", "proc-macro2", @@ -2200,9 +2193,9 @@ dependencies = [ [[package]] name = "comparable_helper" -version = "0.5.4" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb5437e327e861081c91270becff184859f706e3e50f5301a9d4dc8eb50752c3" +checksum = "71c9b60259084f32c14d32476f3a299b4997e3c186e1473bd972ff8a8c83d1b4" dependencies = [ "convert_case 0.6.0", "proc-macro2", @@ -2225,28 +2218,28 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c0994e656bba7b922d8dd1245db90672ffb701e684e45be58f20719d69abc5a" dependencies = [ - "encode_unicode", + "encode_unicode 0.3.6", "lazy_static", "libc", "regex", "terminal_size", "termios", - "unicode-width", + "unicode-width 0.1.14", "winapi 0.3.9", "winapi-util", ] [[package]] name = "console" -version = "0.15.7" +version = "0.15.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" +checksum = "ea3c6ecd8059b57859df5c69830340ed3c41d30e3da0c1cbed90a96ac853041b" dependencies = [ - "encode_unicode", - "lazy_static", + "encode_unicode 1.0.0", "libc", - "unicode-width", - "windows-sys 0.45.0", + "once_cell", + "unicode-width 0.2.0", + "windows-sys 0.59.0", ] [[package]] @@ -2259,11 +2252,24 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "const-hex" +version = "1.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b0485bab839b018a8f1723fc5391819fea5f8f0f32288ef8a735fd096b6160c" +dependencies = [ + "cfg-if 1.0.0", + "cpufeatures", + "hex", + "proptest", + "serde", +] + [[package]] name = "const-oid" -version = "0.9.4" +version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "795bc6e66a8e340f075fcf6227e417a2dc976b92b91f3cdc778bb858778b6747" +checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" [[package]] name = "convert_case" @@ -2301,6 +2307,16 @@ dependencies = [ "libc", ] +[[package]] +name = "core-foundation" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" +dependencies = [ + "core-foundation-sys", + "libc", +] + [[package]] name = "core-foundation-sys" version = "0.8.7" @@ -2327,7 +2343,7 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "581898ed9a83f31c64731b1d8ca2dfffcfec14edf1635afacd5234cddbde3a41" dependencies = [ - "bitcoin 0.30.0", + "bitcoin 0.30.2", "bitcoin-private", "serde", "serde_json", @@ -2344,27 +2360,27 @@ dependencies = [ [[package]] name = "cpufeatures" -version = "0.2.9" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" +checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3" dependencies = [ "libc", ] [[package]] name = "cranelift-bforest" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac89549be94911dd0e839b4a7db99e9ed29c17517e1c026f61066884c168aa3c" +checksum = "88c1d02b72b6c411c0a2e92b25ed791ad5d071184193c08a34aa0fdcdf000b72" dependencies = [ "cranelift-entity", ] [[package]] name = "cranelift-bitset" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9bd49369f76c77e34e641af85d0956869237832c118964d08bf5f51f210875a" +checksum = "720b93bd86ebbb23ebfb2db1ed44d54b2ecbdbb2d034d485bc64aa605ee787ab" dependencies = [ "serde", "serde_derive", @@ -2372,9 +2388,9 @@ dependencies = [ [[package]] name = "cranelift-codegen" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd96ce9cf8efebd7f5ab8ced5a0ce44250280bbae9f593d74a6d7effc3582a35" +checksum = "aed3d2d9914d30b460eedd7fd507720203023997bef71452ce84873f9c93537c" dependencies = [ "bumpalo", "cranelift-bforest", @@ -2388,7 +2404,7 @@ dependencies = [ "hashbrown 0.14.5", "log", "regalloc2", - "rustc-hash 2.0.0", + "rustc-hash 2.1.0", "serde", "smallvec", "target-lexicon", @@ -2396,33 +2412,33 @@ dependencies = [ [[package]] name = "cranelift-codegen-meta" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a68e358827afe4bfb6239fcbf6fbd5ac56206ece8a99c8f5f9bbd518773281a" +checksum = "888c188d32263ec9e048873ff0b68c700933600d553f4412417916828be25f8e" dependencies = [ "cranelift-codegen-shared", ] [[package]] name = "cranelift-codegen-shared" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e184c9767afbe73d50c55ec29abcf4c32f9baf0d9d22b86d58c4d55e06dee181" +checksum = "4ddd5f4114d04ce7e073dd74e2ad16541fc61970726fcc8b2d5644a154ee4127" [[package]] name = "cranelift-control" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cc7664f2a66f053e33f149e952bb5971d138e3af637f5097727ed6dc0ed95dd" +checksum = "92cc4c98d6a4256a1600d93ccd3536f3e77da9b4ca2c279de786ac22876e67d6" dependencies = [ "arbitrary", ] [[package]] name = "cranelift-entity" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "118597e3a9cf86c3556fa579a7a23b955fa18231651a52a77a2475d305a9cf84" +checksum = "760af4b5e051b5f82097a27274b917e3751736369fa73660513488248d27f23d" dependencies = [ "cranelift-bitset", "serde", @@ -2431,9 +2447,9 @@ dependencies = [ [[package]] name = "cranelift-frontend" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7638ea1efb069a0aa18d8ee67401b6b0d19f6bfe5de5e9ede348bfc80bb0d8c7" +checksum = "c0bf77ec0f470621655ec7539860b5c620d4f91326654ab21b075b83900f8831" dependencies = [ "cranelift-codegen", "log", @@ -2443,15 +2459,15 @@ dependencies = [ [[package]] name = "cranelift-isle" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15c53e1152a0b01c4ed2b1e0535602b8e86458777dd9d18b28732b16325c7dc0" +checksum = "4b665d0a6932c421620be184f9fc7f7adaf1b0bc2fa77bb7ac5177c49abf645b" [[package]] name = "cranelift-native" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b7d8f895444fa52dd7bdd0bed11bf007a7fb43af65a6deac8fcc4094c6372f7" +checksum = "bb2e75d1bd43dfec10924798f15e6474f1dbf63b0024506551aa19394dbe72ab" dependencies = [ "cranelift-codegen", "libc", @@ -2460,9 +2476,9 @@ dependencies = [ [[package]] name = "crc32fast" -version = "1.3.2" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" +checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" dependencies = [ "cfg-if 1.0.0", ] @@ -2476,7 +2492,7 @@ dependencies = [ "anes", "cast", "ciborium", - "clap 4.5.20", + "clap 4.5.26", "criterion-plot", "futures", "is-terminal", @@ -2520,18 +2536,18 @@ dependencies = [ [[package]] name = "crossbeam-channel" -version = "0.5.13" +version = "0.5.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" +checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471" dependencies = [ "crossbeam-utils", ] [[package]] name = "crossbeam-deque" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" +checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" dependencies = [ "crossbeam-epoch", "crossbeam-utils", @@ -2548,18 +2564,18 @@ dependencies = [ [[package]] name = "crossbeam-queue" -version = "0.3.11" +version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" +checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" dependencies = [ "crossbeam-utils", ] [[package]] name = "crossbeam-utils" -version = "0.8.19" +version = "0.8.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" [[package]] name = "crossterm" @@ -2567,11 +2583,11 @@ version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "crossterm_winapi", "libc", - "mio 0.8.10", - "parking_lot 0.12.1", + "mio 0.8.11", + "parking_lot 0.12.3", "signal-hook", "signal-hook-mio", "winapi 0.3.9", @@ -2594,9 +2610,9 @@ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" [[package]] name = "crypto-bigint" -version = "0.5.2" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf4c2f4e1afd912bc40bfd6fed5d9dc1f288e0ba01bfcc835cc5bc3eb13efe15" +checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" dependencies = [ "generic-array", "rand_core 0.6.4", @@ -2624,7 +2640,7 @@ dependencies = [ "cssparser-macros", "dtoa-short", "itoa", - "phf 0.11.2", + "phf 0.11.3", "smallvec", ] @@ -2635,14 +2651,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" dependencies = [ "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "csv" -version = "1.2.2" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "626ae34994d3d8d668f4269922248239db4ae42d538b14c398b74a52208e8086" +checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf" dependencies = [ "csv-core", "itoa", @@ -2652,9 +2668,9 @@ dependencies = [ [[package]] name = "csv-core" -version = "0.1.10" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" +checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" dependencies = [ "memchr", ] @@ -2695,7 +2711,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -2765,7 +2781,7 @@ dependencies = [ "proc-macro2", "quote", "strsim 0.11.1", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -2787,26 +2803,26 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core 0.20.10", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "dary_heap" -version = "0.3.6" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7762d17f1241643615821a8455a0b2c3e803784b058693d990b11f2dce25a0ca" +checksum = "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728" [[package]] name = "dashmap" -version = "5.5.0" +version = "5.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6943ae99c34386c84a470c499d3414f66502a41340aa895406e0d2e4a207b91d" +checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" dependencies = [ "cfg-if 1.0.0", "hashbrown 0.14.5", "lock_api", "once_cell", - "parking_lot_core 0.9.8", + "parking_lot_core 0.9.10", ] [[package]] @@ -2820,14 +2836,14 @@ dependencies = [ "hashbrown 0.14.5", "lock_api", "once_cell", - "parking_lot_core 0.9.8", + "parking_lot_core 0.9.10", ] [[package]] name = "data-encoding" -version = "2.4.0" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" +checksum = "0e60eed09d8c01d3cee5b7d30acb059b76614c918fa0f992e0dd6eeb10daad6f" [[package]] name = "debugid" @@ -2840,9 +2856,9 @@ dependencies = [ [[package]] name = "der" -version = "0.7.7" +version = "0.7.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c7ed52955ce76b1554f509074bb357d3fb8ac9b51288a65a3fd480d1dfba946" +checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" dependencies = [ "const-oid", "der_derive", @@ -2867,13 +2883,13 @@ dependencies = [ [[package]] name = "der_derive" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fe87ce4529967e0ba1dcf8450bab64d97dfd5010a6256187ffe2e43e6f0e049" +checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -2894,31 +2910,51 @@ checksum = "2cdc8d50f426189eef89dac62fabfa0abb27d5cc008f25bf4156a0203325becc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "derive_arbitrary" -version = "1.3.2" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" +checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "derive_more" -version = "0.99.17" +version = "0.99.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" +checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" dependencies = [ "convert_case 0.4.0", "proc-macro2", "quote", "rustc_version", - "syn 1.0.109", + "syn 2.0.96", +] + +[[package]] +name = "derive_more" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" +dependencies = [ + "derive_more-impl", +] + +[[package]] +name = "derive_more-impl" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.96", ] [[package]] @@ -2965,7 +3001,7 @@ dependencies = [ "anyhow", "arbitrary", "arc-swap", - "arrayvec 0.7.4", + "arrayvec 0.7.6", "askama", "assert-json-diff", "assert_cmd", @@ -2985,9 +3021,9 @@ dependencies = [ "bincode", "bindgen 0.65.1", "bip32", - "bit-vec", + "bit-vec 0.6.3", "bitcoin 0.28.2", - "bitcoin 0.32.2", + "bitcoin 0.32.5", "bitcoincore-rpc", "bitcoind", "bitflags 1.3.2", @@ -2998,7 +3034,7 @@ dependencies = [ "byte-unit", "byteorder", "bytes", - "cached 0.49.2", + "cached 0.49.3", "canbench", "canbench-rs", "candid", @@ -3011,7 +3047,7 @@ dependencies = [ "chrono", "ciborium", "cidr", - "clap 4.5.20", + "clap 4.5.26", "cloudflare 0.12.0 (git+https://github.com/dfinity/cloudflare-rs.git?rev=a6538a036926bd756986c9c0a5de356daef48881)", "colored", "comparable", @@ -3025,7 +3061,7 @@ dependencies = [ "ctrlc", "curve25519-dalek", "cvt", - "dashmap 5.5.0", + "dashmap 5.5.3", "dyn-clone", "ed25519-dalek", "educe", @@ -3040,7 +3076,7 @@ dependencies = [ "ff 0.12.1", "flate2", "form_urlencoded", - "fqdn 0.3.11", + "fqdn 0.3.12", "fs_extra", "futures", "futures-util", @@ -3057,8 +3093,8 @@ dependencies = [ "http-body-util", "humantime", "humantime-serde", - "hyper 1.5.1", - "hyper-rustls 0.27.3", + "hyper 1.5.2", + "hyper-rustls 0.27.5", "hyper-socks2", "hyper-util", "ic-agent", @@ -3091,16 +3127,16 @@ dependencies = [ "icrc1-test-env", "icrc1-test-suite", "idna 1.0.3", - "indexmap 2.2.6", + "indexmap 2.7.0", "indicatif", "indoc", - "inferno 0.12.0", + "inferno 0.12.1", "insta", "instant-acme", "intmap", "ipnet", "isocountry", - "itertools 0.12.0", + "itertools 0.12.1", "json-patch", "json5", "k256", @@ -3138,13 +3174,13 @@ dependencies = [ "once_cell", "openssh-keys", "opentelemetry 0.20.0", - "opentelemetry 0.27.0", + "opentelemetry 0.27.1", "opentelemetry-otlp", "opentelemetry-prometheus 0.13.0", "opentelemetry_sdk 0.27.1", "p256", "pairing", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "paste", "pcre2", "pem 1.1.1", @@ -3163,9 +3199,9 @@ dependencies = [ "prometheus-parse", "proptest", "proptest-derive", - "prost 0.12.2", - "prost 0.13.3", - "prost-build 0.13.3", + "prost 0.12.6", + "prost 0.13.4", + "prost-build 0.13.4", "protobuf", "publicsuffix", "quickcheck", @@ -3180,9 +3216,9 @@ dependencies = [ "rayon", "rcgen", "regex", - "reqwest 0.12.9", + "reqwest 0.12.12", "rgb", - "ring 0.17.7", + "ring 0.17.8", "ripemd", "rlp", "rocksdb", @@ -3195,7 +3231,7 @@ dependencies = [ "rust_decimal_macros", "rustc-demangle", "rustc-hash 1.1.0", - "rustls 0.23.18", + "rustls 0.23.21", "rustls-pemfile 2.2.0", "rustversion", "rusty-fork", @@ -3225,11 +3261,11 @@ dependencies = [ "slog-json", "slog-scope", "slog-term", - "socket2 0.5.7", + "socket2 0.5.8", "ssh2", "static_assertions", - "strum 0.26.3", - "strum_macros 0.26.4", + "strum", + "strum_macros", "stubborn-io", "subtle", "syn 1.0.109", @@ -3239,7 +3275,7 @@ dependencies = [ "test-strategy", "tester", "textplots", - "thiserror 2.0.3", + "thiserror 2.0.11", "thousands", "threadpool", "tikv-jemalloc-ctl", @@ -3248,7 +3284,7 @@ dependencies = [ "tokio", "tokio-io-timeout", "tokio-metrics", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.1", "tokio-serde", "tokio-socks", "tokio-stream", @@ -3257,7 +3293,7 @@ dependencies = [ "toml", "tonic", "tonic-build", - "tower 0.5.1", + "tower 0.5.2", "tower-http 0.6.2", "tower-request-id", "tower-test", @@ -3283,7 +3319,7 @@ dependencies = [ "wasmprinter 0.217.0", "wasmtime", "wasmtime-environ", - "wast", + "wast 212.0.0", "wat", "wee_alloc", "which", @@ -3291,9 +3327,9 @@ dependencies = [ "wycheproof", "x509-cert", "x509-parser", - "yansi", + "yansi 0.5.1", "zeroize", - "zstd 0.13.2", + "zstd", ] [[package]] @@ -3340,13 +3376,13 @@ dependencies = [ [[package]] name = "displaydoc" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" +checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -3379,9 +3415,9 @@ checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" [[package]] name = "dtoa-short" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74" +checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" dependencies = [ "dtoa", ] @@ -3397,9 +3433,9 @@ dependencies = [ [[package]] name = "dyn-clone" -version = "1.0.14" +version = "1.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23d2f3407d9a573d666de4b5bdf10569d73ca9478087346697dcbae6244bfbcd" +checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" [[package]] name = "ecdsa" @@ -3436,7 +3472,7 @@ dependencies = [ "rand_core 0.6.4", "serde", "sha2 0.9.9", - "thiserror 1.0.68", + "thiserror 1.0.69", "zeroize", ] @@ -3459,9 +3495,9 @@ dependencies = [ [[package]] name = "educe" -version = "0.4.22" +version = "0.4.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "079044df30bb07de7d846d41a184c4b00e66ebdac93ee459253474f3a47e50ae" +checksum = "0f0042ff8246a363dbe77d2ceedb073339e85a804b9a47636c6e016a9a32c05f" dependencies = [ "enum-ordinalize", "proc-macro2", @@ -3471,15 +3507,15 @@ dependencies = [ [[package]] name = "ego-tree" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a68a4904193147e0a8dec3314640e6db742afd5f6e634f428a6af230d9b3591" +checksum = "12a0bb14ac04a9fcf170d0bbbef949b44cc492f4452bd20c095636956f653642" [[package]] name = "either" -version = "1.8.1" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" +checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" [[package]] name = "elliptic-curve" @@ -3507,11 +3543,17 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" +[[package]] +name = "embedded-io" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" + [[package]] name = "ena" -version = "0.14.2" +version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1" +checksum = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5" dependencies = [ "log", ] @@ -3522,11 +3564,17 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" +[[package]] +name = "encode_unicode" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" + [[package]] name = "encoding_rs" -version = "0.8.32" +version = "0.8.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" +checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" dependencies = [ "cfg-if 1.0.0", ] @@ -3545,27 +3593,27 @@ dependencies = [ [[package]] name = "enum-as-inner" -version = "0.6.0" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" +checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" dependencies = [ - "heck 0.4.1", + "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "enum-ordinalize" -version = "3.1.13" +version = "3.1.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4f76552f53cefc9a7f64987c3701b99d982f7690606fd67de1d09712fbf52f1" +checksum = "1bf1fa3f06bbff1ea5b1a9c7b14aa992a39657db60a2759457328d7e058f49ee" dependencies = [ "num-bigint 0.4.6", "num-traits", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -3581,9 +3629,9 @@ dependencies = [ [[package]] name = "env_filter" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" +checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" dependencies = [ "log", ] @@ -3600,9 +3648,9 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.11.2" +version = "0.11.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c012a26a7f605efc424dd53697843a72be7dc86ad2d01f7814337794a12231d" +checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0" dependencies = [ "env_filter", "log", @@ -3625,7 +3673,7 @@ checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -3636,9 +3684,9 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "erased-serde" -version = "0.3.28" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da96524cc884f6558f1769b6c46686af2fe8e8b4cd253bd5a3cdba8181b8e070" +checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c" dependencies = [ "serde", ] @@ -3656,12 +3704,12 @@ dependencies = [ [[package]] name = "errno" -version = "0.3.8" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" +checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -3676,9 +3724,9 @@ dependencies = [ [[package]] name = "escargot" -version = "0.5.7" +version = "0.5.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5584ba17d7ab26a8a7284f13e5bd196294dd2f2d79773cff29b9e9edef601a6" +checksum = "05a3ac187a16b5382fef8c69fd1bad123c67b7cf3932240a2d43dcdd32cded88" dependencies = [ "log", "once_cell", @@ -3699,7 +3747,7 @@ dependencies = [ "serde", "serde_json", "sha3", - "thiserror 1.0.68", + "thiserror 1.0.69", "uint", ] @@ -3736,17 +3784,17 @@ dependencies = [ [[package]] name = "ethers-core" -version = "2.0.8" +version = "2.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60ca2514feb98918a0a31de7e1983c29f2267ebf61b2dc5d4294f91e5b866623" +checksum = "82d80cc6ad30b14a48ab786523af33b37f28a8623fc06afd55324816ef18fb1f" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", "bytes", "chrono", + "const-hex", "elliptic-curve", "ethabi", "generic-array", - "hex", "k256", "num_enum", "open-fastrlp", @@ -3754,18 +3802,18 @@ dependencies = [ "rlp", "serde", "serde_json", - "strum 0.25.0", + "strum", "tempfile", - "thiserror 1.0.68", + "thiserror 1.0.69", "tiny-keccak", "unicode-xid", ] [[package]] name = "ethnum" -version = "1.3.2" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0198b9d0078e0f30dedc7acbb21c974e838fc8fae3ee170128658a98cb2c1c04" +checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c" dependencies = [ "serde", ] @@ -3778,20 +3826,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "event-listener" -version = "4.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" -dependencies = [ - "concurrent-queue", - "parking", - "pin-project-lite", -] - -[[package]] -name = "event-listener" -version = "5.3.1" +version = "5.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" +checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" dependencies = [ "concurrent-queue", "parking", @@ -3800,21 +3837,11 @@ dependencies = [ [[package]] name = "event-listener-strategy" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" -dependencies = [ - "event-listener 4.0.3", - "pin-project-lite", -] - -[[package]] -name = "event-listener-strategy" -version = "0.5.2" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" +checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2" dependencies = [ - "event-listener 5.3.1", + "event-listener 5.4.0", "pin-project-lite", ] @@ -3829,8 +3856,8 @@ dependencies = [ "ic-cdk 0.16.0", "num-bigint 0.4.6", "serde", - "strum 0.26.3", - "thiserror 1.0.68", + "strum", + "thiserror 1.0.69", "url", ] @@ -3852,9 +3879,9 @@ checksum = "de853764b47027c2e862a995c34978ffa63c1501f2e15f987ba11bd4f9bba193" [[package]] name = "eyre" -version = "0.6.8" +version = "0.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb" +checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec" dependencies = [ "indenter", "once_cell", @@ -3880,18 +3907,9 @@ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" [[package]] name = "fastrand" -version = "1.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" -dependencies = [ - "instant", -] - -[[package]] -name = "fastrand" -version = "2.1.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" [[package]] name = "ff" @@ -3915,20 +3933,20 @@ dependencies = [ [[package]] name = "fiat-crypto" -version = "0.2.6" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1676f435fc1dadde4d03e43f5d62b259e1ce5f40bd4ffb21db2b42ebe59c1382" +checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" [[package]] name = "filetime" -version = "0.2.21" +version = "0.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153" +checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" dependencies = [ "cfg-if 1.0.0", "libc", - "redox_syscall 0.2.16", - "windows-sys 0.48.0", + "libredox", + "windows-sys 0.59.0", ] [[package]] @@ -3963,15 +3981,15 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flagset" -version = "0.4.3" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cda653ca797810c02f7ca4b804b40b8b95ae046eb989d356bce17919a8c25499" +checksum = "b3ea1ec5f8307826a5b71094dd91fc04d4ae75d5709b20ad351c7fb4815c86ec" [[package]] name = "flate2" -version = "1.0.31" +version = "1.0.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920" +checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c" dependencies = [ "crc32fast", "miniz_oxide", @@ -3979,9 +3997,9 @@ dependencies = [ [[package]] name = "float-cmp" -version = "0.9.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" +checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8" dependencies = [ "num-traits", ] @@ -4014,20 +4032,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9" dependencies = [ "nonempty", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] name = "fqdn" -version = "0.3.11" +version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08b1eaa7dfddeab6036292995620bf0435712e619db6d7690605897e76975eb0" +checksum = "eb540cf7bc4fe6df9d8f7f0c974cfd0dce8ed4e9e8884e73433b503ee78b4e7d" [[package]] name = "fqdn" -version = "0.4.1" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5eeee501d87b436020fcd3065cc981b5e4d22f2066735268b36b9d513d23e553" +checksum = "8f66e93156d144bd3a9a970033d04c6fbfb4b641275d8eaa3ff83f5b9c232496" [[package]] name = "fragile" @@ -4113,17 +4131,15 @@ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" [[package]] name = "futures-lite" -version = "2.0.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c1155db57329dca6d018b61e76b1488ce9a2e5e44028cac420a5898f4fcef63" +checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" dependencies = [ - "fastrand 2.1.0", + "fastrand", "futures-core", "futures-io", - "memchr", "parking", "pin-project-lite", - "waker-fn", ] [[package]] @@ -4134,7 +4150,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -4144,7 +4160,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8f2f12607f92c69b12ed746fabf9ca4f5c482cba46679c1a75b874ed7c26adb" dependencies = [ "futures-io", - "rustls 0.23.18", + "rustls 0.23.21", "rustls-pki-types", ] @@ -4162,9 +4178,9 @@ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" [[package]] name = "futures-timer" -version = "3.0.2" +version = "3.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" +checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" [[package]] name = "futures-util" @@ -4199,6 +4215,19 @@ version = "0.3.55" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" +[[package]] +name = "generator" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc6bd114ceda131d3b1d665eba35788690ad37f5916457286b32ab6fd3c438dd" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "log", + "rustversion", + "windows", +] + [[package]] name = "generic-array" version = "0.14.7" @@ -4238,18 +4267,20 @@ version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" dependencies = [ - "unicode-width", + "unicode-width 0.1.14", ] [[package]] name = "getrandom" -version = "0.2.10" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" +checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" dependencies = [ "cfg-if 1.0.0", + "js-sys", "libc", "wasi", + "wasm-bindgen", ] [[package]] @@ -4263,12 +4294,6 @@ dependencies = [ "stable_deref_trait", ] -[[package]] -name = "gimli" -version = "0.27.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" - [[package]] name = "gimli" version = "0.31.1" @@ -4276,32 +4301,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" dependencies = [ "fallible-iterator 0.3.0", - "indexmap 2.2.6", + "indexmap 2.7.0", "stable_deref_trait", ] [[package]] name = "glob" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" +checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" [[package]] name = "governor" -version = "0.6.0" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "821239e5672ff23e2a7060901fa622950bbd80b649cdaadd78d1c1767ed14eb4" +checksum = "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b" dependencies = [ "cfg-if 1.0.0", - "dashmap 5.5.0", + "dashmap 5.5.3", "futures", "futures-timer", "no-std-compat", "nonzero_ext", - "parking_lot 0.12.1", - "quanta 0.11.1", + "parking_lot 0.12.3", + "portable-atomic", + "quanta", "rand 0.8.5", "smallvec", + "spinning_top", ] [[package]] @@ -4327,7 +4354,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.12", - "indexmap 2.2.6", + "indexmap 2.7.0", "slab", "tokio", "tokio-util", @@ -4336,17 +4363,17 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.4" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "816ec7294445779408f36fe57bc5b7fc1cf59664059096c65f905c1c61f58069" +checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e" dependencies = [ + "atomic-waker", "bytes", "fnv", "futures-core", "futures-sink", - "futures-util", "http 1.2.0", - "indexmap 2.2.6", + "indexmap 2.7.0", "slab", "tokio", "tokio-util", @@ -4355,9 +4382,19 @@ dependencies = [ [[package]] name = "half" -version = "1.8.2" +version = "1.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b43ede17f21864e81be2fa654110bf1e793774238d86ef8555c37e6519c0403" + +[[package]] +name = "half" +version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" +checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" +dependencies = [ + "cfg-if 1.0.0", + "crunchy", +] [[package]] name = "hashbrown" @@ -4391,18 +4428,18 @@ dependencies = [ [[package]] name = "hashlink" -version = "0.8.3" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "312f66718a2d7789ffef4f4b7b213138ed9f1eb3aa1d0d82fc99f88fb3ffd26f" +checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" dependencies = [ "hashbrown 0.14.5", ] [[package]] name = "hdrhistogram" -version = "7.5.2" +version = "7.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8" +checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d" dependencies = [ "byteorder", "num-traits", @@ -4410,12 +4447,11 @@ dependencies = [ [[package]] name = "headers" -version = "0.3.8" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" +checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" dependencies = [ - "base64 0.13.1", - "bitflags 1.3.2", + "base64 0.21.7", "bytes", "headers-core 0.2.0", "http 0.2.12", @@ -4430,7 +4466,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "322106e6bd0cba2d5ead589ddb8150a13d7c4217cf80d7c4f682ca994ccc6aa9" dependencies = [ - "base64 0.21.6", + "base64 0.21.7", "bytes", "headers-core 0.3.0", "http 1.2.0", @@ -4514,7 +4550,7 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5313b072ce3c597065a808dbf612c4c8e8590bdbf8b579508bf7a762c5eae6cd" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", ] [[package]] @@ -4537,41 +4573,41 @@ checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df" [[package]] name = "hickory-proto" -version = "0.24.1" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07698b8420e2f0d6447a436ba999ec85d8fbf2a398bbd737b82cac4a2e96e512" +checksum = "447afdcdb8afb9d0a852af6dc65d9b285ce720ed7a59e42a8bf2e931c67bc1b5" dependencies = [ "async-trait", "bytes", "cfg-if 1.0.0", "data-encoding", - "enum-as-inner 0.6.0", + "enum-as-inner 0.6.1", "futures-channel", "futures-io", "futures-util", "h2 0.3.26", "http 0.2.12", - "idna 0.4.0", + "idna 1.0.3", "ipnet", "once_cell", "rand 0.8.5", "ring 0.16.20", "rustls 0.21.12", - "rustls-pemfile 1.0.3", - "thiserror 1.0.68", + "rustls-pemfile 1.0.4", + "thiserror 1.0.69", "tinyvec", "tokio", "tokio-rustls 0.24.1", "tracing", "url", - "webpki-roots 0.25.2", + "webpki-roots 0.25.4", ] [[package]] name = "hickory-resolver" -version = "0.24.1" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28757f23aa75c98f254cf0405e6d8c25b831b32921b050a66692427679b1f243" +checksum = "0a2e2aba9c389ce5267d31cf1e4dace82390ae276b0b364ea55630b1fa1b44b4" dependencies = [ "cfg-if 1.0.0", "futures-util", @@ -4579,16 +4615,16 @@ dependencies = [ "ipconfig", "lru-cache", "once_cell", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "rand 0.8.5", "resolv-conf", "rustls 0.21.12", "smallvec", - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", "tokio-rustls 0.24.1", "tracing", - "webpki-roots 0.25.2", + "webpki-roots 0.25.4", ] [[package]] @@ -4611,11 +4647,11 @@ dependencies = [ [[package]] name = "home" -version = "0.5.9" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" +checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -4701,15 +4737,15 @@ dependencies = [ [[package]] name = "httparse" -version = "1.8.0" +version = "1.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" +checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" [[package]] name = "httpdate" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] name = "humansize" @@ -4738,9 +4774,9 @@ dependencies = [ [[package]] name = "hyper" -version = "0.14.27" +version = "0.14.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" +checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" dependencies = [ "bytes", "futures-channel", @@ -4753,7 +4789,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", - "socket2 0.4.9", + "socket2 0.5.8", "tokio", "tower-service", "tracing", @@ -4762,14 +4798,14 @@ dependencies = [ [[package]] name = "hyper" -version = "1.5.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97818827ef4f364230e16705d4706e2897df2bb60617d6ca15d598025a3c481f" +checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0" dependencies = [ "bytes", "futures-channel", "futures-util", - "h2 0.4.4", + "h2 0.4.7", "http 1.2.0", "http-body 1.0.1", "httparse", @@ -4791,13 +4827,13 @@ dependencies = [ "futures-util", "headers 0.4.0", "http 1.2.0", - "hyper 1.5.1", - "hyper-rustls 0.27.3", + "hyper 1.5.2", + "hyper-rustls 0.27.5", "hyper-util", "pin-project-lite", - "rustls-native-certs 0.7.0", + "rustls-native-certs 0.7.3", "tokio", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.1", "tower-service", ] @@ -4809,7 +4845,7 @@ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", "http 0.2.12", - "hyper 0.14.27", + "hyper 0.14.32", "log", "rustls 0.21.12", "rustls-native-certs 0.6.3", @@ -4819,22 +4855,22 @@ dependencies = [ [[package]] name = "hyper-rustls" -version = "0.27.3" +version = "0.27.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" +checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2" dependencies = [ "futures-util", "http 1.2.0", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-util", "log", - "rustls 0.23.18", - "rustls-native-certs 0.8.0", + "rustls 0.23.21", + "rustls-native-certs 0.8.1", "rustls-pki-types", "tokio", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.1", "tower-service", - "webpki-roots 0.26.1", + "webpki-roots 0.26.7", ] [[package]] @@ -4845,20 +4881,20 @@ checksum = "51c227614c208f7e7c2e040526912604a1a957fe467c9c2f5b06c5d032337dab" dependencies = [ "async-socks5", "http 1.2.0", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-util", - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", "tower-service", ] [[package]] name = "hyper-timeout" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3203a961e5c83b6f5498933e78b6b263e208c197b63e9c6c53cc82ffd3f63793" +checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" dependencies = [ - "hyper 1.5.1", + "hyper 1.5.2", "hyper-util", "pin-project-lite", "tokio", @@ -4876,9 +4912,9 @@ dependencies = [ "futures-util", "http 1.2.0", "http-body 1.0.1", - "hyper 1.5.1", + "hyper 1.5.2", "pin-project-lite", - "socket2 0.5.7", + "socket2 0.5.8", "tokio", "tower-service", "tracing", @@ -4886,16 +4922,16 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.59" +version = "0.1.61" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539" +checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" dependencies = [ "android_system_properties", "core-foundation-sys", "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "windows-core", + "windows-core 0.52.0", ] [[package]] @@ -4935,12 +4971,12 @@ dependencies = [ "k256", "leb128", "p256", - "pem 3.0.3", + "pem 3.0.4", "pkcs8", "rand 0.8.5", "rangemap", - "reqwest 0.12.9", - "ring 0.17.7", + "reqwest 0.12.12", + "ring 0.17.8", "sec1", "serde", "serde_bytes", @@ -4949,7 +4985,7 @@ dependencies = [ "sha2 0.10.8", "simple_asn1", "stop-token", - "thiserror 2.0.3", + "thiserror 2.0.11", "time", "tokio", "tower-service", @@ -4970,11 +5006,11 @@ dependencies = [ "base64 0.22.1", "bytes", "chacha20poly1305", - "clap 4.5.20", - "clap_derive 4.5.18", + "clap 4.5.26", + "clap_derive 4.5.24", "cloudflare 0.12.0 (git+https://github.com/cloudflare/cloudflare-rs.git?rev=f14720e42184ee176a97676e85ef2d2d85bc3aae)", "derive-new", - "fqdn 0.4.1", + "fqdn 0.4.4", "futures", "futures-util", "hickory-proto", @@ -4983,18 +5019,18 @@ dependencies = [ "http-body 1.0.1", "http-body-util", "humantime", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-util", "instant-acme", "moka", "parse-size", "prometheus", - "prost 0.13.3", - "prost-types 0.13.3", + "prost 0.13.4", + "prost-types 0.13.4", "rand 0.8.5", "rcgen", - "reqwest 0.12.9", - "rustls 0.23.18", + "reqwest 0.12.12", + "rustls 0.23.21", "rustls-acme", "rustls-pemfile 2.2.0", "rustls-platform-verifier", @@ -5002,15 +5038,15 @@ dependencies = [ "serde", "serde_json", "sha1", - "strum 0.26.3", - "strum_macros 0.26.4", + "strum", + "strum_macros", "systemstat", - "thiserror 2.0.3", + "thiserror 2.0.11", "tokio", "tokio-io-timeout", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.1", "tokio-util", - "tower 0.5.1", + "tower 0.5.2", "tower-service", "tracing", "url", @@ -5048,7 +5084,7 @@ source = "git+https://github.com/dfinity/ic-canister-sig-creation?rev=7f9e931954 dependencies = [ "candid", "hex", - "ic-cdk 0.17.0", + "ic-cdk 0.17.1", "ic-certification 3.0.2", "ic-representation-independent-hash", "lazy_static", @@ -5056,7 +5092,7 @@ dependencies = [ "serde_bytes", "serde_cbor", "sha2 0.10.8", - "thiserror 2.0.3", + "thiserror 2.0.11", ] [[package]] @@ -5069,7 +5105,7 @@ dependencies = [ "ic-certification 3.0.2", "leb128", "nom", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -5100,12 +5136,12 @@ dependencies = [ [[package]] name = "ic-cdk" -version = "0.17.0" +version = "0.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2abdf9341da9f9f6b451a40609cb69645a05a8e9eb7784c16209f16f2c0f76f" +checksum = "122efbcb0af5280d408a75a57b7dc6e9d92893bf6ed9cc98fe4dcff51f18b67c" dependencies = [ "candid", - "ic-cdk-macros 0.17.0", + "ic-cdk-macros 0.17.1", "ic0 0.23.0", "serde", "serde_bytes", @@ -5149,22 +5185,22 @@ dependencies = [ "proc-macro2", "quote", "serde", - "serde_tokenstream 0.2.1", - "syn 2.0.87", + "serde_tokenstream 0.2.2", + "syn 2.0.96", ] [[package]] name = "ic-cdk-macros" -version = "0.17.0" +version = "0.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8df41980e95dead28735ab0f748c75477b0c5eab37a09a5641c78ec406a1db0" +checksum = "c792bf0d1621c893ccf2bcdeac4ee70121103a03030a1827031a6b3c60488944" dependencies = [ "candid", "proc-macro2", "quote", "serde", - "serde_tokenstream 0.2.1", - "syn 2.0.87", + "serde_tokenstream 0.2.2", + "syn 2.0.96", ] [[package]] @@ -5174,7 +5210,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb8fd812a9e26f6aa00594546f8fbf4d4853f39c3ba794c8ff11ecf86fd3c9e4" dependencies = [ "futures", - "ic-cdk 0.17.0", + "ic-cdk 0.17.1", "ic0 0.23.0", "serde", "serde_bytes", @@ -5195,9 +5231,9 @@ dependencies = [ "leb128", "miracl_core_bls12381", "nom", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "sha2 0.10.8", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -5248,7 +5284,7 @@ dependencies = [ "ic-representation-independent-hash", "serde", "serde_cbor", - "thiserror 1.0.68", + "thiserror 1.0.69", "urlencoding", ] @@ -5268,7 +5304,7 @@ dependencies = [ "ic-http-certification", "ic-response-verification", "ic-utils", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -5307,7 +5343,7 @@ dependencies = [ "log", "nom", "sha2 0.10.8", - "thiserror 1.0.68", + "thiserror 1.0.69", "urlencoding", ] @@ -5322,9 +5358,9 @@ dependencies = [ [[package]] name = "ic-stable-structures" -version = "0.6.5" +version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03f3044466a69802de74e710dc0300b706a05696a0531c942ca856751a13b0db" +checksum = "b492c5a16455ae78623eaa12ead96dda6c69a83c535b1b00789f19b381c8a24c" dependencies = [ "ic_principal", ] @@ -5355,7 +5391,7 @@ dependencies = [ "serde_bytes", "serde_repr", "sha2 0.10.8", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -5373,14 +5409,14 @@ dependencies = [ "serde_cbor", "serde_repr", "sha2 0.10.8", - "thiserror 2.0.3", + "thiserror 2.0.11", ] [[package]] name = "ic-utils" -version = "0.39.0" +version = "0.39.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb1da4a68c45146018b8496c157ad94126b9c202ab4400c6c0a9030c1ef0f0ba" +checksum = "e1fb9c35ef4976a71d37f3ebf73ee43bb52b360be60d91d3a77f74fbc875dda4" dependencies = [ "async-trait", "candid", @@ -5391,9 +5427,9 @@ dependencies = [ "serde", "serde_bytes", "sha2 0.10.8", - "strum 0.26.3", - "strum_macros 0.26.4", - "thiserror 1.0.68", + "strum", + "strum_macros", + "thiserror 2.0.11", "time", "tokio", ] @@ -5427,18 +5463,18 @@ dependencies = [ [[package]] name = "ic-wasm" -version = "0.8.4" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45bc33855672981ae4a2f4e77c1a77d1bdc0756fb1b36ad0dbe47df77a955e2d" +checksum = "19fabaeecfe37f24b433c62489242fc54503d98d4cc8d0f9ef7544dfdfc0ddcb" dependencies = [ "anyhow", "candid", - "clap 4.5.20", + "clap 4.5.26", "libflate", "rustc-demangle", "serde", "serde_json", - "thiserror 1.0.68", + "thiserror 1.0.69", "walrus", ] @@ -5496,7 +5532,7 @@ dependencies = [ "data-encoding", "serde", "sha2 0.10.8", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -5508,7 +5544,7 @@ dependencies = [ "async-trait", "candid", "serde", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -5637,7 +5673,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -5663,26 +5699,6 @@ dependencies = [ "unicode-normalization", ] -[[package]] -name = "idna" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" -dependencies = [ - "unicode-bidi", - "unicode-normalization", -] - -[[package]] -name = "idna" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" -dependencies = [ - "unicode-bidi", - "unicode-normalization", -] - [[package]] name = "idna" version = "1.0.3" @@ -5715,9 +5731,9 @@ dependencies = [ [[package]] name = "impl-more" -version = "0.1.6" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "206ca75c9c03ba3d4ace2460e57b189f39f43de612c2f85836e65c929701bb2d" +checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" [[package]] name = "impl-rlp" @@ -5739,13 +5755,13 @@ dependencies = [ [[package]] name = "impl-trait-for-tuples" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11d7a9f6330b71fea57921c9b61c47ee6e84f72d394754eff6163ae67e7395eb" +checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.96", ] [[package]] @@ -5760,33 +5776,33 @@ version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", "hashbrown 0.12.3", "serde", ] [[package]] name = "indexmap" -version = "2.2.6" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" +checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f" dependencies = [ "equivalent", - "hashbrown 0.14.5", + "hashbrown 0.15.2", "serde", ] [[package]] name = "indicatif" -version = "0.17.5" +version = "0.17.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ff8cc23a7393a397ed1d7f56e6365cba772aba9f9912ab968b03043c395d057" +checksum = "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281" dependencies = [ - "console 0.15.7", - "instant", + "console 0.15.10", "number_prefix", "portable-atomic", - "unicode-width", + "unicode-width 0.2.0", + "web-time", ] [[package]] @@ -5797,12 +5813,12 @@ checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" [[package]] name = "inferno" -version = "0.11.19" +version = "0.11.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "321f0f839cd44a4686e9504b0a62b4d69a50b62072144c71c68f5873c167b8d9" +checksum = "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88" dependencies = [ "ahash 0.8.11", - "indexmap 2.2.6", + "indexmap 2.7.0", "is-terminal", "itoa", "log", @@ -5815,22 +5831,22 @@ dependencies = [ [[package]] name = "inferno" -version = "0.12.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75a5d75fee4d36809e6b021e4b96b686e763d365ffdb03af2bd00786353f84fe" +checksum = "692eda1cc790750b9f5a5e3921ef9c117fd5498b97cfacbc910693e5b29002dc" dependencies = [ "ahash 0.8.11", - "clap 4.5.20", + "clap 4.5.26", "crossbeam-channel", "crossbeam-utils", "dashmap 6.1.0", - "env_logger 0.11.2", - "indexmap 2.2.6", + "env_logger 0.11.6", + "indexmap 2.7.0", "itoa", "log", "num-format", "once_cell", - "quick-xml 0.37.1", + "quick-xml 0.37.2", "rgb", "str_stack", ] @@ -5846,22 +5862,21 @@ dependencies = [ [[package]] name = "insta" -version = "1.31.0" +version = "1.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0770b0a3d4c70567f0d58331f3088b0e4c4f56c9b8d764efe654b4a5d46de3a" +checksum = "6513e4067e16e69ed1db5ab56048ed65db32d10ba5fc1217f5393f8f17d8b5a5" dependencies = [ - "console 0.15.7", - "lazy_static", + "console 0.15.10", "linked-hash-map", + "once_cell", "similar", - "yaml-rust", ] [[package]] name = "instant" -version = "0.1.12" +version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" +checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" dependencies = [ "cfg-if 1.0.0", ] @@ -5878,14 +5893,14 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.1", - "hyper-rustls 0.27.3", + "hyper 1.5.2", + "hyper-rustls 0.27.5", "hyper-util", - "ring 0.17.7", + "ring 0.17.8", "rustls-pki-types", "serde", "serde_json", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -5903,7 +5918,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" dependencies = [ - "socket2 0.5.7", + "socket2 0.5.8", "widestring", "windows-sys 0.48.0", "winreg", @@ -5929,13 +5944,13 @@ dependencies = [ [[package]] name = "is-terminal" -version = "0.4.9" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" +checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" dependencies = [ - "hermit-abi 0.3.9", - "rustix", - "windows-sys 0.48.0", + "hermit-abi 0.4.0", + "libc", + "windows-sys 0.52.0", ] [[package]] @@ -5951,7 +5966,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ea1dc4bf0fb4904ba83ffdb98af3d9c325274e92e6e295e4151e86c96363e04" dependencies = [ "serde", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -5974,18 +5989,27 @@ dependencies = [ [[package]] name = "itertools" -version = "0.12.0" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +dependencies = [ + "either", +] + +[[package]] +name = "itertools" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" dependencies = [ "either", ] [[package]] name = "itoa" -version = "1.0.9" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" +checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" [[package]] name = "jni" @@ -5997,7 +6021,7 @@ dependencies = [ "combine", "jni-sys", "log", - "thiserror 1.0.68", + "thiserror 1.0.69", "walkdir", ] @@ -6009,19 +6033,20 @@ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" [[package]] name = "jobserver" -version = "0.1.26" +version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" +checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" dependencies = [ "libc", ] [[package]] name = "js-sys" -version = "0.3.64" +version = "0.3.77" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" +checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" dependencies = [ + "once_cell", "wasm-bindgen", ] @@ -6059,7 +6084,7 @@ dependencies = [ "pest_derive", "regex", "serde_json", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -6112,9 +6137,9 @@ dependencies = [ [[package]] name = "keccak" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940" +checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" dependencies = [ "cpufeatures", ] @@ -6145,22 +6170,22 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-http-proxy", - "hyper-rustls 0.27.3", + "hyper-rustls 0.27.5", "hyper-timeout", "hyper-util", "jsonpath-rust", "k8s-openapi", "kube-core", - "pem 3.0.3", - "rustls 0.23.18", + "pem 3.0.4", + "rustls 0.23.21", "rustls-pemfile 2.2.0", "secrecy", "serde", "serde_json", "serde_yaml 0.9.34+deprecated", - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", "tokio-util", "tower 0.4.13", @@ -6180,7 +6205,7 @@ dependencies = [ "k8s-openapi", "serde", "serde_json", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -6190,7 +6215,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0a1cbf952127589f2851ab2046af368fd20645491bb4b376f04b7f94d7a9837b" dependencies = [ "ascii-canvas", - "bit-set", + "bit-set 0.5.3", "diff", "ena", "is-terminal", @@ -6207,25 +6232,24 @@ dependencies = [ [[package]] name = "lalrpop" -version = "0.20.0" +version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da4081d44f4611b66c6dd725e6de3169f9f63905421e8626fcb86b6a898998b8" +checksum = "55cb077ad656299f160924eb2912aa147d7339ea7d69e1b5517326fdcec3c1ca" dependencies = [ "ascii-canvas", - "bit-set", - "diff", + "bit-set 0.5.3", "ena", - "is-terminal", - "itertools 0.10.5", - "lalrpop-util 0.20.0", + "itertools 0.11.0", + "lalrpop-util 0.20.2", "petgraph", "pico-args", "regex", - "regex-syntax 0.7.4", + "regex-syntax 0.8.5", "string_cache", "term 0.7.0", "tiny-keccak", "unicode-xid", + "walkdir", ] [[package]] @@ -6239,11 +6263,11 @@ dependencies = [ [[package]] name = "lalrpop-util" -version = "0.20.0" +version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f35c735096c0293d313e8f2a641627472b83d01b937177fe76e5e2708d31e0d" +checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553" dependencies = [ - "regex", + "regex-automata 0.4.9", ] [[package]] @@ -6254,11 +6278,11 @@ checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" [[package]] name = "lazy_static" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" dependencies = [ - "spin 0.5.2", + "spin 0.9.8", ] [[package]] @@ -6339,9 +6363,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.158" +version = "0.2.169" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" +checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" [[package]] name = "libflate" @@ -6369,30 +6393,29 @@ dependencies = [ [[package]] name = "libfuzzer-sys" -version = "0.4.7" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7" +checksum = "9b9569d2f74e257076d8c6bfa73fb505b46b851e51ddaecc825944aa3bed17fa" dependencies = [ "arbitrary", "cc", - "once_cell", ] [[package]] name = "libloading" -version = "0.7.4" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" +checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" dependencies = [ "cfg-if 1.0.0", - "winapi 0.3.9", + "windows-targets 0.52.6", ] [[package]] name = "libm" -version = "0.2.7" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" +checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa" [[package]] name = "libnss" @@ -6405,13 +6428,24 @@ dependencies = [ "paste", ] +[[package]] +name = "libredox" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" +dependencies = [ + "bitflags 2.8.0", + "libc", + "redox_syscall 0.5.8", +] + [[package]] name = "librocksdb-sys" version = "0.16.0+8.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ce3d60bc059831dc1c83903fb45c103f75db65c5a7bf22272764d9cc683e348c" dependencies = [ - "bindgen 0.69.4", + "bindgen 0.69.5", "bzip2-sys", "cc", "glob", @@ -6446,9 +6480,9 @@ dependencies = [ [[package]] name = "libusb1-sys" -version = "0.6.4" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9d0e2afce4245f2c9a418511e5af8718bcaf2fa408aefb259504d1a9cb25f27" +checksum = "da050ade7ac4ff1ba5379af847a10a10a8e284181e060105bf8d86960ce9ce0f" dependencies = [ "cc", "libc", @@ -6458,9 +6492,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.9" +version = "1.1.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db" +checksum = "df9b68e50e6e0b26f672573834882eb57759f6db9b3be2ea3c35c91188bb4eaa" dependencies = [ "cc", "libc", @@ -6476,15 +6510,15 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linux-raw-sys" -version = "0.4.13" +version = "0.4.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" +checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" [[package]] name = "litemap" -version = "0.7.3" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" +checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" [[package]] name = "little-loadshedder" @@ -6519,49 +6553,48 @@ dependencies = [ [[package]] name = "local-channel" -version = "0.1.3" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c" +checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" dependencies = [ "futures-core", "futures-sink", - "futures-util", "local-waker", ] [[package]] name = "local-ip-address" -version = "0.5.6" +version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66357e687a569abca487dc399a9c9ac19beb3f13991ed49f00c144e02cbd42ab" +checksum = "612ed4ea9ce5acfb5d26339302528a5e1e59dfed95e9e11af3c083236ff1d15d" dependencies = [ "libc", "neli", - "thiserror 1.0.68", + "thiserror 1.0.69", "windows-sys 0.48.0", ] [[package]] name = "local-waker" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1" +checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" [[package]] name = "lock_api" -version = "0.4.10" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" +checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", "scopeguard", ] [[package]] name = "log" -version = "0.4.20" +version = "0.4.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" +checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f" [[package]] name = "logos" @@ -6592,7 +6625,7 @@ dependencies = [ "proc-macro2", "quote", "regex-syntax 0.6.29", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -6618,6 +6651,19 @@ dependencies = [ "logos-codegen", ] +[[package]] +name = "loom" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" +dependencies = [ + "cfg-if 1.0.0", + "generator", + "scoped-tls", + "tracing", + "tracing-subscriber", +] + [[package]] name = "lru" version = "0.7.8" @@ -6708,9 +6754,9 @@ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" [[package]] name = "matchit" -version = "0.7.0" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" +checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" [[package]] name = "maxminddb" @@ -6752,9 +6798,9 @@ dependencies = [ [[package]] name = "memmap2" -version = "0.5.10" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" +checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" dependencies = [ "libc", ] @@ -6765,16 +6811,16 @@ version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", ] [[package]] name = "memoffset" -version = "0.9.0" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" +checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", ] [[package]] @@ -6802,14 +6848,14 @@ source = "git+https://github.com/dfinity/metrics-proxy.git?rev=b6933ed79ac07baee dependencies = [ "axum", "axum-otel-metrics", - "clap 4.5.20", + "clap 4.5.26", "duration-string", "exitcode", "futures-util", "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-rustls 0.24.2", "hyper-util", "itertools 0.11.0", @@ -6824,7 +6870,7 @@ dependencies = [ "regex", "reqwest 0.11.27", "rustls 0.21.12", - "rustls-pemfile 1.0.3", + "rustls-pemfile 1.0.4", "serde", "serde_yaml 0.8.26", "simple_logger", @@ -6843,9 +6889,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] name = "mime_guess" -version = "2.0.4" +version = "2.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" +checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" dependencies = [ "mime", "unicase", @@ -6879,18 +6925,18 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.7.1" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" +checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924" dependencies = [ - "adler", + "adler2", ] [[package]] name = "mio" -version = "0.8.10" +version = "0.8.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" +checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" dependencies = [ "libc", "log", @@ -6900,12 +6946,12 @@ dependencies = [ [[package]] name = "mio" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" +checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" dependencies = [ - "hermit-abi 0.3.9", "libc", + "log", "wasi", "windows-sys 0.52.0", ] @@ -6918,9 +6964,9 @@ checksum = "d07cbe42e2a8dd41df582fb8e00fc24d920b5561cc301fcb6d14e2e0434b500f" [[package]] name = "mockall" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4c28b3fb6d753d28c20e826cd46ee611fda1cf3cde03a443a974043247c065a" +checksum = "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2" dependencies = [ "cfg-if 1.0.0", "downcast", @@ -6932,26 +6978,31 @@ dependencies = [ [[package]] name = "mockall_derive" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "341014e7f530314e9a1fdbc7400b244efea7122662c96bfa248c31da5bfb2020" +checksum = "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898" dependencies = [ "cfg-if 1.0.0", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "mockito" -version = "1.2.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8d3038e23466858569c2d30a537f691fa0d53b51626630ae08262943e3bbb8b" +checksum = "652cd6d169a36eaf9d1e6bce1a221130439a966d7f27858af66a33a66e9c4ee2" dependencies = [ "assert-json-diff", + "bytes", "colored", - "futures", - "hyper 0.14.27", + "futures-util", + "http 1.2.0", + "http-body 1.0.1", + "http-body-util", + "hyper 1.5.2", + "hyper-util", "log", "rand 0.8.5", "regex", @@ -6963,25 +7014,23 @@ dependencies = [ [[package]] name = "moka" -version = "0.12.8" +version = "0.12.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32cf62eb4dd975d2dde76432fb1075c49e3ee2331cf36f1f8fd4b66550d32b6f" +checksum = "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" dependencies = [ "async-lock", - "async-trait", "crossbeam-channel", "crossbeam-epoch", "crossbeam-utils", - "event-listener 5.3.1", + "event-listener 5.4.0", "futures-util", - "once_cell", - "parking_lot 0.12.1", - "quanta 0.12.3", + "loom", + "parking_lot 0.12.3", + "portable-atomic", "rustc_version", "smallvec", "tagptr", - "thiserror 1.0.68", - "triomphe", + "thiserror 1.0.69", "uuid", ] @@ -7028,15 +7077,15 @@ dependencies = [ [[package]] name = "multimap" -version = "0.8.3" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" +checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" [[package]] name = "neli" -version = "0.6.4" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1100229e06604150b3becd61a4965d5c70f3be1759544ea7274166f4be41ef43" +checksum = "93062a0dce6da2517ea35f301dfc88184ce18d3601ec786a727a87bf535deca9" dependencies = [ "byteorder", "libc", @@ -7046,9 +7095,9 @@ dependencies = [ [[package]] name = "neli-proc-macros" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c168194d373b1e134786274020dae7fc5513d565ea2ebb9bc9ff17ffb69106d4" +checksum = "0c8034b7fbb6f9455b2a96c19e6edf8dc9fc34c70449938d8ee3b4df363f61fe" dependencies = [ "either", "proc-macro2", @@ -7059,9 +7108,9 @@ dependencies = [ [[package]] name = "new_debug_unreachable" -version = "1.0.4" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" +checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" [[package]] name = "nftables" @@ -7072,9 +7121,9 @@ dependencies = [ "serde", "serde_json", "serde_path_to_error", - "strum 0.26.3", - "strum_macros 0.26.4", - "thiserror 1.0.68", + "strum", + "strum_macros", + "thiserror 1.0.69", ] [[package]] @@ -7106,10 +7155,10 @@ version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "cfg-if 1.0.0", "libc", - "memoffset 0.9.0", + "memoffset 0.9.1", ] [[package]] @@ -7118,7 +7167,7 @@ version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "cfg-if 1.0.0", "cfg_aliases", "libc", @@ -7174,7 +7223,7 @@ version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", "num-integer", "num-traits", ] @@ -7220,7 +7269,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", "itoa", ] @@ -7239,7 +7288,7 @@ version = "0.1.45" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", "num-integer", "num-traits", ] @@ -7250,7 +7299,7 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", "num-bigint 0.2.6", "num-integer", "num-traits", @@ -7262,7 +7311,7 @@ version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", "libm", ] @@ -7278,30 +7327,30 @@ dependencies = [ [[package]] name = "num_enum" -version = "0.6.1" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a015b430d3c108a207fd776d2e2196aaf8b1cf8cf93253e3a097ff3085076a1" +checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" dependencies = [ "num_enum_derive", ] [[package]] name = "num_enum_derive" -version = "0.6.1" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96667db765a921f7b295ffee8b60472b686a51d4f21c2ee4ffdb94c7013b65a6" +checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" dependencies = [ - "proc-macro-crate 1.3.1", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "num_threads" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" +checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" dependencies = [ "libc", ] @@ -7312,15 +7361,6 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" -[[package]] -name = "object" -version = "0.31.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" -dependencies = [ - "memchr", -] - [[package]] name = "object" version = "0.36.7" @@ -7329,36 +7369,36 @@ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" dependencies = [ "crc32fast", "hashbrown 0.15.2", - "indexmap 2.2.6", + "indexmap 2.7.0", "memchr", ] [[package]] name = "oid-registry" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d" +checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9" dependencies = [ "asn1-rs", ] [[package]] name = "once_cell" -version = "1.19.0" +version = "1.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" +checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" [[package]] name = "oorandom" -version = "11.1.3" +version = "11.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" +checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9" [[package]] name = "opaque-debug" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" +checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" [[package]] name = "open-fastrlp" @@ -7366,7 +7406,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "786393f80485445794f6043fd3138854dd109cc6c4bd1a6383db304c9ce9b9ce" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", "auto_impl", "bytes", "ethereum-types", @@ -7395,7 +7435,7 @@ dependencies = [ "byteorder", "md-5", "sha2 0.9.9", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -7406,9 +7446,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.102" +version = "0.9.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" +checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" dependencies = [ "cc", "libc", @@ -7444,26 +7484,26 @@ checksum = "1e32339a5dc40459130b3bd269e9892439f55b33e772d2a9d402a789baaf4e8a" dependencies = [ "futures-core", "futures-sink", - "indexmap 2.2.6", + "indexmap 2.7.0", "js-sys", "once_cell", "pin-project-lite", - "thiserror 1.0.68", + "thiserror 1.0.69", "urlencoding", ] [[package]] name = "opentelemetry" -version = "0.27.0" +version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f3cebff57f7dbd1255b44d8bddc2cebeb0ea677dbaa2e25a3070a91b318f660" +checksum = "ab70038c28ed37b97d8ed414b6429d343a8bbf44c9f79ec854f3a643029ba6d7" dependencies = [ "futures-core", "futures-sink", "js-sys", - "once_cell", "pin-project-lite", - "thiserror 1.0.68", + "thiserror 1.0.69", + "tracing", ] [[package]] @@ -7475,11 +7515,11 @@ dependencies = [ "async-trait", "futures-core", "http 1.2.0", - "opentelemetry 0.27.0", + "opentelemetry 0.27.1", "opentelemetry-proto", "opentelemetry_sdk 0.27.1", - "prost 0.13.3", - "thiserror 1.0.68", + "prost 0.13.4", + "thiserror 1.0.69", "tokio", "tonic", "tracing", @@ -7517,9 +7557,9 @@ version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6e05acbfada5ec79023c85368af14abd0b307c015e9064d249b2a950ef459a6" dependencies = [ - "opentelemetry 0.27.0", + "opentelemetry 0.27.1", "opentelemetry_sdk 0.27.1", - "prost 0.13.3", + "prost 0.13.4", "tonic", ] @@ -7544,7 +7584,7 @@ dependencies = [ "js-sys", "once_cell", "pin-project-lite", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -7559,7 +7599,7 @@ dependencies = [ "js-sys", "once_cell", "pin-project-lite", - "thiserror 1.0.68", + "thiserror 1.0.69", "urlencoding", ] @@ -7578,7 +7618,7 @@ dependencies = [ "opentelemetry_api 0.18.0", "percent-encoding", "rand 0.8.5", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -7598,7 +7638,7 @@ dependencies = [ "percent-encoding", "rand 0.8.5", "regex", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -7615,10 +7655,10 @@ dependencies = [ "glob", "once_cell", "opentelemetry 0.21.0", - "ordered-float 4.2.0", + "ordered-float 4.6.0", "percent-encoding", "rand 0.8.5", - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", "tokio-stream", ] @@ -7634,11 +7674,11 @@ dependencies = [ "futures-executor", "futures-util", "glob", - "opentelemetry 0.27.0", + "opentelemetry 0.27.1", "percent-encoding", "rand 0.8.5", "serde_json", - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", "tokio-stream", "tracing", @@ -7646,9 +7686,9 @@ dependencies = [ [[package]] name = "ordered-float" -version = "2.10.0" +version = "2.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87" +checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" dependencies = [ "num-traits", ] @@ -7664,18 +7704,18 @@ dependencies = [ [[package]] name = "ordered-float" -version = "4.2.0" +version = "4.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e" +checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951" dependencies = [ "num-traits", ] [[package]] name = "os_str_bytes" -version = "6.5.1" +version = "6.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d5d9eb14b174ee9aa2ef96dc2b94637a2d4b6e7cb873c7e171f0c20c6cf3eac" +checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1" [[package]] name = "overload" @@ -7706,11 +7746,11 @@ dependencies = [ [[package]] name = "parity-scale-codec" -version = "3.6.3" +version = "3.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "756d439303e94fae44f288ba881ad29670c65b0c4b0e05674ca81061bb65f2c5" +checksum = "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", "bitvec", "byte-slice-cast", "impl-trait-for-tuples", @@ -7720,11 +7760,11 @@ dependencies = [ [[package]] name = "parity-scale-codec-derive" -version = "3.6.3" +version = "3.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d884d78fcf214d70b1e239fcd1c6e5e95aa3be1881918da2e488cc946c7a476" +checksum = "d830939c76d294956402033aee57a6da7b438f2294eb94864c37b0569053a42c" dependencies = [ - "proc-macro-crate 1.3.1", + "proc-macro-crate", "proc-macro2", "quote", "syn 1.0.109", @@ -7732,9 +7772,9 @@ dependencies = [ [[package]] name = "parking" -version = "2.1.0" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" +checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" [[package]] name = "parking_lot" @@ -7749,12 +7789,12 @@ dependencies = [ [[package]] name = "parking_lot" -version = "0.12.1" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" +checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" dependencies = [ "lock_api", - "parking_lot_core 0.9.8", + "parking_lot_core 0.9.10", ] [[package]] @@ -7773,15 +7813,15 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.8" +version = "0.9.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" +checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" dependencies = [ "cfg-if 1.0.0", "libc", - "redox_syscall 0.3.5", + "redox_syscall 0.5.8", "smallvec", - "windows-targets 0.48.1", + "windows-targets 0.52.6", ] [[package]] @@ -7808,9 +7848,9 @@ dependencies = [ [[package]] name = "pcre2" -version = "0.2.6" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c9d53a8ea5fc3d3568d3de4bebc12606fd0eb8234c602576f1f1ee4880488a7" +checksum = "3be55c43ac18044541d58d897e8f4c55157218428953ebd39d86df3ba0286b2b" dependencies = [ "libc", "log", @@ -7819,9 +7859,9 @@ dependencies = [ [[package]] name = "pcre2-sys" -version = "0.2.8" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25b8a7b5253a4465b873a21ee7e8d6ec561a57eed5d319621bec36bea35c86ae" +checksum = "550f5d18fb1b90c20b87e161852c10cde77858c3900c5059b5ad2a1449f11d8a" dependencies = [ "cc", "libc", @@ -7845,11 +7885,11 @@ dependencies = [ [[package]] name = "pem" -version = "3.0.3" +version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310" +checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae" dependencies = [ - "base64 0.21.6", + "base64 0.22.1", "serde", ] @@ -7870,19 +7910,20 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "pest" -version = "2.7.1" +version = "2.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d2d1d55045829d65aad9d389139882ad623b33b904e7c9f1b10c5b8927298e5" +checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc" dependencies = [ - "thiserror 1.0.68", + "memchr", + "thiserror 2.0.11", "ucd-trie", ] [[package]] name = "pest_derive" -version = "2.7.1" +version = "2.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f94bca7e7a599d89dea5dfa309e217e7906c3c007fb9c3299c40b10d6a315d3" +checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e" dependencies = [ "pest", "pest_generator", @@ -7890,22 +7931,22 @@ dependencies = [ [[package]] name = "pest_generator" -version = "2.7.1" +version = "2.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99d490fe7e8556575ff6911e45567ab95e71617f43781e5c05490dc8d75c965c" +checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b" dependencies = [ "pest", "pest_meta", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "pest_meta" -version = "2.7.1" +version = "2.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2674c66ebb4b4d9036012091b537aae5878970d6999f81a265034d85b136b341" +checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea" dependencies = [ "once_cell", "pest", @@ -7914,9 +7955,9 @@ dependencies = [ [[package]] name = "pest_vm" -version = "2.7.1" +version = "2.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c590ba0f5dbc3b72b0b22fe5a11a69a43ff984cce83928dfaa615eb87594d6a" +checksum = "a8151168a80801131f6e0e79d6c84fa337ccd2493c99e59de027354c3e6fca0b" dependencies = [ "pest", "pest_meta", @@ -7924,12 +7965,12 @@ dependencies = [ [[package]] name = "petgraph" -version = "0.6.3" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4" +checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" dependencies = [ "fixedbitset", - "indexmap 1.9.3", + "indexmap 2.7.0", ] [[package]] @@ -7943,12 +7984,12 @@ dependencies = [ [[package]] name = "phf" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" +checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" dependencies = [ "phf_macros", - "phf_shared 0.11.2", + "phf_shared 0.11.3", ] [[package]] @@ -7973,25 +8014,25 @@ dependencies = [ [[package]] name = "phf_generator" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" +checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" dependencies = [ - "phf_shared 0.11.2", + "phf_shared 0.11.3", "rand 0.8.5", ] [[package]] name = "phf_macros" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" +checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" dependencies = [ - "phf_generator 0.11.2", - "phf_shared 0.11.2", + "phf_generator 0.11.3", + "phf_shared 0.11.3", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -8000,16 +8041,16 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" dependencies = [ - "siphasher", + "siphasher 0.3.11", ] [[package]] name = "phf_shared" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" +checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" dependencies = [ - "siphasher", + "siphasher 1.0.1", ] [[package]] @@ -8020,29 +8061,29 @@ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" [[package]] name = "pin-project" -version = "1.1.2" +version = "1.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "030ad2bc4db10a8944cb0d837f158bdfec4d4a4873ab701a95046770d11f8842" +checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.2" +version = "1.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c" +checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "pin-project-lite" -version = "0.2.13" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" +checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" [[package]] name = "pin-utils" @@ -8052,13 +8093,13 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "ping" -version = "0.5.0" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "985c8af0584bf35ecfb95a65b74a457782966e1ab8f2c94c01697a36432a5814" +checksum = "122ee1f5a6843bec84fcbd5c6ba3622115337a6b8965b93a61aad347648f4e8d" dependencies = [ "rand 0.8.5", - "socket2 0.4.9", - "thiserror 1.0.68", + "socket2 0.4.10", + "thiserror 1.0.69", ] [[package]] @@ -8068,7 +8109,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" dependencies = [ "atomic-waker", - "fastrand 2.1.0", + "fastrand", "futures-io", ] @@ -8095,15 +8136,15 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.27" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" +checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" [[package]] name = "plotters" -version = "0.3.5" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" +checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747" dependencies = [ "num-traits", "plotters-backend", @@ -8114,15 +8155,15 @@ dependencies = [ [[package]] name = "plotters-backend" -version = "0.3.5" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" +checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a" [[package]] name = "plotters-svg" -version = "0.3.5" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" +checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670" dependencies = [ "plotters-backend", ] @@ -8138,7 +8179,7 @@ dependencies = [ "hex", "ic-certification 2.6.0", "ic-transport-types 0.37.1", - "reqwest 0.12.9", + "reqwest 0.12.12", "schemars", "serde", "serde_bytes", @@ -8146,9 +8187,9 @@ dependencies = [ "serde_json", "sha2 0.10.8", "slog", - "strum 0.26.3", - "strum_macros 0.26.4", - "thiserror 1.0.68", + "strum", + "strum_macros", + "thiserror 1.0.69", "tokio", "tracing", "tracing-appender", @@ -8158,9 +8199,9 @@ dependencies = [ [[package]] name = "polling" -version = "3.7.3" +version = "3.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" +checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f" dependencies = [ "cfg-if 1.0.0", "concurrent-queue", @@ -8184,18 +8225,19 @@ dependencies = [ [[package]] name = "portable-atomic" -version = "1.4.1" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edc55135a600d700580e406b4de0d59cb9ad25e344a3a091a97ded2622ec4ec6" +checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6" [[package]] name = "postcard" -version = "1.0.8" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8" +checksum = "170a2601f67cc9dba8edd8c4870b15f71a6a2dc196daec8c83f72b59dff628a8" dependencies = [ "cobs", - "embedded-io", + "embedded-io 0.4.0", + "embedded-io 0.6.1", "serde", ] @@ -8216,27 +8258,30 @@ dependencies = [ "cfg-if 1.0.0", "criterion", "findshlibs", - "inferno 0.11.19", + "inferno 0.11.21", "libc", "log", "nix 0.26.4", "once_cell", - "parking_lot 0.12.1", - "prost 0.12.2", - "prost-build 0.12.2", - "prost-derive 0.12.2", + "parking_lot 0.12.3", + "prost 0.12.6", + "prost-build 0.12.6", + "prost-derive 0.12.6", "sha2 0.10.8", "smallvec", "symbolic-demangle", "tempfile", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] name = "ppv-lite86" -version = "0.2.17" +version = "0.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" +checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" +dependencies = [ + "zerocopy", +] [[package]] name = "precomputed-hash" @@ -8246,9 +8291,9 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" [[package]] name = "predicates" -version = "3.1.2" +version = "3.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97" +checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573" dependencies = [ "anstyle", "difflib", @@ -8260,15 +8305,15 @@ dependencies = [ [[package]] name = "predicates-core" -version = "1.0.6" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" +checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" [[package]] name = "predicates-tree" -version = "1.0.9" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" +checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" dependencies = [ "predicates-core", "termtree", @@ -8288,13 +8333,13 @@ dependencies = [ [[package]] name = "pretty" -version = "0.12.1" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "563c9d701c3a31dfffaaf9ce23507ba09cbe0b9125ba176d15e629b0235e9acc" +checksum = "b55c4d17d994b637e2f4daf6e5dc5d660d209d5642377d675d7a1c3ab69fa579" dependencies = [ "arrayvec 0.5.2", "typed-arena", - "unicode-segmentation", + "unicode-width 0.1.14", ] [[package]] @@ -8309,38 +8354,38 @@ dependencies = [ [[package]] name = "pretty_assertions" -version = "1.4.0" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" +checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" dependencies = [ "diff", - "yansi", + "yansi 1.0.1", ] [[package]] name = "prettyplease" -version = "0.2.15" +version = "0.2.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" +checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac" dependencies = [ "proc-macro2", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "primeorder" -version = "0.13.2" +version = "0.13.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c2fcef82c0ec6eefcc179b978446c399b3cdf73c392c35604e399eee6df1ee3" +checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" dependencies = [ "elliptic-curve", ] [[package]] name = "primitive-types" -version = "0.12.1" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f3486ccba82358b11a77516035647c34ba167dfa53312630de83b12bd4f3d66" +checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2" dependencies = [ "fixed-hash", "impl-codec", @@ -8352,32 +8397,22 @@ dependencies = [ [[package]] name = "priority-queue" -version = "1.3.2" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fff39edfcaec0d64e8d0da38564fad195d2d51b680940295fcc307366e101e61" +checksum = "a0bda9164fe05bc9225752d54aae413343c36f684380005398a6a8fde95fe785" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", "indexmap 1.9.3", "serde", ] -[[package]] -name = "proc-macro-crate" -version = "1.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" -dependencies = [ - "once_cell", - "toml_edit 0.19.14", -] - [[package]] name = "proc-macro-crate" version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" dependencies = [ - "toml_edit 0.22.20", + "toml_edit", ] [[package]] @@ -8412,9 +8447,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "1.0.89" +version = "1.0.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" +checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" dependencies = [ "unicode-ident", ] @@ -8439,7 +8474,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "hex", "lazy_static", "procfs-core", @@ -8452,7 +8487,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "hex", ] @@ -8467,33 +8502,33 @@ dependencies = [ "lazy_static", "libc", "memchr", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "procfs 0.16.0", "protobuf", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] name = "prometheus-parse" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c2aa5feb83bf4b2c8919eaf563f51dbab41183de73ba2353c0e03cd7b6bd892" +checksum = "811031bea65e5a401fb2e1f37d802cca6601e204ac463809a3189352d13b78a5" dependencies = [ "chrono", - "itertools 0.10.5", + "itertools 0.12.1", "once_cell", "regex", ] [[package]] name = "proptest" -version = "1.5.0" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" +checksum = "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" dependencies = [ - "bit-set", - "bit-vec", - "bitflags 2.6.0", + "bit-set 0.8.0", + "bit-vec 0.8.0", + "bitflags 2.8.0", "lazy_static", "num-traits", "rand 0.8.5", @@ -8507,120 +8542,118 @@ dependencies = [ [[package]] name = "proptest-derive" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ff7ff745a347b87471d859a377a9a404361e7efc2a971d73424a6d183c0fc77" +checksum = "4ee1c9ac207483d5e7db4940700de86a9aae46ef90c48b57f99fe7edb8345e49" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "prost" -version = "0.12.2" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a5a410fc7882af66deb8d01d01737353cf3ad6204c408177ba494291a626312" +checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29" dependencies = [ "bytes", - "prost-derive 0.12.2", + "prost-derive 0.12.6", ] [[package]] name = "prost" -version = "0.13.3" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b0487d90e047de87f984913713b85c601c05609aad5b0df4b4573fbf69aa13f" +checksum = "2c0fef6c4230e4ccf618a35c59d7ede15dea37de8427500f50aff708806e42ec" dependencies = [ "bytes", - "prost-derive 0.13.3", + "prost-derive 0.13.4", ] [[package]] name = "prost-build" -version = "0.12.2" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fa3d084c8704911bfefb2771be2f9b6c5c0da7343a71e0021ee3c665cada738" +checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4" dependencies = [ "bytes", - "heck 0.4.1", - "itertools 0.11.0", + "heck 0.5.0", + "itertools 0.12.1", "log", "multimap", "once_cell", "petgraph", "prettyplease", - "prost 0.12.2", - "prost-types 0.12.2", + "prost 0.12.6", + "prost-types 0.12.6", "regex", - "syn 2.0.87", + "syn 2.0.96", "tempfile", - "which", ] [[package]] name = "prost-build" -version = "0.13.3" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c1318b19085f08681016926435853bbf7858f9c082d0999b80550ff5d9abe15" +checksum = "d0f3e5beed80eb580c68e2c600937ac2c4eedabdfd5ef1e5b7ea4f3fba84497b" dependencies = [ - "bytes", "heck 0.5.0", - "itertools 0.12.0", + "itertools 0.13.0", "log", "multimap", "once_cell", "petgraph", "prettyplease", - "prost 0.13.3", - "prost-types 0.13.3", + "prost 0.13.4", + "prost-types 0.13.4", "regex", - "syn 2.0.87", + "syn 2.0.96", "tempfile", ] [[package]] name = "prost-derive" -version = "0.12.2" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "065717a5dfaca4a83d2fe57db3487b311365200000551d7a364e715dbf4346bc" +checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" dependencies = [ "anyhow", - "itertools 0.11.0", + "itertools 0.12.1", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "prost-derive" -version = "0.13.3" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9552f850d5f0964a4e4d0bf306459ac29323ddfbae05e35a7c0d35cb0803cc5" +checksum = "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3" dependencies = [ "anyhow", - "itertools 0.12.0", + "itertools 0.13.0", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "prost-types" -version = "0.12.2" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8339f32236f590281e2f6368276441394fcd1b2133b549cc895d0ae80f2f9a52" +checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0" dependencies = [ - "prost 0.12.2", + "prost 0.12.6", ] [[package]] name = "prost-types" -version = "0.13.3" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4759aa0d3a6232fb8dbdb97b61de2c20047c68aca932c7ed76da9d788508d670" +checksum = "cc2f1e56baa61e93533aebc21af4d2134b70f66275e0fcdf3cbe43d77ff7e8fc" dependencies = [ - "prost 0.13.3", + "prost 0.13.4", ] [[package]] @@ -8637,9 +8670,9 @@ checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" [[package]] name = "psm" -version = "0.1.21" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" +checksum = "200b9ff220857e53e184257720a14553b2f4aa02577d2ed9842d45d4b9654810" dependencies = [ "cc", ] @@ -8666,19 +8699,19 @@ dependencies = [ [[package]] name = "publicsuffix" -version = "2.2.3" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457" +checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf" dependencies = [ - "idna 0.3.0", + "idna 1.0.3", "psl-types", ] [[package]] name = "pulley-interpreter" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "403a1a95f4c18a45c86c7bff13df00347afd0abcbf2e54af273c837339ffcf77" +checksum = "8324e531de91a3c25021a30fb7862d39cc516b61fbb801176acb5ff279ea887b" dependencies = [ "cranelift-bitset", "log", @@ -8687,30 +8720,14 @@ dependencies = [ [[package]] name = "quanta" -version = "0.11.1" +version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab" +checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e" dependencies = [ "crossbeam-utils", "libc", - "mach2", "once_cell", - "raw-cpuid 10.7.0", - "wasi", - "web-sys", - "winapi 0.3.9", -] - -[[package]] -name = "quanta" -version = "0.12.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5" -dependencies = [ - "crossbeam-utils", - "libc", - "once_cell", - "raw-cpuid 11.1.0", + "raw-cpuid", "wasi", "web-sys", "winapi 0.3.9", @@ -8733,9 +8750,9 @@ dependencies = [ [[package]] name = "quick-xml" -version = "0.37.1" +version = "0.37.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f22f29bdff3987b4d8632ef95fd6424ec7e4e0a57e2f4fc63e489e75357f6a03" +checksum = "165859e9e55f79d67b96c5d96f4e88b6f2695a1972849c15a6a3f5c59fc2c003" dependencies = [ "memchr", ] @@ -8753,57 +8770,61 @@ dependencies = [ [[package]] name = "quinn" -version = "0.11.5" +version = "0.11.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684" +checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef" dependencies = [ "bytes", "pin-project-lite", "quinn-proto", "quinn-udp", - "rustc-hash 2.0.0", - "rustls 0.23.18", - "socket2 0.5.7", - "thiserror 1.0.68", + "rustc-hash 2.1.0", + "rustls 0.23.21", + "socket2 0.5.8", + "thiserror 2.0.11", "tokio", "tracing", ] [[package]] name = "quinn-proto" -version = "0.11.7" +version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea0a9b3a42929fad8a7c3de7f86ce0814cfa893328157672680e9fb1145549c5" +checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d" dependencies = [ "bytes", + "getrandom", "rand 0.8.5", - "ring 0.17.7", - "rustc-hash 2.0.0", - "rustls 0.23.18", + "ring 0.17.8", + "rustc-hash 2.1.0", + "rustls 0.23.21", + "rustls-pki-types", "slab", - "thiserror 1.0.68", + "thiserror 2.0.11", "tinyvec", "tracing", + "web-time", ] [[package]] name = "quinn-udp" -version = "0.5.5" +version = "0.5.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b" +checksum = "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904" dependencies = [ + "cfg_aliases", "libc", "once_cell", - "socket2 0.5.7", + "socket2 0.5.8", "tracing", "windows-sys 0.59.0", ] [[package]] name = "quote" -version = "1.0.37" +version = "1.0.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" +checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" dependencies = [ "proc-macro2", ] @@ -8980,9 +9001,9 @@ dependencies = [ [[package]] name = "rangemap" -version = "1.4.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "977b1e897f9d764566891689e642653e5ed90c6895106acd005eb4c1d0203991" +checksum = "f60fcc7d6849342eff22c4350c8b9a989ee8ceabc4b481253e8946b9fe83d684" [[package]] name = "ratelimit" @@ -8991,26 +9012,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c1bb13e2dcfa2232ac6887157aad8d9b3fe4ca57f7c8d4938ff5ea9be742300" dependencies = [ "clocksource", - "parking_lot 0.12.1", - "thiserror 1.0.68", -] - -[[package]] -name = "raw-cpuid" -version = "10.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" -dependencies = [ - "bitflags 1.3.2", + "parking_lot 0.12.3", + "thiserror 1.0.69", ] [[package]] name = "raw-cpuid" -version = "11.1.0" +version = "11.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb9ee317cfe3fbd54b36a511efc1edd42e216903c9cd575e686dd68a2ba90d8d" +checksum = "c6928fa44c097620b706542d428957635951bade7143269085389d42c8a4927e" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", ] [[package]] @@ -9035,12 +9047,12 @@ dependencies = [ [[package]] name = "rcgen" -version = "0.13.1" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54077e1872c46788540de1ea3d7f4ccb1983d12f9aa909b234468676c1a36779" +checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" dependencies = [ - "pem 3.0.3", - "ring 0.17.7", + "pem 3.0.4", + "ring 0.17.8", "rustls-pki-types", "time", "yasna", @@ -9067,22 +9079,22 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.3.5" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" +checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.8.0", ] [[package]] name = "redox_users" -version = "0.4.3" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" +checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ "getrandom", - "redox_syscall 0.2.16", - "thiserror 1.0.68", + "libredox", + "thiserror 1.0.69", ] [[package]] @@ -9095,19 +9107,19 @@ dependencies = [ "bumpalo", "hashbrown 0.15.2", "log", - "rustc-hash 2.0.0", + "rustc-hash 2.1.0", "smallvec", ] [[package]] name = "regex" -version = "1.11.0" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" +checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.4.8", + "regex-automata 0.4.9", "regex-syntax 0.8.5", ] @@ -9122,15 +9134,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310" - -[[package]] -name = "regex-automata" -version = "0.4.8" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" +checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" dependencies = [ "aho-corasick", "memchr", @@ -9151,9 +9157,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "regex-syntax" -version = "0.7.4" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" +checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" [[package]] name = "regex-syntax" @@ -9169,9 +9175,9 @@ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2" [[package]] name = "rend" -version = "0.4.0" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab" +checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" dependencies = [ "bytecheck", ] @@ -9183,7 +9189,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" dependencies = [ "async-compression", - "base64 0.21.6", + "base64 0.21.7", "bytes", "encoding_rs", "futures-core", @@ -9191,7 +9197,7 @@ dependencies = [ "h2 0.3.26", "http 0.2.12", "http-body 0.4.6", - "hyper 0.14.27", + "hyper 0.14.32", "hyper-rustls 0.24.2", "ipnet", "js-sys", @@ -9201,7 +9207,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "rustls 0.21.12", - "rustls-pemfile 1.0.3", + "rustls-pemfile 1.0.4", "serde", "serde_json", "serde_urlencoded", @@ -9215,28 +9221,28 @@ dependencies = [ "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "webpki-roots 0.25.2", + "webpki-roots 0.25.4", "winreg", ] [[package]] name = "reqwest" -version = "0.12.9" +version = "0.12.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" +checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" dependencies = [ "base64 0.22.1", "bytes", "futures-channel", "futures-core", "futures-util", - "h2 0.4.4", + "h2 0.4.7", "hickory-resolver", "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.1", - "hyper-rustls 0.27.3", + "hyper 1.5.2", + "hyper-rustls 0.27.5", "hyper-util", "ipnet", "js-sys", @@ -9247,25 +9253,26 @@ dependencies = [ "percent-encoding", "pin-project-lite", "quinn", - "rustls 0.23.18", - "rustls-native-certs 0.8.0", + "rustls 0.23.21", + "rustls-native-certs 0.8.1", "rustls-pemfile 2.2.0", "rustls-pki-types", "serde", "serde_json", "serde_urlencoded", - "sync_wrapper 1.0.1", + "sync_wrapper 1.0.2", "tokio", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.1", "tokio-socks", "tokio-util", + "tower 0.5.2", "tower-service", "url", "wasm-bindgen", "wasm-bindgen-futures", "wasm-streams", "web-sys", - "webpki-roots 0.26.1", + "webpki-roots 0.26.7", "windows-registry", ] @@ -9291,9 +9298,9 @@ dependencies = [ [[package]] name = "rgb" -version = "0.8.37" +version = "0.8.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8" +checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a" dependencies = [ "bytemuck", ] @@ -9315,16 +9322,17 @@ dependencies = [ [[package]] name = "ring" -version = "0.17.7" +version = "0.17.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" +checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" dependencies = [ "cc", + "cfg-if 1.0.0", "getrandom", "libc", "spin 0.9.8", "untrusted 0.9.0", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] @@ -9338,12 +9346,13 @@ dependencies = [ [[package]] name = "rkyv" -version = "0.7.42" +version = "0.7.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58" +checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" dependencies = [ "bitvec", "bytecheck", + "bytes", "hashbrown 0.12.3", "ptr_meta", "rend", @@ -9355,9 +9364,9 @@ dependencies = [ [[package]] name = "rkyv_derive" -version = "0.7.42" +version = "0.7.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d" +checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" dependencies = [ "proc-macro2", "quote", @@ -9413,9 +9422,9 @@ dependencies = [ [[package]] name = "rsa" -version = "0.9.6" +version = "0.9.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" +checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519" dependencies = [ "const-oid", "digest 0.10.7", @@ -9457,15 +9466,15 @@ dependencies = [ "regex", "relative-path", "rustc_version", - "syn 2.0.87", + "syn 2.0.96", "unicode-ident", ] [[package]] name = "rusb" -version = "0.9.3" +version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45fff149b6033f25e825cbb7b2c625a11ee8e6dac09264d49beb125e39aa97bf" +checksum = "ab9f9ff05b63a786553a4c02943b74b34a988448671001e9a27e2f0565cc05a4" dependencies = [ "libc", "libusb1-sys", @@ -9491,7 +9500,7 @@ version = "1.36.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b082d80e3e3cc52b2ed634388d436fe1f4de6af5786cc2de9ba9737527bdf555" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", "borsh", "bytes", "num-traits", @@ -9513,9 +9522,9 @@ dependencies = [ [[package]] name = "rustc-demangle" -version = "0.1.23" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" +checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" [[package]] name = "rustc-hash" @@ -9525,9 +9534,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustc-hash" -version = "2.0.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" +checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497" [[package]] name = "rustc-hex" @@ -9537,9 +9546,9 @@ checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" [[package]] name = "rustc_version" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ "semver", ] @@ -9555,15 +9564,15 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.32" +version = "0.38.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89" +checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6" dependencies = [ - "bitflags 2.6.0", - "errno 0.3.8", + "bitflags 2.8.0", + "errno 0.3.10", "libc", "linux-raw-sys", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -9573,7 +9582,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" dependencies = [ "log", - "ring 0.17.7", + "ring 0.17.8", "rustls-webpki 0.101.7", "sct", ] @@ -9585,7 +9594,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" dependencies = [ "log", - "ring 0.17.7", + "ring 0.17.8", "rustls-pki-types", "rustls-webpki 0.102.8", "subtle", @@ -9594,15 +9603,15 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.18" +version = "0.23.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c9cc1d47e243d655ace55ed38201c19ae02c148ae56412ab8750e8f0166ab7f" +checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8" dependencies = [ "brotli 7.0.0", - "brotli-decompressor 4.0.1", + "brotli-decompressor", "log", "once_cell", - "ring 0.17.7", + "ring 0.17.8", "rustls-pki-types", "rustls-webpki 0.102.8", "subtle", @@ -9625,13 +9634,13 @@ dependencies = [ "futures-rustls", "http 1.2.0", "log", - "pem 3.0.3", + "pem 3.0.4", "rcgen", - "ring 0.17.7", + "ring 0.17.8", "serde", "serde_json", - "thiserror 2.0.3", - "webpki-roots 0.26.1", + "thiserror 2.0.11", + "webpki-roots 0.26.7", "x509-parser", ] @@ -9642,44 +9651,43 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" dependencies = [ "openssl-probe", - "rustls-pemfile 1.0.3", + "rustls-pemfile 1.0.4", "schannel", - "security-framework", + "security-framework 2.11.1", ] [[package]] name = "rustls-native-certs" -version = "0.7.0" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" +checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" dependencies = [ "openssl-probe", "rustls-pemfile 2.2.0", "rustls-pki-types", "schannel", - "security-framework", + "security-framework 2.11.1", ] [[package]] name = "rustls-native-certs" -version = "0.8.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a" +checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" dependencies = [ "openssl-probe", - "rustls-pemfile 2.2.0", "rustls-pki-types", "schannel", - "security-framework", + "security-framework 3.2.0", ] [[package]] name = "rustls-pemfile" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" +checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" dependencies = [ - "base64 0.21.6", + "base64 0.21.7", ] [[package]] @@ -9693,9 +9701,12 @@ dependencies = [ [[package]] name = "rustls-pki-types" -version = "1.10.0" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" +checksum = "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37" +dependencies = [ + "web-time", +] [[package]] name = "rustls-platform-verifier" @@ -9703,16 +9714,16 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4c7dc240fec5517e6c4eab3310438636cfe6391dfc345ba013109909a90d136" dependencies = [ - "core-foundation", + "core-foundation 0.9.4", "core-foundation-sys", "jni", "log", "once_cell", - "rustls 0.23.18", - "rustls-native-certs 0.7.0", + "rustls 0.23.21", + "rustls-native-certs 0.7.3", "rustls-platform-verifier-android", "rustls-webpki 0.102.8", - "security-framework", + "security-framework 2.11.1", "security-framework-sys", "webpki-root-certs", "windows-sys 0.52.0", @@ -9730,7 +9741,7 @@ version = "0.101.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" dependencies = [ - "ring 0.17.7", + "ring 0.17.8", "untrusted 0.9.0", ] @@ -9740,16 +9751,16 @@ version = "0.102.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" dependencies = [ - "ring 0.17.7", + "ring 0.17.8", "rustls-pki-types", "untrusted 0.9.0", ] [[package]] name = "rustversion" -version = "1.0.14" +version = "1.0.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" +checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" [[package]] name = "rusty-fork" @@ -9765,9 +9776,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.15" +version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" +checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" [[package]] name = "same-file" @@ -9780,45 +9791,45 @@ dependencies = [ [[package]] name = "scale-info" -version = "2.9.0" +version = "2.11.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35c0a159d0c45c12b20c5a844feb1fe4bea86e28f17b92a5f0c42193634d3782" +checksum = "346a3b32eba2640d17a9cb5927056b08f3de90f65b72fe09402c2ad07d684d0b" dependencies = [ "cfg-if 1.0.0", - "derive_more", + "derive_more 1.0.0", "parity-scale-codec", "scale-info-derive", ] [[package]] name = "scale-info-derive" -version = "2.9.0" +version = "2.11.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "912e55f6d20e0e80d63733872b40e1227c0bce1e1ab81ba67d696339bfd7fd29" +checksum = "c6630024bf739e2179b91fb424b28898baf819414262c5d376677dbff1fe7ebf" dependencies = [ - "proc-macro-crate 1.3.1", + "proc-macro-crate", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.96", ] [[package]] name = "schannel" -version = "0.1.22" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" +checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" dependencies = [ - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] name = "schemars" -version = "0.8.16" +version = "0.8.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45a28f4c49489add4ce10783f7911893516f15afe45d015608d41faca6bc4d29" +checksum = "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92" dependencies = [ "dyn-clone", - "indexmap 2.2.6", + "indexmap 2.7.0", "schemars_derive", "serde", "serde_json", @@ -9826,14 +9837,14 @@ dependencies = [ [[package]] name = "schemars_derive" -version = "0.8.16" +version = "0.8.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c767fd6fa65d9ccf9cf026122c1b555f2ef9a4f0cea69da4d7dbc3e258d30967" +checksum = "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e" dependencies = [ "proc-macro2", "quote", "serde_derive_internals", - "syn 1.0.109", + "syn 2.0.96", ] [[package]] @@ -9873,12 +9884,12 @@ dependencies = [ [[package]] name = "sct" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" +checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" dependencies = [ - "ring 0.16.20", - "untrusted 0.7.1", + "ring 0.17.8", + "untrusted 0.9.0", ] [[package]] @@ -9926,12 +9937,12 @@ dependencies = [ [[package]] name = "secp256k1" -version = "0.29.0" +version = "0.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e0cc0f1cf93f4969faf3ea1c7d8a9faed25918d96affa959720823dfe86d4f3" +checksum = "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113" dependencies = [ "bitcoin_hashes 0.14.0", - "secp256k1-sys 0.10.0", + "secp256k1-sys 0.10.1", ] [[package]] @@ -9954,9 +9965,9 @@ dependencies = [ [[package]] name = "secp256k1-sys" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1433bd67156263443f14d603720b082dd3121779323fce20cba2aa07b874bc1b" +checksum = "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9" dependencies = [ "cc", ] @@ -9977,19 +9988,32 @@ version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" dependencies = [ - "bitflags 2.6.0", - "core-foundation", + "bitflags 2.8.0", + "core-foundation 0.9.4", "core-foundation-sys", "libc", "num-bigint 0.4.6", "security-framework-sys", ] +[[package]] +name = "security-framework" +version = "3.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" +dependencies = [ + "bitflags 2.8.0", + "core-foundation 0.10.0", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + [[package]] name = "security-framework-sys" -version = "2.12.0" +version = "2.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" +checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" dependencies = [ "core-foundation-sys", "libc", @@ -10001,9 +10025,9 @@ version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4eb30575f3638fc8f6815f448d50cb1a2e255b0897985c8c59f4d37b72a07b06" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "cssparser", - "derive_more", + "derive_more 0.99.18", "fxhash", "log", "new_debug_unreachable", @@ -10016,9 +10040,9 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.22" +version = "1.0.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" +checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba" dependencies = [ "serde", ] @@ -10049,7 +10073,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c" dependencies = [ - "ordered-float 2.10.0", + "ordered-float 2.10.1", "serde", ] @@ -10079,7 +10103,7 @@ version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5" dependencies = [ - "half", + "half 1.8.3", "serde", ] @@ -10091,25 +10115,25 @@ checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "serde_derive_internals" -version = "0.26.0" +version = "0.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c" +checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.96", ] [[package]] name = "serde_json" -version = "1.0.132" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" +checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" dependencies = [ "itoa", "memchr", @@ -10119,9 +10143,9 @@ dependencies = [ [[package]] name = "serde_path_to_error" -version = "0.1.14" +version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335" +checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" dependencies = [ "itoa", "serde", @@ -10137,7 +10161,7 @@ dependencies = [ "futures", "percent-encoding", "serde", - "thiserror 1.0.68", + "thiserror 1.0.69", ] [[package]] @@ -10158,7 +10182,7 @@ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -10174,14 +10198,14 @@ dependencies = [ [[package]] name = "serde_tokenstream" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8790a7c3fe883e443eaa2af6f705952bc5d6e8671a220b9335c8cae92c037e74" +checksum = "64060d864397305347a78851c51588fd283767e7e7589829e8121d65512340f1" dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -10243,7 +10267,7 @@ dependencies = [ "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -10264,7 +10288,7 @@ version = "0.9.34+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" dependencies = [ - "indexmap 2.2.6", + "indexmap 2.7.0", "itoa", "ryu", "serde", @@ -10340,9 +10364,9 @@ dependencies = [ [[package]] name = "sharded-slab" -version = "0.1.4" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" +checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" dependencies = [ "lazy_static", ] @@ -10365,20 +10389,20 @@ dependencies = [ [[package]] name = "signal-hook-mio" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" +checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd" dependencies = [ "libc", - "mio 0.8.10", + "mio 0.8.11", "signal-hook", ] [[package]] name = "signal-hook-registry" -version = "1.4.1" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" +checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" dependencies = [ "libc", ] @@ -10395,25 +10419,25 @@ dependencies = [ [[package]] name = "simdutf8" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" +checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" [[package]] name = "similar" -version = "2.2.1" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf" +checksum = "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e" [[package]] name = "simple_asn1" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" +checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" dependencies = [ "num-bigint 0.4.6", "num-traits", - "thiserror 1.0.68", + "thiserror 2.0.11", "time", ] @@ -10455,13 +10479,19 @@ version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" +[[package]] +name = "siphasher" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" + [[package]] name = "slab" -version = "0.4.8" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" +checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" dependencies = [ - "autocfg 1.1.0", + "autocfg 1.4.0", ] [[package]] @@ -10550,9 +10580,9 @@ dependencies = [ [[package]] name = "slotmap" -version = "1.0.6" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342" +checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" dependencies = [ "version_check", ] @@ -10584,14 +10614,14 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "socket2" -version = "0.4.9" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" +checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" dependencies = [ "libc", "winapi 0.3.9", @@ -10599,9 +10629,9 @@ dependencies = [ [[package]] name = "socket2" -version = "0.5.7" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" +checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8" dependencies = [ "libc", "windows-sys 0.52.0", @@ -10619,6 +10649,15 @@ version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" +[[package]] +name = "spinning_top" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" +dependencies = [ + "lock_api", +] + [[package]] name = "spki" version = "0.7.3" @@ -10655,15 +10694,15 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "stacker" -version = "0.1.15" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce" +checksum = "799c883d55abdb5e98af1a7b3f23b9b6de8ecada0ecac058672d7635eb48ca7b" dependencies = [ "cc", "cfg-if 1.0.0", "libc", "psm", - "winapi 0.3.9", + "windows-sys 0.59.0", ] [[package]] @@ -10698,7 +10737,7 @@ checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" dependencies = [ "new_debug_unreachable", "once_cell", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "phf_shared 0.10.0", "precomputed-hash", "serde", @@ -10737,7 +10776,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta-derive", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -10748,16 +10787,7 @@ checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", -] - -[[package]] -name = "strum" -version = "0.25.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" -dependencies = [ - "strum_macros 0.25.3", + "syn 2.0.96", ] [[package]] @@ -10766,20 +10796,7 @@ version = "0.26.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" dependencies = [ - "strum_macros 0.26.4", -] - -[[package]] -name = "strum_macros" -version = "0.25.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" -dependencies = [ - "heck 0.4.1", - "proc-macro2", - "quote", - "rustversion", - "syn 2.0.87", + "strum_macros", ] [[package]] @@ -10792,14 +10809,14 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "stubborn-io" -version = "0.3.2" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b261fbca19f25e0ac726f6efb3c3f53949e18ba4b126c16f8ca625730daa1a9c" +checksum = "373a722240991e091384a571e1fd8abde15eca4494a1a2bff95dbf603d15a866" dependencies = [ "log", "rand 0.8.5", @@ -10820,9 +10837,9 @@ checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142" [[package]] name = "symbolic-common" -version = "12.4.0" +version = "12.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e0e9bc48b3852f36a84f8d0da275d50cb3c2b88b59b9ec35fdd8b7fa239e37d" +checksum = "8150eae9699e3c73a3e6431dc1f80d87748797c0457336af23e94c1de619ed24" dependencies = [ "debugid", "memmap2", @@ -10832,9 +10849,9 @@ dependencies = [ [[package]] name = "symbolic-demangle" -version = "12.4.0" +version = "12.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "691e53bdc0702aba3a5abc2cffff89346fcbd4050748883c7e2f714b33a69045" +checksum = "95f4a9846f7a8933b6d198c022faa2c9bd89e1a970bed9d9a98d25708bf8de17" dependencies = [ "rustc-demangle", "symbolic-common", @@ -10853,9 +10870,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.87" +version = "2.0.96" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" +checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" dependencies = [ "proc-macro2", "quote", @@ -10870,9 +10887,9 @@ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" [[package]] name = "sync_wrapper" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" dependencies = [ "futures-core", ] @@ -10885,7 +10902,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -10895,7 +10912,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" dependencies = [ "bitflags 1.3.2", - "core-foundation", + "core-foundation 0.9.4", "system-configuration-sys", ] @@ -10911,9 +10928,9 @@ dependencies = [ [[package]] name = "systemstat" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a24aec24a9312c83999a28e3ef9db7e2afd5c64bf47725b758cdc1cafd5b0bd2" +checksum = "668a4db78b439df482c238f559e4ea869017f9e62ef0a059c8bfcd841a4df544" dependencies = [ "bytesize", "lazy_static", @@ -10943,9 +10960,9 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "tar" -version = "0.4.39" +version = "0.4.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec96d2ffad078296368d46ff1cb309be1c23c513b4ab0e22a45de0185275ac96" +checksum = "c65998313f8e17d0d553d28f91a0df93e4dbbbf770279c7bc21ca0f09ea1a1f6" dependencies = [ "filetime", "libc", @@ -10974,7 +10991,7 @@ dependencies = [ "serde", "static_assertions", "tarpc-plugins", - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", "tokio-serde", "tokio-util", @@ -10995,12 +11012,13 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.12.0" +version = "3.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" +checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" dependencies = [ "cfg-if 1.0.0", - "fastrand 2.1.0", + "fastrand", + "getrandom", "once_cell", "rustix", "windows-sys 0.59.0", @@ -11068,9 +11086,9 @@ dependencies = [ [[package]] name = "termtree" -version = "0.4.1" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" +checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683" [[package]] name = "test-strategy" @@ -11081,7 +11099,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -11097,9 +11115,9 @@ dependencies = [ [[package]] name = "textplots" -version = "0.8.4" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2171116bd71c738068fe42091b1509d70135a768443c9afd6c179b83dc6cdc79" +checksum = "f59b64803118dbff62f92842b3154a2c802dfd8e18660132bbcbfb141c637ae3" dependencies = [ "drawille", "rgb", @@ -11107,48 +11125,48 @@ dependencies = [ [[package]] name = "textwrap" -version = "0.16.0" +version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" +checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" [[package]] name = "thiserror" -version = "1.0.68" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02dd99dc800bbb97186339685293e1cc5d9df1f8fae2d0aecd9ff1c77efea892" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ - "thiserror-impl 1.0.68", + "thiserror-impl 1.0.69", ] [[package]] name = "thiserror" -version = "2.0.3" +version = "2.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa" +checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" dependencies = [ - "thiserror-impl 2.0.3", + "thiserror-impl 2.0.11", ] [[package]] name = "thiserror-impl" -version = "1.0.68" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7c61ec9a6f64d2793d8a45faba21efbe3ced62a886d44c36a009b2b519b4c7e" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "thiserror-impl" -version = "2.0.3" +version = "2.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568" +checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -11159,9 +11177,9 @@ checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820" [[package]] name = "thread_local" -version = "1.1.7" +version = "1.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" +checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" dependencies = [ "cfg-if 1.0.0", "once_cell", @@ -11209,9 +11227,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.36" +version = "0.3.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" +checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" dependencies = [ "deranged", "itoa", @@ -11232,9 +11250,9 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" [[package]] name = "time-macros" -version = "0.2.18" +version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" +checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" dependencies = [ "num-conv", "time-core", @@ -11271,9 +11289,9 @@ dependencies = [ [[package]] name = "tinyvec" -version = "1.6.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" dependencies = [ "tinyvec_macros", ] @@ -11302,23 +11320,23 @@ checksum = "8d9ef545650e79f30233c0003bcc2504d7efac6dad25fca40744de773fe2049c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "tokio" -version = "1.42.0" +version = "1.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" +checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" dependencies = [ "backtrace", "bytes", "libc", - "mio 1.0.2", - "parking_lot 0.12.1", + "mio 1.0.3", + "parking_lot 0.12.3", "pin-project-lite", "signal-hook-registry", - "socket2 0.5.7", + "socket2 0.5.8", "tokio-macros", "windows-sys 0.52.0", ] @@ -11335,13 +11353,13 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -11379,12 +11397,11 @@ dependencies = [ [[package]] name = "tokio-rustls" -version = "0.26.0" +version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" +checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37" dependencies = [ - "rustls 0.23.18", - "rustls-pki-types", + "rustls 0.23.21", "tokio", ] @@ -11412,7 +11429,7 @@ checksum = "0d4770b8024672c1101b3f6733eab95b18007dbe0847a8afe341fcf79e06043f" dependencies = [ "either", "futures-util", - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", ] @@ -11486,24 +11503,13 @@ checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" [[package]] name = "toml_edit" -version = "0.19.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" -dependencies = [ - "indexmap 2.2.6", - "toml_datetime", - "winnow 0.5.0", -] - -[[package]] -name = "toml_edit" -version = "0.22.20" +version = "0.22.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d" +checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" dependencies = [ - "indexmap 2.2.6", + "indexmap 2.7.0", "toml_datetime", - "winnow 0.6.20", + "winnow", ] [[package]] @@ -11517,17 +11523,17 @@ dependencies = [ "axum", "base64 0.22.1", "bytes", - "h2 0.4.4", + "h2 0.4.7", "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-timeout", "hyper-util", "percent-encoding", "pin-project", - "prost 0.13.3", - "socket2 0.5.7", + "prost 0.13.4", + "socket2 0.5.8", "tokio", "tokio-stream", "tower 0.4.13", @@ -11544,10 +11550,10 @@ checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11" dependencies = [ "prettyplease", "proc-macro2", - "prost-build 0.13.3", - "prost-types 0.13.3", + "prost-build 0.13.4", + "prost-types 0.13.4", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -11572,17 +11578,17 @@ dependencies = [ [[package]] name = "tower" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2873938d487c3cfb9aed7546dc9f2711d867c9f90c46b889989a2cb84eba6b4f" +checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" dependencies = [ "futures-core", "futures-util", "hdrhistogram", - "indexmap 2.2.6", + "indexmap 2.7.0", "pin-project-lite", "slab", - "sync_wrapper 0.1.2", + "sync_wrapper 1.0.2", "tokio", "tokio-util", "tower-layer", @@ -11596,8 +11602,8 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" dependencies = [ - "base64 0.21.6", - "bitflags 2.6.0", + "base64 0.21.7", + "bitflags 2.8.0", "bytes", "http 1.2.0", "http-body 1.0.1", @@ -11617,7 +11623,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697" dependencies = [ "async-compression", - "bitflags 2.6.0", + "bitflags 2.8.0", "bytes", "futures-core", "http 1.2.0", @@ -11626,7 +11632,7 @@ dependencies = [ "pin-project-lite", "tokio", "tokio-util", - "tower 0.5.1", + "tower 0.5.2", "tower-layer", "tower-service", "tracing", @@ -11673,17 +11679,17 @@ dependencies = [ [[package]] name = "tower_governor" -version = "0.4.2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "313fa625fea5790ed56360a30ea980e41229cf482b4835801a67ef1922bf63b9" +checksum = "aea939ea6cfa7c4880f3e7422616624f97a567c16df67b53b11f0d03917a8e46" dependencies = [ "axum", "forwarded-header-value", "governor", "http 1.2.0", "pin-project", - "thiserror 1.0.68", - "tower 0.4.13", + "thiserror 1.0.69", + "tower 0.5.2", "tracing", ] @@ -11706,7 +11712,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf" dependencies = [ "crossbeam-channel", - "thiserror 1.0.68", + "thiserror 1.0.69", "time", "tracing-subscriber", ] @@ -11719,7 +11725,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -11775,7 +11781,7 @@ checksum = "97a971f6058498b5c0f1affa23e7ea202057a7301dbff68e968b2d578bcbd053" dependencies = [ "js-sys", "once_cell", - "opentelemetry 0.27.0", + "opentelemetry 0.27.1", "opentelemetry_sdk 0.27.1", "smallvec", "tracing", @@ -11847,12 +11853,6 @@ dependencies = [ "serde_json", ] -[[package]] -name = "triomphe" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0eee8098afad3fb0c54a9007aab6804558410503ad676d4633f9c2559a00ac0f" - [[package]] name = "trust-dns-proto" version = "0.22.0" @@ -11871,7 +11871,7 @@ dependencies = [ "lazy_static", "rand 0.8.5", "smallvec", - "thiserror 1.0.68", + "thiserror 1.0.69", "tinyvec", "tokio", "tracing", @@ -11889,10 +11889,10 @@ dependencies = [ "ipconfig", "lazy_static", "lru-cache", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "resolv-conf", "smallvec", - "thiserror 1.0.68", + "thiserror 1.0.69", "tokio", "tracing", "trust-dns-proto", @@ -11900,9 +11900,9 @@ dependencies = [ [[package]] name = "try-lock" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] name = "tungstenite" @@ -11918,7 +11918,7 @@ dependencies = [ "log", "rand 0.8.5", "sha1", - "thiserror 1.0.68", + "thiserror 1.0.69", "url", "utf-8", ] @@ -11957,9 +11957,9 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" [[package]] name = "ucd-trie" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" +checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971" [[package]] name = "uint" @@ -11975,11 +11975,12 @@ dependencies = [ [[package]] name = "ulid" -version = "1.0.0" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13a3aaa69b04e5b66cc27309710a569ea23593612387d67daaf102e73aa974fd" +checksum = "f294bff79170ed1c5633812aff1e565c35d993a36e757f9bc0accf5eec4e6045" dependencies = [ "rand 0.8.5", + "web-time", ] [[package]] @@ -11990,51 +11991,54 @@ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" [[package]] name = "unicase" -version = "2.6.0" +version = "2.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" -dependencies = [ - "version_check", -] +checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" [[package]] name = "unicode-bidi" -version = "0.3.13" +version = "0.3.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" +checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" [[package]] name = "unicode-ident" -version = "1.0.11" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" +checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" [[package]] name = "unicode-normalization" -version = "0.1.22" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" +checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" dependencies = [ "tinyvec", ] [[package]] name = "unicode-segmentation" -version = "1.10.1" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" +checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" [[package]] name = "unicode-width" -version = "0.1.10" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" + +[[package]] +name = "unicode-width" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" +checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" [[package]] name = "unicode-xid" -version = "0.2.4" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" [[package]] name = "universal-hash" @@ -12076,9 +12080,9 @@ dependencies = [ [[package]] name = "url" -version = "2.5.3" +version = "2.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d157f1b96d14500ffdc1f10ba712e780825526c03d9a49b4d0324b0d9113ada" +checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" dependencies = [ "form_urlencoded", "idna 1.0.3", @@ -12106,9 +12110,9 @@ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" [[package]] name = "utf8-width" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1" +checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" [[package]] name = "utf8_iter" @@ -12118,15 +12122,15 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" [[package]] name = "utf8parse" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.11.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" +checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4" dependencies = [ "getrandom", "serde", @@ -12146,9 +12150,9 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "version_check" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "vrl" @@ -12159,9 +12163,9 @@ dependencies = [ "bytes", "cfg-if 1.0.0", "chrono", - "lalrpop 0.20.0", + "lalrpop 0.20.2", "once_cell", - "ordered-float 4.2.0", + "ordered-float 4.6.0", "regex", "serde", "serde_json", @@ -12188,17 +12192,11 @@ dependencies = [ "libc", ] -[[package]] -name = "waker-fn" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" - [[package]] name = "walkdir" -version = "2.3.3" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" +checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" dependencies = [ "same-file", "winapi-util", @@ -12206,9 +12204,9 @@ dependencies = [ [[package]] name = "walrus" -version = "0.21.1" +version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "467611cafbc8a84834b77d2b4bb191fd2f5769752def8340407e924390c6883b" +checksum = "501ace8ec3492754a9b3c4b59eac7159ceff8414f9e43a05029fe8ef43b9218f" dependencies = [ "anyhow", "gimli 0.26.2", @@ -12250,9 +12248,9 @@ dependencies = [ "bytes", "futures-channel", "futures-util", - "headers 0.3.8", + "headers 0.3.9", "http 0.2.12", - "hyper 0.14.27", + "hyper 0.14.32", "log", "mime", "mime_guess", @@ -12280,47 +12278,48 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.95" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e" +checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" dependencies = [ "cfg-if 1.0.0", "once_cell", + "rustversion", "wasm-bindgen-macro", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.95" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358" +checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" dependencies = [ "bumpalo", "log", - "once_cell", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.37" +version = "0.4.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" +checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" dependencies = [ "cfg-if 1.0.0", "js-sys", + "once_cell", "wasm-bindgen", "web-sys", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.95" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56" +checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -12328,22 +12327,25 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.95" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68" +checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.95" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" +checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" +dependencies = [ + "unicode-ident", +] [[package]] name = "wasm-encoder" @@ -12375,6 +12377,16 @@ dependencies = [ "wasmparser 0.221.2", ] +[[package]] +name = "wasm-encoder" +version = "0.223.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e636076193fa68103e937ac951b5f2f587624097017d764b8984d9c0f149464" +dependencies = [ + "leb128", + "wasmparser 0.223.0", +] + [[package]] name = "wasm-smith" version = "0.212.0" @@ -12384,7 +12396,7 @@ dependencies = [ "anyhow", "arbitrary", "flagset", - "indexmap 2.2.6", + "indexmap 2.7.0", "leb128", "wasm-encoder 0.212.0", "wasmparser 0.212.0", @@ -12392,9 +12404,9 @@ dependencies = [ [[package]] name = "wasm-streams" -version = "0.4.0" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" +checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" dependencies = [ "futures-util", "js-sys", @@ -12409,8 +12421,8 @@ version = "0.119.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c35daf77afb4f9b14016625144a391085ec2ca99ca9cc53ed291bb53ab5278d" dependencies = [ - "bitflags 2.6.0", - "indexmap 2.2.6", + "bitflags 2.8.0", + "indexmap 2.7.0", "semver", ] @@ -12421,9 +12433,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d28bc49ba1e5c5b61ffa7a2eace10820443c4b7d1c0b144109261d14570fdf8" dependencies = [ "ahash 0.8.11", - "bitflags 2.6.0", + "bitflags 2.8.0", "hashbrown 0.14.5", - "indexmap 2.2.6", + "indexmap 2.7.0", "semver", "serde", ] @@ -12435,9 +12447,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca917a21307d3adf2b9857b94dd05ebf8496bdcff4437a9b9fb3899d3e6c74e7" dependencies = [ "ahash 0.8.11", - "bitflags 2.6.0", + "bitflags 2.8.0", "hashbrown 0.14.5", - "indexmap 2.2.6", + "indexmap 2.7.0", "semver", "serde", ] @@ -12448,13 +12460,24 @@ version = "0.221.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9845c470a2e10b61dd42c385839cdd6496363ed63b5c9e420b5488b77bd22083" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "hashbrown 0.15.2", - "indexmap 2.2.6", + "indexmap 2.7.0", "semver", "serde", ] +[[package]] +name = "wasmparser" +version = "0.223.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5a99faceb1a5a84dd6084ec4bfa4b2ab153b5793b43fd8f58b89232634afc35" +dependencies = [ + "bitflags 2.8.0", + "indexmap 2.7.0", + "semver", +] + [[package]] name = "wasmprinter" version = "0.217.0" @@ -12479,23 +12502,23 @@ dependencies = [ [[package]] name = "wasmtime" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f639ecae347b9a2227e453a7b7671e84370a0b61f47a15e0390fe9b7725e47b3" +checksum = "edd30973c65eceb0f37dfcc430d83abd5eb24015fdfcab6912f52949287e04f0" dependencies = [ "anyhow", - "bitflags 2.6.0", + "bitflags 2.8.0", "bumpalo", "cc", "cfg-if 1.0.0", "hashbrown 0.14.5", - "indexmap 2.2.6", + "indexmap 2.7.0", "libc", "libm", "log", "mach2", "memfd", - "object 0.36.7", + "object", "once_cell", "paste", "postcard", @@ -12523,23 +12546,23 @@ dependencies = [ [[package]] name = "wasmtime-asm-macros" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "882a18800471cfc063c8b3ccf75723784acc3fd534009ac09421f2fac2fcdcec" +checksum = "c6c21dd30d1f3f93ee390ac1a7ec304ecdbfdab6390e1add41a1f52727b0992b" dependencies = [ "cfg-if 1.0.0", ] [[package]] name = "wasmtime-component-macro" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb5c0a77c9e1927c3d471f53cc13767c3d3438e5d5ffd394e3eb31c86445fd60" +checksum = "9f948a6ef3119d52c9f12936970de28ddf3f9bea04bc65571f4a92d2e5ab38f4" dependencies = [ "anyhow", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", "wasmtime-component-util", "wasmtime-wit-bindgen", "wit-parser", @@ -12547,15 +12570,15 @@ dependencies = [ [[package]] name = "wasmtime-component-util" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43702ca98bf5162eca0573db691ed9ecd36d716f8c6688410fe26ec16b6f9bcb" +checksum = "b9275aa01ceaaa2fa6c0ecaa5267518d80b9d6e9ae7c7ea42f4c6e073e6a69ef" [[package]] name = "wasmtime-cranelift" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20070aa5b75080a8932ec328419faf841df2bc6ceb16b55b0df2b952098392a2" +checksum = "0701a44a323267aae4499672dae422b266cee3135a23b640972ec8c0e10a44a2" dependencies = [ "anyhow", "cfg-if 1.0.0", @@ -12565,12 +12588,12 @@ dependencies = [ "cranelift-frontend", "cranelift-native", "gimli 0.31.1", - "itertools 0.12.0", + "itertools 0.12.1", "log", - "object 0.36.7", + "object", "smallvec", "target-lexicon", - "thiserror 1.0.68", + "thiserror 1.0.69", "wasmparser 0.221.2", "wasmtime-environ", "wasmtime-versioned-export-macros", @@ -12578,17 +12601,17 @@ dependencies = [ [[package]] name = "wasmtime-environ" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2604ddb24879d4dc1dedcb7081d7a8e017259bce916fdae097a97db52cbaab80" +checksum = "264c968c1b81d340355ece2be0bc31a10f567ccb6ce08512c3b7d10e26f3cbe5" dependencies = [ "anyhow", "cranelift-bitset", "cranelift-entity", "gimli 0.31.1", - "indexmap 2.2.6", + "indexmap 2.7.0", "log", - "object 0.36.7", + "object", "postcard", "serde", "serde_derive", @@ -12601,9 +12624,9 @@ dependencies = [ [[package]] name = "wasmtime-fiber" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98593412d2b167ebe2b59d4a17a184978a72f976b53b3a0ec05629451079ac1d" +checksum = "78505221fd5bd7b07b4e1fa2804edea49dc231e626ad6861adc8f531812973e6" dependencies = [ "anyhow", "cc", @@ -12616,9 +12639,9 @@ dependencies = [ [[package]] name = "wasmtime-jit-icache-coherence" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d40d7722b9e1fbeae135715710a8a2570b1e6cf72b74dd653962d89831c6c70d" +checksum = "9bedb677ca1b549d98f95e9e1f9251b460090d99a2c196a0614228c064bf2e59" dependencies = [ "anyhow", "cfg-if 1.0.0", @@ -12628,31 +12651,31 @@ dependencies = [ [[package]] name = "wasmtime-slab" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8579c335220b4ece9aa490a0e8b46de78cd342b195ab21ff981d095e14b52383" +checksum = "564905638c132c275d365c1fa074f0b499790568f43148d29de84ccecfb5cb31" [[package]] name = "wasmtime-versioned-export-macros" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7de0a56fb0a69b185968f2d7a9ba54750920a806470dff7ad8de91ac06d277e" +checksum = "1e91092e6cf77390eeccee273846a9327f3e8f91c3c6280f60f37809f0e62d29" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "wasmtime-winch" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abd309943c443f5590d12f9aba9ba63c481091c955a0a14de0c2a9e0e3aaeca9" +checksum = "b111d909dc604c741bd8ac2f4af373eaa5c68c34b5717271bcb687688212cef8" dependencies = [ "anyhow", "cranelift-codegen", "gimli 0.31.1", - "object 0.36.7", + "object", "target-lexicon", "wasmparser 0.221.2", "wasmtime-cranelift", @@ -12662,13 +12685,13 @@ dependencies = [ [[package]] name = "wasmtime-wit-bindgen" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "969f83022dac3435d6469edb582ceed04cfe32aa44dc3ef16e5cb55574633df8" +checksum = "5f38f7a5eb2f06f53fe943e7fb8bf4197f7cf279f1bc52c0ce56e9d3ffd750a4" dependencies = [ "anyhow", "heck 0.5.0", - "indexmap 2.2.6", + "indexmap 2.7.0", "wit-parser", ] @@ -12681,24 +12704,37 @@ dependencies = [ "bumpalo", "leb128", "memchr", - "unicode-width", + "unicode-width 0.1.14", "wasm-encoder 0.212.0", ] +[[package]] +name = "wast" +version = "223.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d59b2ba8a2ff9f06194b7be9524f92e45e70149f4dacc0d0c7ad92b59ac875e4" +dependencies = [ + "bumpalo", + "leb128", + "memchr", + "unicode-width 0.2.0", + "wasm-encoder 0.223.0", +] + [[package]] name = "wat" -version = "1.212.0" +version = "1.223.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c74ca7f93f11a5d6eed8499f2a8daaad6e225cab0151bc25a091fff3b987532f" +checksum = "662786915c427e4918ff01eabb3c4756d4d947cd8f635761526b4cc9da2eaaad" dependencies = [ - "wast", + "wast 223.0.0", ] [[package]] name = "web-sys" -version = "0.3.64" +version = "0.3.77" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" +checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" dependencies = [ "js-sys", "wasm-bindgen", @@ -12716,24 +12752,24 @@ dependencies = [ [[package]] name = "webpki-root-certs" -version = "0.26.6" +version = "0.26.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8c6dfa3ac045bc517de14c7b1384298de1dbd229d38e08e169d9ae8c170937c" +checksum = "9cd5da49bdf1f30054cfe0b8ce2958b8fbeb67c4d82c8967a598af481bef255c" dependencies = [ "rustls-pki-types", ] [[package]] name = "webpki-roots" -version = "0.25.2" +version = "0.25.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" +checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" [[package]] name = "webpki-roots" -version = "0.26.1" +version = "0.26.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" +checksum = "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e" dependencies = [ "rustls-pki-types", ] @@ -12752,20 +12788,21 @@ dependencies = [ [[package]] name = "which" -version = "4.4.0" +version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" +checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" dependencies = [ "either", - "libc", + "home", "once_cell", + "rustix", ] [[package]] name = "widestring" -version = "1.0.2" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" +checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" [[package]] name = "winapi" @@ -12791,11 +12828,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.5" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" +checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" dependencies = [ - "winapi 0.3.9", + "windows-sys 0.59.0", ] [[package]] @@ -12806,9 +12843,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "winch-codegen" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9110decc2983ed94de904804dcd979ba59cbabc78a94fec6b1d8468ec513d0f6" +checksum = "6232f40a795be2ce10fc761ed3b403825126a60d12491ac556ea104a932fd18a" dependencies = [ "anyhow", "cranelift-codegen", @@ -12821,6 +12858,16 @@ dependencies = [ "wasmtime-environ", ] +[[package]] +name = "windows" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" +dependencies = [ + "windows-core 0.58.0", + "windows-targets 0.52.6", +] + [[package]] name = "windows-core" version = "0.52.0" @@ -12830,6 +12877,41 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-core" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-result", + "windows-strings", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-implement" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.96", +] + +[[package]] +name = "windows-interface" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.96", +] + [[package]] name = "windows-registry" version = "0.2.0" @@ -12860,22 +12942,13 @@ dependencies = [ "windows-targets 0.52.6", ] -[[package]] -name = "windows-sys" -version = "0.45.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" -dependencies = [ - "windows-targets 0.42.2", -] - [[package]] name = "windows-sys" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" dependencies = [ - "windows-targets 0.48.1", + "windows-targets 0.48.5", ] [[package]] @@ -12898,32 +12971,17 @@ dependencies = [ [[package]] name = "windows-targets" -version = "0.42.2" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" dependencies = [ - "windows_aarch64_gnullvm 0.42.2", - "windows_aarch64_msvc 0.42.2", - "windows_i686_gnu 0.42.2", - "windows_i686_msvc 0.42.2", - "windows_x86_64_gnu 0.42.2", - "windows_x86_64_gnullvm 0.42.2", - "windows_x86_64_msvc 0.42.2", -] - -[[package]] -name = "windows-targets" -version = "0.48.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" -dependencies = [ - "windows_aarch64_gnullvm 0.48.0", - "windows_aarch64_msvc 0.48.0", - "windows_i686_gnu 0.48.0", - "windows_i686_msvc 0.48.0", - "windows_x86_64_gnu 0.48.0", - "windows_x86_64_gnullvm 0.48.0", - "windows_x86_64_msvc 0.48.0", + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", ] [[package]] @@ -12944,15 +13002,9 @@ dependencies = [ [[package]] name = "windows_aarch64_gnullvm" -version = "0.42.2" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" [[package]] name = "windows_aarch64_gnullvm" @@ -12962,15 +13014,9 @@ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" [[package]] name = "windows_aarch64_msvc" -version = "0.42.2" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" [[package]] name = "windows_aarch64_msvc" @@ -12980,15 +13026,9 @@ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" [[package]] name = "windows_i686_gnu" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" - -[[package]] -name = "windows_i686_gnu" -version = "0.48.0" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" [[package]] name = "windows_i686_gnu" @@ -13004,15 +13044,9 @@ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" [[package]] name = "windows_i686_msvc" -version = "0.42.2" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" - -[[package]] -name = "windows_i686_msvc" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" [[package]] name = "windows_i686_msvc" @@ -13022,15 +13056,9 @@ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" [[package]] name = "windows_x86_64_gnu" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.48.0" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" [[package]] name = "windows_x86_64_gnu" @@ -13040,15 +13068,9 @@ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" [[package]] name = "windows_x86_64_gnullvm" -version = "0.42.2" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" [[package]] name = "windows_x86_64_gnullvm" @@ -13058,15 +13080,9 @@ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" [[package]] name = "windows_x86_64_msvc" -version = "0.42.2" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "windows_x86_64_msvc" @@ -13076,18 +13092,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winnow" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81fac9742fd1ad1bd9643b991319f72dd031016d44b77039a26977eb667141e7" -dependencies = [ - "memchr", -] - -[[package]] -name = "winnow" -version = "0.6.20" +version = "0.6.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" +checksum = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a" dependencies = [ "memchr", ] @@ -13110,7 +13117,7 @@ checksum = "fbe1538eea6ea5ddbe5defd0dc82539ad7ba751e1631e9185d24a931f0a5adc8" dependencies = [ "anyhow", "id-arena", - "indexmap 2.2.6", + "indexmap 2.7.0", "log", "semver", "serde", @@ -13191,17 +13198,19 @@ dependencies = [ "nom", "oid-registry", "rusticata-macros", - "thiserror 1.0.68", + "thiserror 1.0.69", "time", ] [[package]] name = "xattr" -version = "0.2.3" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" +checksum = "e105d177a3871454f754b33bb0ee637ecaaac997446375fd3e5d43a2ed00c909" dependencies = [ "libc", + "linux-raw-sys", + "rustix", ] [[package]] @@ -13228,6 +13237,12 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" +[[package]] +name = "yansi" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" + [[package]] name = "yasna" version = "0.5.2" @@ -13239,9 +13254,9 @@ dependencies = [ [[package]] name = "yoke" -version = "0.7.4" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" +checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" dependencies = [ "serde", "stable_deref_trait", @@ -13251,54 +13266,55 @@ dependencies = [ [[package]] name = "yoke-derive" -version = "0.7.4" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" +checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", "synstructure", ] [[package]] name = "zerocopy" -version = "0.7.32" +version = "0.7.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" +checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" dependencies = [ + "byteorder", "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.7.32" +version = "0.7.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" +checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] name = "zerofrom" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" +checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" dependencies = [ "zerofrom-derive", ] [[package]] name = "zerofrom-derive" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" +checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", "synstructure", ] @@ -13319,7 +13335,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.96", ] [[package]] @@ -13341,16 +13357,7 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", -] - -[[package]] -name = "zstd" -version = "0.12.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c" -dependencies = [ - "zstd-safe 6.0.5+zstd.1.5.4", + "syn 2.0.96", ] [[package]] @@ -13359,33 +13366,23 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9" dependencies = [ - "zstd-safe 7.1.0", -] - -[[package]] -name = "zstd-safe" -version = "6.0.5+zstd.1.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b" -dependencies = [ - "libc", - "zstd-sys", + "zstd-safe", ] [[package]] name = "zstd-safe" -version = "7.1.0" +version = "7.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a" +checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059" dependencies = [ "zstd-sys", ] [[package]] name = "zstd-sys" -version = "2.0.10+zstd.1.5.6" +version = "2.0.13+zstd.1.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa" +checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" dependencies = [ "cc", "pkg-config", diff --git a/WORKSPACE.bazel b/WORKSPACE.bazel index 1249bbbc872..cb85b845545 100644 --- a/WORKSPACE.bazel +++ b/WORKSPACE.bazel @@ -96,8 +96,8 @@ sol_register_toolchains( http_archive( name = "rules_rust", - sha256 = "af4f56caae50a99a68bfce39b141b509dd68548c8204b98ab7a1cafc94d5bb02", - urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.54.1/rules_rust-v0.54.1.tar.gz"], + integrity = "sha256-8TBqrAsli3kN8BrZq8arsN8LZUFsdLTvJ/Sqsph4CmQ=", + urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.56.0/rules_rust-0.56.0.tar.gz"], ) load("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_register_toolchains") From 177b313d0dde0b952a2cb0e099469e2979ffcde0 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Thu, 16 Jan 2025 13:21:44 +0000 Subject: [PATCH 06/34] lock files --- Cargo.Bazel.Fuzzing.json.lock | 15261 ++++++++++++++++--------------- Cargo.Bazel.Fuzzing.toml.lock | 3117 ++++--- Cargo.Bazel.json.lock | 15532 ++++++++++++++++---------------- Cargo.Bazel.toml.lock | 3305 +++---- Cargo.lock | 1139 ++- 5 files changed, 19426 insertions(+), 18928 deletions(-) diff --git a/Cargo.Bazel.Fuzzing.json.lock b/Cargo.Bazel.Fuzzing.json.lock index 5c872f3e89f..fff73a4bcf7 100644 --- a/Cargo.Bazel.Fuzzing.json.lock +++ b/Cargo.Bazel.Fuzzing.json.lock @@ -1,5 +1,5 @@ { - "checksum": "962105bacf76174bb9be442cbb2028c770d340764fad6962ea5b73b2bca5800d", + "checksum": "77b4f73cd930d3893c7bfe43fb21097fa5b081a5173c78af371b1ccb01e2dfe2", "crates": { "abnf 0.12.0": { "name": "abnf", @@ -161,14 +161,14 @@ ], "license_file": null }, - "actix-codec 0.5.2": { + "actix-codec 0.5.1": { "name": "actix-codec", - "version": "0.5.2", + "version": "0.5.1", "package_url": "https://github.com/actix/actix-net", "repository": { "Http": { - "url": "https://static.crates.io/crates/actix-codec/0.5.2/download", - "sha256": "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" + "url": "https://static.crates.io/crates/actix-codec/0.5.1/download", + "sha256": "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8" } }, "targets": [ @@ -193,7 +193,7 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 1.3.2", "target": "bitflags" }, { @@ -209,15 +209,15 @@ "target": "futures_sink" }, { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -231,8 +231,8 @@ ], "selects": {} }, - "edition": "2021", - "version": "0.5.2" + "edition": "2018", + "version": "0.5.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -285,7 +285,7 @@ "deps": { "common": [ { - "id": "actix-codec 0.5.2", + "id": "actix-codec 0.5.1", "target": "actix_codec" }, { @@ -309,7 +309,7 @@ "target": "base64" }, { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -321,15 +321,15 @@ "target": "bytes" }, { - "id": "bytestring 1.4.0", + "id": "bytestring 1.3.0", "target": "bytestring" }, { - "id": "encoding_rs 0.8.35", + "id": "encoding_rs 0.8.33", "target": "encoding_rs" }, { - "id": "flate2 1.0.35", + "id": "flate2 1.0.31", "target": "flate2" }, { @@ -345,7 +345,7 @@ "target": "http" }, { - "id": "httparse 1.9.5", + "id": "httparse 1.8.0", "target": "httparse" }, { @@ -353,7 +353,7 @@ "target": "httpdate" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { @@ -361,7 +361,7 @@ "target": "language_tags" }, { - "id": "local-channel 0.1.5", + "id": "local-channel 0.1.4", "target": "local_channel" }, { @@ -373,7 +373,7 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -389,7 +389,7 @@ "target": "smallvec" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -411,7 +411,7 @@ "proc_macro_deps": { "common": [ { - "id": "derive_more 0.99.18", + "id": "derive_more 0.99.17", "target": "derive_more" } ], @@ -458,11 +458,11 @@ "deps": { "common": [ { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -517,7 +517,7 @@ "deps": { "common": [ { - "id": "bytestring 1.4.0", + "id": "bytestring 1.3.0", "target": "bytestring" }, { @@ -529,7 +529,7 @@ "target": "http" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -601,7 +601,7 @@ "target": "futures_core" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -626,14 +626,14 @@ ], "license_file": "LICENSE-APACHE" }, - "actix-server 2.5.0": { + "actix-server 2.3.0": { "name": "actix-server", - "version": "2.5.0", - "package_url": "https://github.com/actix/actix-net/tree/master/actix-server", + "version": "2.3.0", + "package_url": "https://github.com/actix/actix-net.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/actix-server/2.5.0/download", - "sha256": "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894" + "url": "https://static.crates.io/crates/actix-server/2.3.0/download", + "sha256": "3eb13e7eef0423ea6eab0e59f6c72e7cb46d33691ad56a726b3cd07ddec2c2d4" } }, "targets": [ @@ -684,15 +684,15 @@ "target": "futures_util" }, { - "id": "mio 1.0.3", + "id": "mio 0.8.10", "target": "mio" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -703,7 +703,7 @@ "selects": {} }, "edition": "2021", - "version": "2.5.0" + "version": "2.3.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -748,7 +748,7 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], @@ -805,11 +805,11 @@ "deps": { "common": [ { - "id": "local-waker 0.1.4", + "id": "local-waker 0.1.3", "target": "local_waker" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], @@ -873,7 +873,7 @@ "deps": { "common": [ { - "id": "actix-codec 0.5.2", + "id": "actix-codec 0.5.1", "target": "actix_codec" }, { @@ -889,7 +889,7 @@ "target": "actix_rt" }, { - "id": "actix-server 2.5.0", + "id": "actix-server 2.3.0", "target": "actix_server" }, { @@ -909,7 +909,7 @@ "target": "bytes" }, { - "id": "bytestring 1.4.0", + "id": "bytestring 1.3.0", "target": "bytestring" }, { @@ -921,7 +921,7 @@ "target": "cookie" }, { - "id": "encoding_rs 0.8.35", + "id": "encoding_rs 0.8.33", "target": "encoding_rs" }, { @@ -933,11 +933,11 @@ "target": "futures_util" }, { - "id": "impl-more 0.1.9", + "id": "impl-more 0.1.6", "target": "impl_more" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { @@ -945,7 +945,7 @@ "target": "language_tags" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -953,15 +953,15 @@ "target": "mime" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -973,7 +973,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -985,15 +985,15 @@ "target": "smallvec" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" } ], @@ -1011,7 +1011,7 @@ "target": "actix_web_codegen" }, { - "id": "derive_more 0.99.18", + "id": "derive_more 0.99.17", "target": "derive_more" } ], @@ -1068,15 +1068,15 @@ "target": "actix_router" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -1146,14 +1146,14 @@ ], "license_file": "LICENSE" }, - "addr2line 0.24.2": { + "addr2line 0.21.0": { "name": "addr2line", - "version": "0.24.2", + "version": "0.21.0", "package_url": "https://github.com/gimli-rs/addr2line", "repository": { "Http": { - "url": "https://static.crates.io/crates/addr2line/0.24.2/download", - "sha256": "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" + "url": "https://static.crates.io/crates/addr2line/0.21.0/download", + "sha256": "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" } }, "targets": [ @@ -1178,14 +1178,14 @@ "deps": { "common": [ { - "id": "gimli 0.31.1", + "id": "gimli 0.28.0", "target": "gimli" } ], "selects": {} }, "edition": "2018", - "version": "0.24.2" + "version": "0.21.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -1194,20 +1194,20 @@ ], "license_file": "LICENSE-APACHE" }, - "adler2 2.0.0": { - "name": "adler2", - "version": "2.0.0", - "package_url": "https://github.com/oyvindln/adler2", + "adler 1.0.2": { + "name": "adler", + "version": "1.0.2", + "package_url": "https://github.com/jonas-schievink/adler.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/adler2/2.0.0/download", - "sha256": "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" + "url": "https://static.crates.io/crates/adler/1.0.2/download", + "sha256": "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" } }, "targets": [ { "Library": { - "crate_name": "adler2", + "crate_name": "adler", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -1218,13 +1218,13 @@ } } ], - "library_target_name": "adler2", + "library_target_name": "adler", "common_attrs": { "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "2.0.0" + "edition": "2015", + "version": "1.0.2" }, "license": "0BSD OR MIT OR Apache-2.0", "license_ids": [ @@ -1383,13 +1383,13 @@ "selects": { "cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))": [ { - "id": "getrandom 0.2.15", + "id": "getrandom 0.2.10", "target": "getrandom" } ], "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ] @@ -1408,7 +1408,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.5", + "id": "version_check 0.9.4", "target": "version_check" } ], @@ -1483,18 +1483,18 @@ "target": "cfg_if" }, { - "id": "getrandom 0.2.15", + "id": "getrandom 0.2.10", "target": "getrandom" }, { - "id": "zerocopy 0.7.35", + "id": "zerocopy 0.7.32", "target": "zerocopy" } ], "selects": { "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ] @@ -1513,7 +1513,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.5", + "id": "version_check 0.9.4", "target": "version_check" } ], @@ -1527,14 +1527,14 @@ ], "license_file": "LICENSE-APACHE" }, - "aho-corasick 1.1.3": { + "aho-corasick 1.1.2": { "name": "aho-corasick", - "version": "1.1.3", + "version": "1.1.2", "package_url": "https://github.com/BurntSushi/aho-corasick", "repository": { "Http": { - "url": "https://static.crates.io/crates/aho-corasick/1.1.3/download", - "sha256": "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" + "url": "https://static.crates.io/crates/aho-corasick/1.1.2/download", + "sha256": "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" } }, "targets": [ @@ -1566,14 +1566,14 @@ "deps": { "common": [ { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" } ], "selects": {} }, "edition": "2021", - "version": "1.1.3" + "version": "1.1.2" }, "license": "Unlicense OR MIT", "license_ids": [ @@ -1582,14 +1582,14 @@ ], "license_file": "LICENSE-MIT" }, - "aide 0.13.5": { + "aide 0.13.4": { "name": "aide", - "version": "0.13.5", + "version": "0.13.4", "package_url": "https://github.com/tamasfe/aide", "repository": { "Http": { - "url": "https://static.crates.io/crates/aide/0.13.5/download", - "sha256": "5678d2978845ddb4bd736a026f467dd652d831e9e6254b0e41b07f7ee7523309" + "url": "https://static.crates.io/crates/aide/0.13.4/download", + "sha256": "7b0e3b97a21e41ec5c19bfd9b4fc1f7086be104f8b988681230247ffc91cc8ed" } }, "targets": [ @@ -1638,11 +1638,11 @@ "target": "http" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "schemars 0.8.21", + "id": "schemars 0.8.16", "target": "schemars" }, { @@ -1650,11 +1650,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -1673,7 +1673,7 @@ "selects": {} }, "edition": "2021", - "version": "0.13.5" + "version": "0.13.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -1937,7 +1937,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -1998,14 +1998,14 @@ ], "license_file": null }, - "anstream 0.6.18": { + "anstream 0.6.15": { "name": "anstream", - "version": "0.6.18", + "version": "0.6.15", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstream/0.6.18/download", - "sha256": "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" + "url": "https://static.crates.io/crates/anstream/0.6.15/download", + "sha256": "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" } }, "targets": [ @@ -2038,19 +2038,19 @@ "deps": { "common": [ { - "id": "anstyle 1.0.10", + "id": "anstyle 1.0.8", "target": "anstyle" }, { - "id": "anstyle-parse 0.2.6", + "id": "anstyle-parse 0.2.2", "target": "anstyle_parse" }, { - "id": "anstyle-query 1.1.2", + "id": "anstyle-query 1.0.0", "target": "anstyle_query" }, { - "id": "colorchoice 1.0.3", + "id": "colorchoice 1.0.0", "target": "colorchoice" }, { @@ -2058,33 +2058,33 @@ "target": "is_terminal_polyfill" }, { - "id": "utf8parse 0.2.2", + "id": "utf8parse 0.2.1", "target": "utf8parse" } ], "selects": { "aarch64-pc-windows-msvc": [ { - "id": "anstyle-wincon 3.0.7", + "id": "anstyle-wincon 3.0.1", "target": "anstyle_wincon" } ], "i686-pc-windows-msvc": [ { - "id": "anstyle-wincon 3.0.7", + "id": "anstyle-wincon 3.0.1", "target": "anstyle_wincon" } ], "x86_64-pc-windows-msvc": [ { - "id": "anstyle-wincon 3.0.7", + "id": "anstyle-wincon 3.0.1", "target": "anstyle_wincon" } ] } }, "edition": "2021", - "version": "0.6.18" + "version": "0.6.15" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2093,14 +2093,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle 1.0.10": { + "anstyle 1.0.8": { "name": "anstyle", - "version": "1.0.10", + "version": "1.0.8", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle/1.0.10/download", - "sha256": "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" + "url": "https://static.crates.io/crates/anstyle/1.0.8/download", + "sha256": "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" } }, "targets": [ @@ -2130,7 +2130,7 @@ "selects": {} }, "edition": "2021", - "version": "1.0.10" + "version": "1.0.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2139,14 +2139,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle-parse 0.2.6": { + "anstyle-parse 0.2.2": { "name": "anstyle-parse", - "version": "0.2.6", + "version": "0.2.2", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle-parse/0.2.6/download", - "sha256": "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" + "url": "https://static.crates.io/crates/anstyle-parse/0.2.2/download", + "sha256": "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140" } }, "targets": [ @@ -2178,14 +2178,14 @@ "deps": { "common": [ { - "id": "utf8parse 0.2.2", + "id": "utf8parse 0.2.1", "target": "utf8parse" } ], "selects": {} }, "edition": "2021", - "version": "0.2.6" + "version": "0.2.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2194,14 +2194,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle-query 1.1.2": { + "anstyle-query 1.0.0": { "name": "anstyle-query", - "version": "1.1.2", - "package_url": "https://github.com/rust-cli/anstyle.git", + "version": "1.0.0", + "package_url": "https://github.com/rust-cli/anstyle", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle-query/1.1.2/download", - "sha256": "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" + "url": "https://static.crates.io/crates/anstyle-query/1.0.0/download", + "sha256": "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" } }, "targets": [ @@ -2228,14 +2228,14 @@ "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.48.0", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "1.1.2" + "version": "1.0.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2244,14 +2244,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle-wincon 3.0.7": { + "anstyle-wincon 3.0.1": { "name": "anstyle-wincon", - "version": "3.0.7", + "version": "3.0.1", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle-wincon/3.0.7/download", - "sha256": "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" + "url": "https://static.crates.io/crates/anstyle-wincon/3.0.1/download", + "sha256": "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" } }, "targets": [ @@ -2276,25 +2276,21 @@ "deps": { "common": [ { - "id": "anstyle 1.0.10", + "id": "anstyle 1.0.8", "target": "anstyle" } ], "selects": { "cfg(windows)": [ { - "id": "once_cell 1.20.2", - "target": "once_cell" - }, - { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.48.0", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "3.0.7" + "version": "3.0.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2303,14 +2299,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anyhow 1.0.95": { + "anyhow 1.0.93": { "name": "anyhow", - "version": "1.0.95", + "version": "1.0.93", "package_url": "https://github.com/dtolnay/anyhow", "repository": { "Http": { - "url": "https://static.crates.io/crates/anyhow/1.0.95/download", - "sha256": "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" + "url": "https://static.crates.io/crates/anyhow/1.0.93/download", + "sha256": "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775" } }, "targets": [ @@ -2354,14 +2350,14 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.0.95" + "version": "1.0.93" }, "build_script_attrs": { "compile_data_glob": [ @@ -2378,14 +2374,14 @@ ], "license_file": "LICENSE-APACHE" }, - "arbitrary 1.4.1": { + "arbitrary 1.3.2": { "name": "arbitrary", - "version": "1.4.1", + "version": "1.3.2", "package_url": "https://github.com/rust-fuzz/arbitrary/", "repository": { "Http": { - "url": "https://static.crates.io/crates/arbitrary/1.4.1/download", - "sha256": "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223" + "url": "https://static.crates.io/crates/arbitrary/1.3.2/download", + "sha256": "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" } }, "targets": [ @@ -2418,13 +2414,13 @@ "proc_macro_deps": { "common": [ { - "id": "derive_arbitrary 1.4.1", + "id": "derive_arbitrary 1.3.2", "target": "derive_arbitrary" } ], "selects": {} }, - "version": "1.4.1" + "version": "1.3.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2518,14 +2514,14 @@ ], "license_file": "LICENSE-APACHE" }, - "arrayvec 0.7.6": { + "arrayvec 0.7.4": { "name": "arrayvec", - "version": "0.7.6", + "version": "0.7.4", "package_url": "https://github.com/bluss/arrayvec", "repository": { "Http": { - "url": "https://static.crates.io/crates/arrayvec/0.7.6/download", - "sha256": "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" + "url": "https://static.crates.io/crates/arrayvec/0.7.4/download", + "sha256": "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" } }, "targets": [ @@ -2555,7 +2551,7 @@ "selects": {} }, "edition": "2018", - "version": "0.7.6" + "version": "0.7.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2682,7 +2678,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -2692,7 +2688,7 @@ "proc_macro_deps": { "common": [ { - "id": "askama_derive 0.12.5", + "id": "askama_derive 0.12.2", "target": "askama_derive" } ], @@ -2707,14 +2703,14 @@ ], "license_file": "LICENSE-APACHE" }, - "askama_derive 0.12.5": { + "askama_derive 0.12.2": { "name": "askama_derive", - "version": "0.12.5", + "version": "0.12.2", "package_url": "https://github.com/djc/askama", "repository": { "Http": { - "url": "https://static.crates.io/crates/askama_derive/0.12.5/download", - "sha256": "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83" + "url": "https://static.crates.io/crates/askama_derive/0.12.2/download", + "sha256": "9a0fc7dcf8bd4ead96b1d36b41df47c14beedf7b0301fc543d8f2384e66a2ec0" } }, "targets": [ @@ -2751,12 +2747,12 @@ "deps": { "common": [ { - "id": "askama_parser 0.2.1", + "id": "askama_parser 0.1.1", "target": "askama_parser", "alias": "parser" }, { - "id": "basic-toml 0.1.9", + "id": "basic-toml 0.1.7", "target": "basic_toml" }, { @@ -2764,15 +2760,15 @@ "target": "mime" }, { - "id": "mime_guess 2.0.5", + "id": "mime_guess 2.0.4", "target": "mime_guess" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -2780,14 +2776,14 @@ "target": "serde" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.12.5" + "version": "0.12.2" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -2841,14 +2837,14 @@ ], "license_file": "LICENSE-APACHE" }, - "askama_parser 0.2.1": { + "askama_parser 0.1.1": { "name": "askama_parser", - "version": "0.2.1", + "version": "0.1.1", "package_url": "https://github.com/djc/askama", "repository": { "Http": { - "url": "https://static.crates.io/crates/askama_parser/0.2.1/download", - "sha256": "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0" + "url": "https://static.crates.io/crates/askama_parser/0.1.1/download", + "sha256": "c268a96e01a4c47c8c5c2472aaa570707e006a875ea63e819f75474ceedaf7b4" } }, "targets": [ @@ -2880,23 +2876,23 @@ "selects": {} }, "edition": "2021", - "version": "0.2.1" + "version": "0.1.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": null }, - "asn1-rs 0.6.2": { + "asn1-rs 0.6.1": { "name": "asn1-rs", - "version": "0.6.2", + "version": "0.6.1", "package_url": "https://github.com/rusticata/asn1-rs.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/asn1-rs/0.6.2/download", - "sha256": "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" + "url": "https://static.crates.io/crates/asn1-rs/0.6.1/download", + "sha256": "22ad1373757efa0f70ec53939aabc7152e1591cb485208052993070ac8d2429d" } }, "targets": [ @@ -2942,11 +2938,11 @@ "target": "rusticata_macros" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -2956,7 +2952,7 @@ "proc_macro_deps": { "common": [ { - "id": "asn1-rs-derive 0.5.1", + "id": "asn1-rs-derive 0.5.0", "target": "asn1_rs_derive" }, { @@ -2964,29 +2960,29 @@ "target": "asn1_rs_impl" }, { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], "selects": {} }, - "version": "0.6.2" + "version": "0.6.1" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "asn1-rs-derive 0.5.1": { + "asn1-rs-derive 0.5.0": { "name": "asn1-rs-derive", - "version": "0.5.1", + "version": "0.5.0", "package_url": "https://github.com/rusticata/asn1-rs.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/asn1-rs-derive/0.5.1/download", - "sha256": "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" + "url": "https://static.crates.io/crates/asn1-rs-derive/0.5.0/download", + "sha256": "7378575ff571966e99a744addeff0bff98b8ada0dedf1956d59e634db95eaac1" } }, "targets": [ @@ -3011,15 +3007,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" }, { @@ -3030,14 +3026,14 @@ "selects": {} }, "edition": "2018", - "version": "0.5.1" + "version": "0.5.0" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": null }, "asn1-rs-impl 0.2.0": { "name": "asn1-rs-impl", @@ -3071,15 +3067,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -3131,7 +3127,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -3190,7 +3186,7 @@ "deps": { "common": [ { - "id": "anstyle 1.0.10", + "id": "anstyle 1.0.8", "target": "anstyle" }, { @@ -3198,7 +3194,7 @@ "target": "build_script_build" }, { - "id": "bstr 1.11.3", + "id": "bstr 1.8.0", "target": "bstr" }, { @@ -3206,15 +3202,15 @@ "target": "doc_comment" }, { - "id": "predicates 3.1.3", + "id": "predicates 3.1.2", "target": "predicates" }, { - "id": "predicates-core 1.0.9", + "id": "predicates-core 1.0.6", "target": "predicates_core" }, { - "id": "predicates-tree 1.0.12", + "id": "predicates-tree 1.0.9", "target": "predicates_tree" }, { @@ -3225,7 +3221,7 @@ "selects": { "cfg(any())": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] @@ -3387,7 +3383,7 @@ "target": "concurrent_queue" }, { - "id": "event-listener-strategy 0.5.3", + "id": "event-listener-strategy 0.5.2", "target": "event_listener_strategy" }, { @@ -3395,7 +3391,7 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], @@ -3411,14 +3407,14 @@ ], "license_file": "LICENSE-APACHE" }, - "async-compression 0.4.18": { + "async-compression 0.4.4": { "name": "async-compression", - "version": "0.4.18", + "version": "0.4.4", "package_url": "https://github.com/Nullus157/async-compression", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-compression/0.4.18/download", - "sha256": "df895a515f70646414f4b45c0b79082783b80552b373a68283012928df56f522" + "url": "https://static.crates.io/crates/async-compression/0.4.4/download", + "sha256": "f658e2baef915ba0f26f1f7c42bfb8e12f532a01f449a090ded75ae7a07e9ba2" } }, "targets": [ @@ -3456,11 +3452,11 @@ "deps": { "common": [ { - "id": "brotli 7.0.0", + "id": "brotli 3.4.0", "target": "brotli" }, { - "id": "flate2 1.0.35", + "id": "flate2 1.0.31", "target": "flate2" }, { @@ -3468,15 +3464,15 @@ "target": "futures_core" }, { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -3485,14 +3481,14 @@ "alias": "libzstd" }, { - "id": "zstd-safe 7.2.1", + "id": "zstd-safe 7.1.0", "target": "zstd_safe" } ], "selects": {} }, "edition": "2018", - "version": "0.4.18" + "version": "0.4.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -3533,7 +3529,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -3545,11 +3541,11 @@ "target": "http" }, { - "id": "httparse 1.9.5", + "id": "httparse 1.8.0", "target": "httparse" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" } ], @@ -3565,14 +3561,14 @@ ], "license_file": null }, - "async-io 2.4.0": { + "async-io 2.3.4": { "name": "async-io", - "version": "2.4.0", + "version": "2.3.4", "package_url": "https://github.com/smol-rs/async-io", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-io/2.4.0/download", - "sha256": "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059" + "url": "https://static.crates.io/crates/async-io/2.3.4/download", + "sha256": "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" } }, "targets": [ @@ -3597,7 +3593,7 @@ "deps": { "common": [ { - "id": "async-lock 3.4.0", + "id": "async-lock 3.3.0", "target": "async_lock" }, { @@ -3613,19 +3609,19 @@ "target": "futures_io" }, { - "id": "futures-lite 2.6.0", + "id": "futures-lite 2.0.0", "target": "futures_lite" }, { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" }, { - "id": "polling 3.7.4", + "id": "polling 3.7.3", "target": "polling" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" }, { @@ -3647,7 +3643,7 @@ } }, "edition": "2021", - "version": "2.4.0" + "version": "2.3.4" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -3656,14 +3652,14 @@ ], "license_file": "LICENSE-APACHE" }, - "async-lock 3.4.0": { + "async-lock 3.3.0": { "name": "async-lock", - "version": "3.4.0", + "version": "3.3.0", "package_url": "https://github.com/smol-rs/async-lock", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-lock/3.4.0/download", - "sha256": "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" + "url": "https://static.crates.io/crates/async-lock/3.3.0/download", + "sha256": "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" } }, "targets": [ @@ -3695,22 +3691,22 @@ "deps": { "common": [ { - "id": "event-listener 5.4.0", + "id": "event-listener 4.0.3", "target": "event_listener" }, { - "id": "event-listener-strategy 0.5.3", + "id": "event-listener-strategy 0.4.0", "target": "event_listener_strategy" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], "selects": {} }, "edition": "2021", - "version": "3.4.0" + "version": "3.3.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -3751,7 +3747,7 @@ "deps": { "common": [ { - "id": "async-io 2.4.0", + "id": "async-io 2.3.4", "target": "async_io" }, { @@ -3759,7 +3755,7 @@ "target": "blocking" }, { - "id": "futures-lite 2.6.0", + "id": "futures-lite 2.0.0", "target": "futures_lite" } ], @@ -3775,14 +3771,14 @@ ], "license_file": "LICENSE-APACHE" }, - "async-recursion 1.1.1": { + "async-recursion 1.0.5": { "name": "async-recursion", - "version": "1.1.1", + "version": "1.0.5", "package_url": "https://github.com/dcchut/async-recursion", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-recursion/1.1.1/download", - "sha256": "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" + "url": "https://static.crates.io/crates/async-recursion/1.0.5/download", + "sha256": "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" } }, "targets": [ @@ -3807,22 +3803,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "1.1.1" + "version": "1.0.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -3874,11 +3870,11 @@ "target": "futures" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.3", "target": "pin_project" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -3926,11 +3922,11 @@ "deps": { "common": [ { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -3982,7 +3978,7 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], @@ -4038,15 +4034,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -4107,14 +4103,14 @@ ], "license_file": "LICENSE-APACHE" }, - "async-trait 0.1.85": { + "async-trait 0.1.83": { "name": "async-trait", - "version": "0.1.85", + "version": "0.1.83", "package_url": "https://github.com/dtolnay/async-trait", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-trait/0.1.85/download", - "sha256": "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056" + "url": "https://static.crates.io/crates/async-trait/0.1.83/download", + "sha256": "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" } }, "targets": [ @@ -4139,22 +4135,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.1.85" + "version": "0.1.83" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4270,23 +4266,23 @@ "target": "http" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -4381,7 +4377,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -4402,14 +4398,14 @@ ], "license_file": "LICENSE" }, - "auto_impl 1.2.1": { + "auto_impl 1.1.0": { "name": "auto_impl", - "version": "1.2.1", + "version": "1.1.0", "package_url": "https://github.com/auto-impl-rs/auto_impl/", "repository": { "Http": { - "url": "https://static.crates.io/crates/auto_impl/1.2.1/download", - "sha256": "e12882f59de5360c748c4cbf569a042d5fb0eb515f7bea9c1f470b47f6ffbd73" + "url": "https://static.crates.io/crates/auto_impl/1.1.0/download", + "sha256": "fee3da8ef1276b0bee5dd1c7258010d8fffd31801447323115a25560e1327b89" } }, "targets": [ @@ -4434,22 +4430,26 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro-error 1.0.4", + "target": "proc_macro_error" + }, + { + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 1.0.109", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.2.1" + "version": "1.1.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4490,7 +4490,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -4506,14 +4506,14 @@ ], "license_file": "LICENSE-APACHE" }, - "autocfg 1.4.0": { + "autocfg 1.1.0": { "name": "autocfg", - "version": "1.4.0", + "version": "1.1.0", "package_url": "https://github.com/cuviper/autocfg", "repository": { "Http": { - "url": "https://static.crates.io/crates/autocfg/1.4.0/download", - "sha256": "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" + "url": "https://static.crates.io/crates/autocfg/1.1.0/download", + "sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" } }, "targets": [ @@ -4536,7 +4536,7 @@ "**" ], "edition": "2015", - "version": "1.4.0" + "version": "1.1.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -4617,7 +4617,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -4625,7 +4625,7 @@ "target": "hyper_util" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { @@ -4633,7 +4633,7 @@ "target": "matchit" }, { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" }, { @@ -4645,7 +4645,7 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -4653,11 +4653,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "serde_path_to_error 0.1.16", + "id": "serde_path_to_error 0.1.14", "target": "serde_path_to_error" }, { @@ -4665,15 +4665,15 @@ "target": "serde_urlencoded" }, { - "id": "sync_wrapper 1.0.2", + "id": "sync_wrapper 1.0.1", "target": "sync_wrapper" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.1", "target": "tower" }, { @@ -4695,7 +4695,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" }, { @@ -4703,7 +4703,7 @@ "target": "axum_macros" }, { - "id": "rustversion 1.0.19", + "id": "rustversion 1.0.14", "target": "rustversion" } ], @@ -4779,11 +4779,11 @@ "target": "mime" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "sync_wrapper 1.0.2", + "id": "sync_wrapper 1.0.1", "target": "sync_wrapper" }, { @@ -4805,11 +4805,11 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" }, { - "id": "rustversion 1.0.19", + "id": "rustversion 1.0.14", "target": "rustversion" } ], @@ -4876,7 +4876,7 @@ "target": "bytes" }, { - "id": "fastrand 2.3.0", + "id": "fastrand 2.2.0", "target": "fastrand" }, { @@ -4908,7 +4908,7 @@ "target": "multer" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -4916,7 +4916,7 @@ "target": "serde" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.1", "target": "tower" }, { @@ -4977,15 +4977,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -5066,7 +5066,7 @@ "target": "opentelemetry_sdk" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -5156,7 +5156,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -5164,7 +5164,7 @@ "target": "hyper_util" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -5176,7 +5176,7 @@ "target": "rustls_pemfile" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -5250,15 +5250,15 @@ "target": "futures_core" }, { - "id": "getrandom 0.2.15", + "id": "getrandom 0.2.10", "target": "getrandom" }, { - "id": "instant 0.1.13", + "id": "instant 0.1.12", "target": "instant" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -5266,7 +5266,7 @@ "target": "rand" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio", "alias": "tokio_1" } @@ -5283,14 +5283,14 @@ ], "license_file": "LICENSE-APACHE" }, - "backon 0.4.4": { + "backon 0.4.1": { "name": "backon", - "version": "0.4.4", - "package_url": "https://github.com/Xuanwo/backon", + "version": "0.4.1", + "package_url": null, "repository": { "Http": { - "url": "https://static.crates.io/crates/backon/0.4.4/download", - "sha256": "d67782c3f868daa71d3533538e98a8e13713231969def7536e8039606fc46bf0" + "url": "https://static.crates.io/crates/backon/0.4.1/download", + "sha256": "0c1a6197b2120bb2185a267f6515038558b019e92b832bb0320e96d66268dcf9" } }, "targets": [ @@ -5315,7 +5315,7 @@ "deps": { "common": [ { - "id": "fastrand 2.3.0", + "id": "fastrand 1.9.0", "target": "fastrand" }, { @@ -5323,18 +5323,18 @@ "target": "futures_core" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.3", "target": "pin_project" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "0.4.4" + "version": "0.4.1" }, "license": "Apache-2.0", "license_ids": [ @@ -5342,14 +5342,14 @@ ], "license_file": "LICENSE" }, - "backtrace 0.3.74": { + "backtrace 0.3.69": { "name": "backtrace", - "version": "0.3.74", + "version": "0.3.69", "package_url": "https://github.com/rust-lang/backtrace-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/backtrace/0.3.74/download", - "sha256": "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" + "url": "https://static.crates.io/crates/backtrace/0.3.69/download", + "sha256": "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" } }, "targets": [ @@ -5364,6 +5364,18 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], "library_target_name": "backtrace", @@ -5380,44 +5392,59 @@ }, "deps": { "common": [ + { + "id": "backtrace 0.3.69", + "target": "build_script_build" + }, { "id": "cfg-if 1.0.0", "target": "cfg_if" }, { - "id": "rustc-demangle 0.1.24", + "id": "rustc-demangle 0.1.23", "target": "rustc_demangle" } ], "selects": { "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))": [ { - "id": "addr2line 0.24.2", + "id": "addr2line 0.21.0", "target": "addr2line" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "miniz_oxide 0.8.3", + "id": "miniz_oxide 0.7.1", "target": "miniz_oxide" }, { - "id": "object 0.36.7", + "id": "object 0.32.1", "target": "object" } - ], - "cfg(windows)": [ - { - "id": "windows-targets 0.52.6", - "target": "windows_targets" - } ] } }, - "edition": "2021", - "version": "0.3.74" + "edition": "2018", + "version": "0.3.69" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "cc 1.0.83", + "target": "cc" + } + ], + "selects": {} + } }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -5654,14 +5681,14 @@ ], "license_file": "LICENSE-APACHE" }, - "base64 0.21.7": { + "base64 0.21.4": { "name": "base64", - "version": "0.21.7", + "version": "0.21.4", "package_url": "https://github.com/marshallpierce/rust-base64", "repository": { "Http": { - "url": "https://static.crates.io/crates/base64/0.21.7/download", - "sha256": "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" + "url": "https://static.crates.io/crates/base64/0.21.4/download", + "sha256": "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" } }, "targets": [ @@ -5692,7 +5719,7 @@ "selects": {} }, "edition": "2018", - "version": "0.21.7" + "version": "0.21.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -5748,14 +5775,14 @@ ], "license_file": "LICENSE-APACHE" }, - "base64-url 2.0.2": { + "base64-url 2.0.0": { "name": "base64-url", - "version": "2.0.2", + "version": "2.0.0", "package_url": "https://github.com/magiclen/base64-url", "repository": { "Http": { - "url": "https://static.crates.io/crates/base64-url/2.0.2/download", - "sha256": "fb9fb9fb058cc3063b5fc88d9a21eefa2735871498a04e1650da76ed511c8569" + "url": "https://static.crates.io/crates/base64-url/2.0.0/download", + "sha256": "9c5b0a88aa36e9f095ee2e2b13fb8c5e4313e022783aedacc123328c0084916d" } }, "targets": [ @@ -5787,14 +5814,14 @@ "deps": { "common": [ { - "id": "base64 0.21.7", + "id": "base64 0.21.4", "target": "base64" } ], "selects": {} }, "edition": "2021", - "version": "2.0.2" + "version": "2.0.0" }, "license": "MIT", "license_ids": [ @@ -5847,14 +5874,14 @@ ], "license_file": "LICENSE-APACHE" }, - "basic-toml 0.1.9": { + "basic-toml 0.1.7": { "name": "basic-toml", - "version": "0.1.9", + "version": "0.1.7", "package_url": "https://github.com/dtolnay/basic-toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/basic-toml/0.1.9/download", - "sha256": "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8" + "url": "https://static.crates.io/crates/basic-toml/0.1.7/download", + "sha256": "2f2139706359229bfa8f19142ac1155b4b80beafb7a60471ac5dd109d4a19778" } }, "targets": [ @@ -5886,7 +5913,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.9" + "version": "0.1.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -6203,11 +6230,11 @@ "target": "cexpr" }, { - "id": "clang-sys 1.8.1", + "id": "clang-sys 1.6.1", "target": "clang_sys" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -6219,19 +6246,19 @@ "target": "peeking_take_while" }, { - "id": "prettyplease 0.2.29", + "id": "prettyplease 0.2.15", "target": "prettyplease" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -6243,7 +6270,7 @@ "target": "shlex" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -6262,11 +6289,11 @@ "link_deps": { "common": [ { - "id": "clang-sys 1.8.1", + "id": "clang-sys 1.6.1", "target": "clang_sys" }, { - "id": "prettyplease 0.2.29", + "id": "prettyplease 0.2.15", "target": "prettyplease" } ], @@ -6279,14 +6306,14 @@ ], "license_file": "LICENSE" }, - "bindgen 0.69.5": { + "bindgen 0.69.4": { "name": "bindgen", - "version": "0.69.5", + "version": "0.69.4", "package_url": "https://github.com/rust-lang/rust-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/bindgen/0.69.5/download", - "sha256": "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" + "url": "https://static.crates.io/crates/bindgen/0.69.4/download", + "sha256": "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" } }, "targets": [ @@ -6329,11 +6356,11 @@ "deps": { "common": [ { - "id": "bindgen 0.69.5", + "id": "bindgen 0.69.4", "target": "build_script_build" }, { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -6341,15 +6368,15 @@ "target": "cexpr" }, { - "id": "clang-sys 1.8.1", + "id": "clang-sys 1.6.1", "target": "clang_sys" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.12.0", "target": "itertools" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -6357,15 +6384,15 @@ "target": "lazycell" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -6377,14 +6404,14 @@ "target": "shlex" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.69.5" + "version": "0.69.4" }, "build_script_attrs": { "compile_data_glob": [ @@ -6396,7 +6423,7 @@ "link_deps": { "common": [ { - "id": "clang-sys 1.8.1", + "id": "clang-sys 1.6.1", "target": "clang_sys" } ], @@ -6450,7 +6477,7 @@ "deps": { "common": [ { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" } ], @@ -6464,7 +6491,7 @@ "target": "binread_derive" }, { - "id": "rustversion 1.0.19", + "id": "rustversion 1.0.14", "target": "rustversion" } ], @@ -6516,15 +6543,15 @@ "deps": { "common": [ { - "id": "either 1.13.0", + "id": "either 1.9.0", "target": "either" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -6543,14 +6570,14 @@ ], "license_file": null }, - "bip32 0.5.2": { + "bip32 0.5.1": { "name": "bip32", - "version": "0.5.2", + "version": "0.5.1", "package_url": "https://github.com/iqlusioninc/crates/tree/main/bip32", "repository": { "Http": { - "url": "https://static.crates.io/crates/bip32/0.5.2/download", - "sha256": "aa13fae8b6255872fd86f7faf4b41168661d7d78609f7bfe6771b85c6739a15b" + "url": "https://static.crates.io/crates/bip32/0.5.1/download", + "sha256": "7e141fb0f8be1c7b45887af94c88b182472b57c96b56773250ae00cd6a14a164" } }, "targets": [ @@ -6589,7 +6616,7 @@ "deps": { "common": [ { - "id": "bs58 0.5.1", + "id": "bs58 0.5.0", "target": "bs58" }, { @@ -6601,7 +6628,7 @@ "target": "k256" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -6632,7 +6659,7 @@ "selects": {} }, "edition": "2021", - "version": "0.5.2" + "version": "0.5.1" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -6666,54 +6693,6 @@ } ], "library_target_name": "bit_set", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bit-vec 0.6.3", - "target": "bit_vec" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.5.3" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "bit-set 0.8.0": { - "name": "bit-set", - "version": "0.8.0", - "package_url": "https://github.com/contain-rs/bit-set", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/bit-set/0.8.0/download", - "sha256": "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" - } - }, - "targets": [ - { - "Library": { - "crate_name": "bit_set", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "bit_set", "common_attrs": { "compile_data_glob": [ "**" @@ -6728,16 +6707,16 @@ "deps": { "common": [ { - "id": "bit-vec 0.8.0", + "id": "bit-vec 0.6.3", "target": "bit_vec" } ], "selects": {} }, "edition": "2015", - "version": "0.8.0" + "version": "0.5.3" }, - "license": "Apache-2.0 OR MIT", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -6790,52 +6769,6 @@ ], "license_file": "LICENSE-APACHE" }, - "bit-vec 0.8.0": { - "name": "bit-vec", - "version": "0.8.0", - "package_url": "https://github.com/contain-rs/bit-vec", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/bit-vec/0.8.0/download", - "sha256": "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" - } - }, - "targets": [ - { - "Library": { - "crate_name": "bit_vec", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "bit_vec", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2015", - "version": "0.8.0" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "bitcoin 0.28.2": { "name": "bitcoin", "version": "0.28.2", @@ -6927,14 +6860,14 @@ ], "license_file": "LICENSE" }, - "bitcoin 0.30.2": { + "bitcoin 0.30.1": { "name": "bitcoin", - "version": "0.30.2", + "version": "0.30.1", "package_url": "https://github.com/rust-bitcoin/rust-bitcoin/", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitcoin/0.30.2/download", - "sha256": "1945a5048598e4189e239d3f809b19bdad4845c4b2ba400d304d2dcf26d2c462" + "url": "https://static.crates.io/crates/bitcoin/0.30.1/download", + "sha256": "4e99ff7289b20a7385f66a0feda78af2fc119d28fb56aea8886a9cd0a4abdd75" } }, "targets": [ @@ -6986,7 +6919,7 @@ "target": "bech32" }, { - "id": "bitcoin 0.30.2", + "id": "bitcoin 0.30.1", "target": "build_script_build" }, { @@ -7036,7 +6969,7 @@ ], "selects": {} }, - "version": "0.30.2" + "version": "0.30.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -7052,14 +6985,14 @@ ], "license_file": null }, - "bitcoin 0.32.5": { + "bitcoin 0.32.2": { "name": "bitcoin", - "version": "0.32.5", + "version": "0.32.2", "package_url": "https://github.com/rust-bitcoin/rust-bitcoin/", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitcoin/0.32.5/download", - "sha256": "ce6bc65742dea50536e35ad42492b234c27904a27f0abdcbce605015cb4ea026" + "url": "https://static.crates.io/crates/bitcoin/0.32.2/download", + "sha256": "ea507acc1cd80fc084ace38544bbcf7ced7c2aa65b653b102de0ce718df668f6" } }, "targets": [ @@ -7105,7 +7038,7 @@ "target": "bech32" }, { - "id": "bitcoin 0.32.5", + "id": "bitcoin 0.32.2", "target": "build_script_build" }, { @@ -7114,7 +7047,7 @@ "alias": "internals" }, { - "id": "bitcoin-io 0.1.3", + "id": "bitcoin-io 0.1.2", "target": "bitcoin_io", "alias": "io" }, @@ -7138,7 +7071,7 @@ "target": "hex_lit" }, { - "id": "secp256k1 0.29.1", + "id": "secp256k1 0.29.0", "target": "secp256k1" } ], @@ -7166,7 +7099,7 @@ ], "selects": {} }, - "version": "0.32.5" + "version": "0.32.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -7256,14 +7189,14 @@ ], "license_file": null }, - "bitcoin-io 0.1.3": { + "bitcoin-io 0.1.2": { "name": "bitcoin-io", - "version": "0.1.3", + "version": "0.1.2", "package_url": "https://github.com/rust-bitcoin/rust-bitcoin", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitcoin-io/0.1.3/download", - "sha256": "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf" + "url": "https://static.crates.io/crates/bitcoin-io/0.1.2/download", + "sha256": "340e09e8399c7bd8912f495af6aa58bea0c9214773417ffaa8f6460f93aaee56" } }, "targets": [ @@ -7278,18 +7211,6 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], "library_target_name": "bitcoin_io", @@ -7303,25 +7224,8 @@ ], "selects": {} }, - "deps": { - "common": [ - { - "id": "bitcoin-io 0.1.3", - "target": "build_script_build" - } - ], - "selects": {} - }, "edition": "2021", - "version": "0.1.3" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] + "version": "0.1.2" }, "license": "CC0-1.0", "license_ids": [ @@ -7612,7 +7516,7 @@ "deps": { "common": [ { - "id": "bitcoin-io 0.1.3", + "id": "bitcoin-io 0.1.2", "target": "bitcoin_io" }, { @@ -7672,7 +7576,7 @@ "target": "jsonrpc" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -7680,7 +7584,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -7735,7 +7639,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -7794,7 +7698,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -7807,11 +7711,11 @@ "alias": "bitcoincore_rpc" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "tempfile 3.15.0", + "id": "tempfile 3.12.0", "target": "tempfile" }, { @@ -7834,7 +7738,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" } ], @@ -7892,14 +7796,14 @@ ], "license_file": "LICENSE-APACHE" }, - "bitflags 2.8.0": { + "bitflags 2.6.0": { "name": "bitflags", - "version": "2.8.0", + "version": "2.6.0", "package_url": "https://github.com/bitflags/bitflags", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitflags/2.8.0/download", - "sha256": "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" + "url": "https://static.crates.io/crates/bitflags/2.6.0/download", + "sha256": "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" } }, "targets": [ @@ -7928,7 +7832,7 @@ "selects": {} }, "edition": "2021", - "version": "2.8.0" + "version": "2.6.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8136,7 +8040,7 @@ "target": "futures_io" }, { - "id": "futures-lite 2.6.0", + "id": "futures-lite 2.0.0", "target": "futures_lite" }, { @@ -8156,14 +8060,14 @@ ], "license_file": "LICENSE-APACHE" }, - "borsh 1.5.4": { + "borsh 1.5.2": { "name": "borsh", - "version": "1.5.4", + "version": "1.5.2", "package_url": "https://github.com/near/borsh-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/borsh/1.5.4/download", - "sha256": "9fb65153674e51d3a42c8f27b05b9508cea85edfaade8aa46bc8fc18cecdfef3" + "url": "https://static.crates.io/crates/borsh/1.5.2/download", + "sha256": "f5327f6c99920069d1fe374aa743be1af0031dea9f250852cdf1ae6a0861ee24" } }, "targets": [ @@ -8200,14 +8104,14 @@ "deps": { "common": [ { - "id": "borsh 1.5.4", + "id": "borsh 1.5.2", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.5.4" + "version": "1.5.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -8233,14 +8137,14 @@ ], "license_file": null }, - "borsh-derive 1.5.4": { + "borsh-derive 1.5.2": { "name": "borsh-derive", - "version": "1.5.4", + "version": "1.5.2", "package_url": "https://github.com/near/borsh-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/borsh-derive/1.5.4/download", - "sha256": "a396e17ad94059c650db3d253bb6e25927f1eb462eede7e7a153bb6e75dce0a7" + "url": "https://static.crates.io/crates/borsh-derive/1.5.2/download", + "sha256": "10aedd8f1a81a8aafbfde924b0e3061cd6fedd6f6bbcfc6a76e6fd426d7bfe26" } }, "targets": [ @@ -8265,7 +8169,7 @@ "deps": { "common": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -8273,22 +8177,22 @@ "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "1.5.4" + "version": "1.5.2" }, "license": "Apache-2.0", "license_ids": [ @@ -8296,6 +8200,69 @@ ], "license_file": null }, + "brotli 3.4.0": { + "name": "brotli", + "version": "3.4.0", + "package_url": "https://github.com/dropbox/rust-brotli", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/brotli/3.4.0/download", + "sha256": "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f" + } + }, + "targets": [ + { + "Library": { + "crate_name": "brotli", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "brotli", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc-stdlib", + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "alloc-no-stdlib 2.0.4", + "target": "alloc_no_stdlib" + }, + { + "id": "alloc-stdlib 0.2.2", + "target": "alloc_stdlib" + }, + { + "id": "brotli-decompressor 2.5.0", + "target": "brotli_decompressor" + } + ], + "selects": {} + }, + "edition": "2015", + "version": "3.4.0" + }, + "license": "BSD-3-Clause/MIT", + "license_ids": [ + "BSD-3-Clause", + "MIT" + ], + "license_file": "LICENSE" + }, "brotli 6.0.0": { "name": "brotli", "version": "6.0.0", @@ -8392,7 +8359,6 @@ "crate_features": { "common": [ "alloc-stdlib", - "default", "std" ], "selects": {} @@ -8424,6 +8390,65 @@ ], "license_file": "LICENSE.BSD-3-Clause" }, + "brotli-decompressor 2.5.0": { + "name": "brotli-decompressor", + "version": "2.5.0", + "package_url": "https://github.com/dropbox/rust-brotli-decompressor", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/brotli-decompressor/2.5.0/download", + "sha256": "da74e2b81409b1b743f8f0c62cc6254afefb8b8e50bbfe3735550f7aeefa3448" + } + }, + "targets": [ + { + "Library": { + "crate_name": "brotli_decompressor", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "brotli_decompressor", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc-stdlib", + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "alloc-no-stdlib 2.0.4", + "target": "alloc_no_stdlib" + }, + { + "id": "alloc-stdlib 0.2.2", + "target": "alloc_stdlib" + } + ], + "selects": {} + }, + "edition": "2015", + "version": "2.5.0" + }, + "license": "BSD-3-Clause/MIT", + "license_ids": [ + "BSD-3-Clause", + "MIT" + ], + "license_file": "LICENSE" + }, "brotli-decompressor 4.0.1": { "name": "brotli-decompressor", "version": "4.0.1", @@ -8484,14 +8509,14 @@ ], "license_file": "LICENSE" }, - "bs58 0.5.1": { + "bs58 0.5.0": { "name": "bs58", - "version": "0.5.1", + "version": "0.5.0", "package_url": "https://github.com/Nullus157/bs58-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/bs58/0.5.1/download", - "sha256": "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" + "url": "https://static.crates.io/crates/bs58/0.5.0/download", + "sha256": "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896" } }, "targets": [ @@ -8533,7 +8558,7 @@ "selects": {} }, "edition": "2021", - "version": "0.5.1" + "version": "0.5.0" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -8542,14 +8567,14 @@ ], "license_file": "LICENSE-APACHE" }, - "bstr 1.11.3": { + "bstr 1.8.0": { "name": "bstr", - "version": "1.11.3", + "version": "1.8.0", "package_url": "https://github.com/BurntSushi/bstr", "repository": { "Http": { - "url": "https://static.crates.io/crates/bstr/1.11.3/download", - "sha256": "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0" + "url": "https://static.crates.io/crates/bstr/1.8.0/download", + "sha256": "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c" } }, "targets": [ @@ -8583,18 +8608,18 @@ "deps": { "common": [ { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" }, { - "id": "regex-automata 0.4.9", + "id": "regex-automata 0.4.8", "target": "regex_automata" } ], "selects": {} }, "edition": "2021", - "version": "1.11.3" + "version": "1.8.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8651,7 +8676,7 @@ "target": "build_info_common" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" } ], @@ -8715,7 +8740,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -8735,23 +8760,23 @@ "target": "cargo_metadata" }, { - "id": "glob 0.3.2", + "id": "glob 0.3.1", "target": "glob" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "pretty_assertions 1.4.1", + "id": "pretty_assertions 1.4.0", "target": "pretty_assertions" }, { - "id": "rustc_version 0.4.1", + "id": "rustc_version 0.4.0", "target": "rustc_version" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -8814,7 +8839,7 @@ "deps": { "common": [ { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -8828,7 +8853,7 @@ "proc_macro_deps": { "common": [ { - "id": "derive_more 0.99.18", + "id": "derive_more 0.99.17", "target": "derive_more" } ], @@ -8885,7 +8910,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -8913,15 +8938,15 @@ "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -9009,14 +9034,14 @@ ], "license_file": "LICENSE-APACHE" }, - "by_address 1.2.1": { + "by_address 1.1.0": { "name": "by_address", - "version": "1.2.1", + "version": "1.1.0", "package_url": "https://github.com/mbrubeck/by_address", "repository": { "Http": { - "url": "https://static.crates.io/crates/by_address/1.2.1/download", - "sha256": "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06" + "url": "https://static.crates.io/crates/by_address/1.1.0/download", + "sha256": "bf8dba2868114ed769a1f2590fc9ae5eb331175b44313b6c9b922f8f7ca813d0" } }, "targets": [ @@ -9038,10 +9063,10 @@ "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "1.2.1" + "edition": "2018", + "version": "1.1.0" }, - "license": "MIT OR Apache-2.0", + "license": "MIT / Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -9138,7 +9163,7 @@ "target": "serde" }, { - "id": "utf8-width 0.1.7", + "id": "utf8-width 0.1.6", "target": "utf8_width" } ], @@ -9153,14 +9178,14 @@ ], "license_file": "LICENSE" }, - "bytecheck 0.6.12": { + "bytecheck 0.6.11": { "name": "bytecheck", - "version": "0.6.12", + "version": "0.6.11", "package_url": "https://github.com/djkoloski/bytecheck", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytecheck/0.6.12/download", - "sha256": "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" + "url": "https://static.crates.io/crates/bytecheck/0.6.11/download", + "sha256": "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627" } }, "targets": [ @@ -9197,7 +9222,7 @@ "deps": { "common": [ { - "id": "bytecheck 0.6.12", + "id": "bytecheck 0.6.11", "target": "build_script_build" }, { @@ -9211,13 +9236,13 @@ "proc_macro_deps": { "common": [ { - "id": "bytecheck_derive 0.6.12", + "id": "bytecheck_derive 0.6.11", "target": "bytecheck_derive" } ], "selects": {} }, - "version": "0.6.12" + "version": "0.6.11" }, "build_script_attrs": { "compile_data_glob": [ @@ -9233,14 +9258,14 @@ ], "license_file": "LICENSE" }, - "bytecheck_derive 0.6.12": { + "bytecheck_derive 0.6.11": { "name": "bytecheck_derive", - "version": "0.6.12", + "version": "0.6.11", "package_url": "https://github.com/djkoloski/bytecheck", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytecheck_derive/0.6.12/download", - "sha256": "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" + "url": "https://static.crates.io/crates/bytecheck_derive/0.6.11/download", + "sha256": "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61" } }, "targets": [ @@ -9265,11 +9290,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -9280,7 +9305,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.12" + "version": "0.6.11" }, "license": "MIT", "license_ids": [ @@ -9288,14 +9313,14 @@ ], "license_file": "LICENSE" }, - "bytemuck 1.21.0": { + "bytemuck 1.14.0": { "name": "bytemuck", - "version": "1.21.0", + "version": "1.14.0", "package_url": "https://github.com/Lokathor/bytemuck", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytemuck/1.21.0/download", - "sha256": "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3" + "url": "https://static.crates.io/crates/bytemuck/1.14.0/download", + "sha256": "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" } }, "targets": [ @@ -9318,7 +9343,7 @@ "**" ], "edition": "2018", - "version": "1.21.0" + "version": "1.14.0" }, "license": "Zlib OR Apache-2.0 OR MIT", "license_ids": [ @@ -9474,14 +9499,14 @@ ], "license_file": "LICENSE" }, - "bytestring 1.4.0": { + "bytestring 1.3.0": { "name": "bytestring", - "version": "1.4.0", - "package_url": "https://github.com/actix/actix-net", + "version": "1.3.0", + "package_url": "https://github.com/actix/actix-net.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytestring/1.4.0/download", - "sha256": "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f" + "url": "https://static.crates.io/crates/bytestring/1.3.0/download", + "sha256": "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae" } }, "targets": [ @@ -9512,8 +9537,8 @@ ], "selects": {} }, - "edition": "2021", - "version": "1.4.0" + "edition": "2018", + "version": "1.3.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -9570,7 +9595,7 @@ "target": "build_script_build" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -9589,11 +9614,11 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" } ], @@ -9647,14 +9672,14 @@ ], "license_file": null }, - "cached 0.49.3": { + "cached 0.49.2": { "name": "cached", - "version": "0.49.3", + "version": "0.49.2", "package_url": "https://github.com/jaemk/cached", "repository": { "Http": { - "url": "https://static.crates.io/crates/cached/0.49.3/download", - "sha256": "8e8e463fceca5674287f32d252fb1d94083758b8709c160efae66d263e5f4eba" + "url": "https://static.crates.io/crates/cached/0.49.2/download", + "sha256": "f251fd1e72720ca07bf5d8e310f54a193fd053479a1f6342c6663ee4fa01cf96" } }, "targets": [ @@ -9683,22 +9708,22 @@ "target": "hashbrown" }, { - "id": "instant 0.1.13", + "id": "instant 0.1.12", "target": "instant" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], "selects": {} }, "edition": "2018", - "version": "0.49.3" + "version": "0.49.2" }, "license": "MIT", "license_ids": [ @@ -9752,15 +9777,15 @@ "target": "hashbrown" }, { - "id": "instant 0.1.13", + "id": "instant 0.1.12", "target": "instant" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -9829,11 +9854,11 @@ "target": "hashbrown" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -9897,15 +9922,15 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -9958,14 +9983,14 @@ ], "license_file": "LICENSE" }, - "camino 1.1.9": { + "camino 1.1.6": { "name": "camino", - "version": "1.1.9", + "version": "1.1.6", "package_url": "https://github.com/camino-rs/camino", "repository": { "Http": { - "url": "https://static.crates.io/crates/camino/1.1.9/download", - "sha256": "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" + "url": "https://static.crates.io/crates/camino/1.1.6/download", + "sha256": "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" } }, "targets": [ @@ -10009,7 +10034,7 @@ "deps": { "common": [ { - "id": "camino 1.1.9", + "id": "camino 1.1.6", "target": "build_script_build" }, { @@ -10020,7 +10045,7 @@ "selects": {} }, "edition": "2018", - "version": "1.1.9" + "version": "1.1.6" }, "build_script_attrs": { "compile_data_glob": [ @@ -10085,19 +10110,19 @@ "target": "canbench_rs" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "clap 4.5.26", + "id": "clap 4.5.20", "target": "clap" }, { - "id": "colored 2.2.0", + "id": "colored 2.0.4", "target": "colored" }, { - "id": "flate2 1.0.35", + "id": "flate2 1.0.31", "target": "flate2" }, { @@ -10113,7 +10138,7 @@ "target": "reqwest" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -10129,7 +10154,7 @@ "target": "sha256" }, { - "id": "tempfile 3.15.0", + "id": "tempfile 3.12.0", "target": "tempfile" }, { @@ -10180,7 +10205,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -10244,11 +10269,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -10267,14 +10292,14 @@ ], "license_file": null }, - "candid 0.10.12": { + "candid 0.10.10": { "name": "candid", - "version": "0.10.12", + "version": "0.10.10", "package_url": "https://github.com/dfinity/candid", "repository": { "Http": { - "url": "https://static.crates.io/crates/candid/0.10.12/download", - "sha256": "51e129c4051c57daf943586e01ef72faae48b04a8f692d5f646febf17a264c38" + "url": "https://static.crates.io/crates/candid/0.10.10/download", + "sha256": "6c30ee7f886f296b6422c0ff017e89dd4f831521dfdcc76f3f71aae1ce817222" } }, "targets": [ @@ -10310,7 +10335,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -10354,14 +10379,14 @@ "target": "serde_bytes" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], "selects": { "cfg(not(target_arch = \"wasm32\"))": [ { - "id": "stacker 0.1.17", + "id": "stacker 0.1.15", "target": "stacker" } ] @@ -10402,7 +10427,7 @@ ], "selects": {} }, - "version": "0.10.12" + "version": "0.10.10" }, "license": "Apache-2.0", "license_ids": [ @@ -10442,19 +10467,19 @@ "deps": { "common": [ { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -10469,14 +10494,14 @@ ], "license_file": "LICENSE" }, - "candid_parser 0.1.4": { + "candid_parser 0.1.2": { "name": "candid_parser", - "version": "0.1.4", + "version": "0.1.2", "package_url": "https://github.com/dfinity/candid", "repository": { "Http": { - "url": "https://static.crates.io/crates/candid_parser/0.1.4/download", - "sha256": "48a3da76f989cd350b7342c64c6c6008341bb6186f6832ef04e56dc50ba0fd76" + "url": "https://static.crates.io/crates/candid_parser/0.1.2/download", + "sha256": "36381de3ba8a312deb028552c0d63f7c7fe6e204f44bae4c58a3643308cfa9d5" } }, "targets": [ @@ -10513,15 +10538,15 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "candid_parser 0.1.4", + "id": "candid_parser 0.1.2", "target": "build_script_build" }, { @@ -10537,7 +10562,7 @@ "target": "hex" }, { - "id": "lalrpop-util 0.20.2", + "id": "lalrpop-util 0.20.0", "target": "lalrpop_util" }, { @@ -10553,14 +10578,14 @@ "target": "pretty" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], "selects": {} }, "edition": "2021", - "version": "0.1.4" + "version": "0.1.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -10572,7 +10597,7 @@ "deps": { "common": [ { - "id": "lalrpop 0.20.2", + "id": "lalrpop 0.20.0", "target": "lalrpop" } ], @@ -10585,14 +10610,14 @@ ], "license_file": "LICENSE" }, - "cargo-platform 0.1.9": { + "cargo-platform 0.1.4": { "name": "cargo-platform", - "version": "0.1.9", + "version": "0.1.4", "package_url": "https://github.com/rust-lang/cargo", "repository": { "Http": { - "url": "https://static.crates.io/crates/cargo-platform/0.1.9/download", - "sha256": "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" + "url": "https://static.crates.io/crates/cargo-platform/0.1.4/download", + "sha256": "12024c4645c97566567129c204f65d5815a8c9aecf30fcbe682b2fe034996d36" } }, "targets": [ @@ -10624,7 +10649,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.9" + "version": "0.1.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -10671,15 +10696,15 @@ "deps": { "common": [ { - "id": "camino 1.1.9", + "id": "camino 1.1.6", "target": "camino" }, { - "id": "cargo-platform 0.1.9", + "id": "cargo-platform 0.1.4", "target": "cargo_platform" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -10687,7 +10712,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -10741,14 +10766,14 @@ ], "license_file": "LICENSE-APACHE" }, - "cc 1.2.9": { + "cc 1.0.83": { "name": "cc", - "version": "1.2.9", + "version": "1.0.83", "package_url": "https://github.com/rust-lang/cc-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/cc/1.2.9/download", - "sha256": "c8293772165d9345bdaaa39b45b2109591e63fe5e6fbc23c6ff930a048aa310b", + "url": "https://static.crates.io/crates/cc/1.0.83/download", + "sha256": "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0", "patch_args": [ "-p1" ], @@ -10780,189 +10805,160 @@ "common": [], "selects": { "aarch64-apple-darwin": [ + "jobserver", "parallel" ], "aarch64-pc-windows-msvc": [ + "jobserver", "parallel" ], "aarch64-unknown-linux-gnu": [ + "jobserver", "parallel" ], "aarch64-unknown-nixos-gnu": [ + "jobserver", "parallel" ], "arm-unknown-linux-gnueabi": [ + "jobserver", "parallel" ], "i686-pc-windows-msvc": [ + "jobserver", "parallel" ], "i686-unknown-linux-gnu": [ + "jobserver", "parallel" ], "powerpc-unknown-linux-gnu": [ + "jobserver", "parallel" ], "s390x-unknown-linux-gnu": [ + "jobserver", "parallel" ], "x86_64-apple-darwin": [ + "jobserver", "parallel" ], "x86_64-pc-windows-msvc": [ + "jobserver", "parallel" ], "x86_64-unknown-freebsd": [ + "jobserver", "parallel" ], "x86_64-unknown-linux-gnu": [ + "jobserver", "parallel" ], "x86_64-unknown-nixos-gnu": [ + "jobserver", "parallel" ] } }, "deps": { - "common": [ - { - "id": "shlex 1.3.0", - "target": "shlex" - } - ], + "common": [], "selects": { "aarch64-apple-darwin": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.27", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "aarch64-pc-windows-msvc": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.27", "target": "jobserver" } ], "aarch64-unknown-linux-gnu": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.27", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.27", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "arm-unknown-linux-gnueabi": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.27", "target": "jobserver" - }, + } + ], + "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-pc-windows-msvc": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.27", "target": "jobserver" } ], "i686-unknown-linux-gnu": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.27", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "powerpc-unknown-linux-gnu": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.27", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "s390x-unknown-linux-gnu": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.27", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "x86_64-apple-darwin": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.27", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "x86_64-pc-windows-msvc": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.27", "target": "jobserver" } ], "x86_64-unknown-freebsd": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.27", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "x86_64-unknown-linux-gnu": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.27", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.27", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ] } }, "edition": "2018", - "version": "1.2.9" + "version": "1.0.83" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -11035,15 +11031,15 @@ "target": "base16" }, { - "id": "base64-url 2.0.2", + "id": "base64-url 2.0.0", "target": "base64_url" }, { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { - "id": "ciborium 0.2.2", + "id": "ciborium 0.2.1", "target": "ciborium" }, { @@ -11055,7 +11051,7 @@ "target": "codespan_reporting" }, { - "id": "data-encoding 2.7.0", + "id": "data-encoding 2.4.0", "target": "data_encoding" }, { @@ -11071,19 +11067,19 @@ "target": "lexical_core" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "pest_meta 2.7.15", + "id": "pest_meta 2.7.4", "target": "pest_meta" }, { - "id": "pest_vm 2.7.15", + "id": "pest_vm 2.7.4", "target": "pest_vm" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -11095,7 +11091,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -11258,7 +11254,7 @@ "target": "serde_wasm_bindgen" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], @@ -11268,7 +11264,7 @@ "target": "serde_wasm_bindgen" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], @@ -11332,7 +11328,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], @@ -11598,7 +11594,7 @@ "selects": { "cfg(any(target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.16", + "id": "cpufeatures 0.2.9", "target": "cpufeatures" } ] @@ -11687,14 +11683,14 @@ ], "license_file": "LICENSE-APACHE" }, - "chrono 0.4.39": { + "chrono 0.4.38": { "name": "chrono", - "version": "0.4.39", + "version": "0.4.38", "package_url": "https://github.com/chronotope/chrono", "repository": { "Http": { - "url": "https://static.crates.io/crates/chrono/0.4.39/download", - "sha256": "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825" + "url": "https://static.crates.io/crates/chrono/0.4.38/download", + "sha256": "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" } }, "targets": [ @@ -11749,19 +11745,19 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "aarch64-apple-ios": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "aarch64-apple-ios-sim": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], @@ -11771,7 +11767,7 @@ "target": "android_tzdata" }, { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], @@ -11783,31 +11779,31 @@ ], "aarch64-unknown-fuchsia": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "aarch64-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "arm-unknown-linux-gnueabi": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], @@ -11817,19 +11813,19 @@ "target": "android_tzdata" }, { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "i686-apple-darwin": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], @@ -11839,7 +11835,7 @@ "target": "android_tzdata" }, { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], @@ -11851,47 +11847,47 @@ ], "i686-unknown-freebsd": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "i686-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "powerpc-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "s390x-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "wasm32-unknown-unknown": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], "x86_64-apple-darwin": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "x86_64-apple-ios": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], @@ -11901,7 +11897,7 @@ "target": "android_tzdata" }, { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], @@ -11913,32 +11909,32 @@ ], "x86_64-unknown-freebsd": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "x86_64-unknown-fuchsia": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "x86_64-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ] } }, "edition": "2021", - "version": "0.4.39" + "version": "0.4.38" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -11947,14 +11943,14 @@ ], "license_file": "LICENSE.txt" }, - "ciborium 0.2.2": { + "ciborium 0.2.1": { "name": "ciborium", - "version": "0.2.2", + "version": "0.2.1", "package_url": "https://github.com/enarx/ciborium", "repository": { "Http": { - "url": "https://static.crates.io/crates/ciborium/0.2.2/download", - "sha256": "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" + "url": "https://static.crates.io/crates/ciborium/0.2.1/download", + "sha256": "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" } }, "targets": [ @@ -11986,11 +11982,11 @@ "deps": { "common": [ { - "id": "ciborium-io 0.2.2", + "id": "ciborium-io 0.2.1", "target": "ciborium_io" }, { - "id": "ciborium-ll 0.2.2", + "id": "ciborium-ll 0.2.1", "target": "ciborium_ll" }, { @@ -12001,7 +11997,7 @@ "selects": {} }, "edition": "2021", - "version": "0.2.2" + "version": "0.2.1" }, "license": "Apache-2.0", "license_ids": [ @@ -12009,14 +12005,14 @@ ], "license_file": "LICENSE" }, - "ciborium-io 0.2.2": { + "ciborium-io 0.2.1": { "name": "ciborium-io", - "version": "0.2.2", + "version": "0.2.1", "package_url": "https://github.com/enarx/ciborium", "repository": { "Http": { - "url": "https://static.crates.io/crates/ciborium-io/0.2.2/download", - "sha256": "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" + "url": "https://static.crates.io/crates/ciborium-io/0.2.1/download", + "sha256": "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" } }, "targets": [ @@ -12046,7 +12042,7 @@ "selects": {} }, "edition": "2021", - "version": "0.2.2" + "version": "0.2.1" }, "license": "Apache-2.0", "license_ids": [ @@ -12054,14 +12050,14 @@ ], "license_file": "LICENSE" }, - "ciborium-ll 0.2.2": { + "ciborium-ll 0.2.1": { "name": "ciborium-ll", - "version": "0.2.2", + "version": "0.2.1", "package_url": "https://github.com/enarx/ciborium", "repository": { "Http": { - "url": "https://static.crates.io/crates/ciborium-ll/0.2.2/download", - "sha256": "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" + "url": "https://static.crates.io/crates/ciborium-ll/0.2.1/download", + "sha256": "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" } }, "targets": [ @@ -12086,18 +12082,18 @@ "deps": { "common": [ { - "id": "ciborium-io 0.2.2", + "id": "ciborium-io 0.2.1", "target": "ciborium_io" }, { - "id": "half 2.4.1", + "id": "half 1.8.2", "target": "half" } ], "selects": {} }, "edition": "2021", - "version": "0.2.2" + "version": "0.2.1" }, "license": "Apache-2.0", "license_ids": [ @@ -12212,14 +12208,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clang-sys 1.8.1": { + "clang-sys 1.6.1": { "name": "clang-sys", - "version": "1.8.1", + "version": "1.6.1", "package_url": "https://github.com/KyleMayes/clang-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/clang-sys/1.8.1/download", - "sha256": "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" + "url": "https://static.crates.io/crates/clang-sys/1.6.1/download", + "sha256": "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" } }, "targets": [ @@ -12271,26 +12267,26 @@ "deps": { "common": [ { - "id": "clang-sys 1.8.1", + "id": "clang-sys 1.6.1", "target": "build_script_build" }, { - "id": "glob 0.3.2", + "id": "glob 0.3.1", "target": "glob" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "libloading 0.8.6", + "id": "libloading 0.7.4", "target": "libloading" } ], "selects": {} }, - "edition": "2021", - "version": "1.8.1" + "edition": "2015", + "version": "1.6.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -12302,7 +12298,7 @@ "deps": { "common": [ { - "id": "glob 0.3.2", + "id": "glob 0.3.1", "target": "glob" } ], @@ -12379,7 +12375,7 @@ "target": "indexmap" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -12391,7 +12387,7 @@ "target": "termcolor" }, { - "id": "textwrap 0.16.1", + "id": "textwrap 0.16.0", "target": "textwrap" } ], @@ -12416,14 +12412,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap 4.5.26": { + "clap 4.5.20": { "name": "clap", - "version": "4.5.26", + "version": "4.5.20", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap/4.5.26/download", - "sha256": "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783" + "url": "https://static.crates.io/crates/clap/4.5.20/download", + "sha256": "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" } }, "targets": [ @@ -12464,7 +12460,7 @@ "deps": { "common": [ { - "id": "clap_builder 4.5.26", + "id": "clap_builder 4.5.20", "target": "clap_builder" } ], @@ -12474,13 +12470,13 @@ "proc_macro_deps": { "common": [ { - "id": "clap_derive 4.5.24", + "id": "clap_derive 4.5.18", "target": "clap_derive" } ], "selects": {} }, - "version": "4.5.26" + "version": "4.5.20" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -12489,14 +12485,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_builder 4.5.26": { + "clap_builder 4.5.20": { "name": "clap_builder", - "version": "4.5.26", + "version": "4.5.20", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_builder/4.5.26/download", - "sha256": "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121" + "url": "https://static.crates.io/crates/clap_builder/4.5.20/download", + "sha256": "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" } }, "targets": [ @@ -12535,15 +12531,15 @@ "deps": { "common": [ { - "id": "anstream 0.6.18", + "id": "anstream 0.6.15", "target": "anstream" }, { - "id": "anstyle 1.0.10", + "id": "anstyle 1.0.8", "target": "anstyle" }, { - "id": "clap_lex 0.7.4", + "id": "clap_lex 0.7.2", "target": "clap_lex" }, { @@ -12554,7 +12550,7 @@ "selects": {} }, "edition": "2021", - "version": "4.5.26" + "version": "4.5.20" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -12609,11 +12605,11 @@ "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -12633,14 +12629,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_derive 4.5.24": { + "clap_derive 4.5.18": { "name": "clap_derive", - "version": "4.5.24", + "version": "4.5.18", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_derive/4.5.24/download", - "sha256": "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c" + "url": "https://static.crates.io/crates/clap_derive/4.5.18/download", + "sha256": "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" } }, "targets": [ @@ -12675,22 +12671,22 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "4.5.24" + "version": "4.5.18" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -12747,14 +12743,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_lex 0.7.4": { + "clap_lex 0.7.2": { "name": "clap_lex", - "version": "0.7.4", + "version": "0.7.2", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_lex/0.7.4/download", - "sha256": "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" + "url": "https://static.crates.io/crates/clap_lex/0.7.2/download", + "sha256": "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" } }, "targets": [ @@ -12777,7 +12773,7 @@ "**" ], "edition": "2021", - "version": "0.7.4" + "version": "0.7.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -12818,11 +12814,11 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -12924,7 +12920,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { @@ -12944,7 +12940,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -12956,15 +12952,15 @@ "target": "serde_with" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" }, { - "id": "uuid 1.12.0", + "id": "uuid 1.11.0", "target": "uuid" } ], @@ -13054,7 +13050,7 @@ "target": "termcolor" }, { - "id": "unicode-width 0.1.14", + "id": "unicode-width 0.1.11", "target": "unicode_width" } ], @@ -13069,14 +13065,14 @@ ], "license_file": null }, - "colorchoice 1.0.3": { + "colorchoice 1.0.0": { "name": "colorchoice", - "version": "1.0.3", - "package_url": "https://github.com/rust-cli/anstyle.git", + "version": "1.0.0", + "package_url": "https://github.com/rust-cli/anstyle", "repository": { "Http": { - "url": "https://static.crates.io/crates/colorchoice/1.0.3/download", - "sha256": "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" + "url": "https://static.crates.io/crates/colorchoice/1.0.0/download", + "sha256": "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" } }, "targets": [ @@ -13099,7 +13095,7 @@ "**" ], "edition": "2021", - "version": "1.0.3" + "version": "1.0.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13108,14 +13104,14 @@ ], "license_file": "LICENSE-APACHE" }, - "colored 2.2.0": { + "colored 2.0.4": { "name": "colored", - "version": "2.2.0", + "version": "2.0.4", "package_url": "https://github.com/mackwic/colored", "repository": { "Http": { - "url": "https://static.crates.io/crates/colored/2.2.0/download", - "sha256": "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c" + "url": "https://static.crates.io/crates/colored/2.0.4/download", + "sha256": "2674ec482fbc38012cf31e6c42ba0177b431a0cb6f15fe40efa5aab1bda516f6" } }, "targets": [ @@ -13140,21 +13136,25 @@ "deps": { "common": [ { - "id": "lazy_static 1.5.0", + "id": "is-terminal 0.4.9", + "target": "is_terminal" + }, + { + "id": "lazy_static 1.4.0", "target": "lazy_static" } ], "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.48.0", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "2.2.0" + "version": "2.0.4" }, "license": "MPL-2.0", "license_ids": [ @@ -13207,7 +13207,7 @@ "target": "bytes" }, { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" } ], @@ -13222,14 +13222,14 @@ ], "license_file": "LICENSE" }, - "comparable 0.5.5": { + "comparable 0.5.4": { "name": "comparable", - "version": "0.5.5", + "version": "0.5.4", "package_url": "https://github.com/jwiegley/comparable", "repository": { "Http": { - "url": "https://static.crates.io/crates/comparable/0.5.5/download", - "sha256": "8606f9aa5b5a2df738584b139c79413d0c1545ed0ffd16e76e0944d1de7388c0" + "url": "https://static.crates.io/crates/comparable/0.5.4/download", + "sha256": "eb513ee8037bf08c5270ecefa48da249f4c58e57a71ccfce0a5b0877d2a20eb2" } }, "targets": [ @@ -13261,7 +13261,7 @@ "deps": { "common": [ { - "id": "pretty_assertions 1.4.1", + "id": "pretty_assertions 1.4.0", "target": "pretty_assertions" }, { @@ -13275,17 +13275,17 @@ "proc_macro_deps": { "common": [ { - "id": "comparable_derive 0.5.5", + "id": "comparable_derive 0.5.4", "target": "comparable_derive" }, { - "id": "comparable_helper 0.5.5", + "id": "comparable_helper 0.5.4", "target": "comparable_helper" } ], "selects": {} }, - "version": "0.5.5" + "version": "0.5.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13294,14 +13294,14 @@ ], "license_file": "LICENSE-APACHE" }, - "comparable_derive 0.5.5": { + "comparable_derive 0.5.4": { "name": "comparable_derive", - "version": "0.5.5", + "version": "0.5.4", "package_url": "https://github.com/jwiegley/comparable", "repository": { "Http": { - "url": "https://static.crates.io/crates/comparable_derive/0.5.5/download", - "sha256": "41f36ea7383b9a2a9ae0a4e225d8a9c1c3aeadde78c59cdc35bad5c02b4dad01" + "url": "https://static.crates.io/crates/comparable_derive/0.5.4/download", + "sha256": "a54b9c40054eb8999c5d1d36fdc90e4e5f7ff0d1d9621706f360b3cbc8beb828" } }, "targets": [ @@ -13330,11 +13330,11 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -13345,7 +13345,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.5" + "version": "0.5.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13354,14 +13354,14 @@ ], "license_file": "LICENSE-APACHE" }, - "comparable_helper 0.5.5": { + "comparable_helper 0.5.4": { "name": "comparable_helper", - "version": "0.5.5", + "version": "0.5.4", "package_url": "https://github.com/jwiegley/comparable", "repository": { "Http": { - "url": "https://static.crates.io/crates/comparable_helper/0.5.5/download", - "sha256": "71c9b60259084f32c14d32476f3a299b4997e3c186e1473bd972ff8a8c83d1b4" + "url": "https://static.crates.io/crates/comparable_helper/0.5.4/download", + "sha256": "fb5437e327e861081c91270becff184859f706e3e50f5301a9d4dc8eb50752c3" } }, "targets": [ @@ -13390,11 +13390,11 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -13405,7 +13405,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.5" + "version": "0.5.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13453,7 +13453,7 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], @@ -13512,15 +13512,15 @@ "deps": { "common": [ { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -13528,14 +13528,14 @@ "target": "terminal_size" }, { - "id": "unicode-width 0.1.14", + "id": "unicode-width 0.1.11", "target": "unicode_width" } ], "selects": { "aarch64-pc-windows-msvc": [ { - "id": "winapi-util 0.1.9", + "id": "winapi-util 0.1.6", "target": "winapi_util" } ], @@ -13557,13 +13557,13 @@ ], "i686-pc-windows-msvc": [ { - "id": "winapi-util 0.1.9", + "id": "winapi-util 0.1.6", "target": "winapi_util" } ], "x86_64-pc-windows-msvc": [ { - "id": "winapi-util 0.1.9", + "id": "winapi-util 0.1.6", "target": "winapi_util" } ] @@ -13578,14 +13578,14 @@ ], "license_file": "LICENSE" }, - "console 0.15.10": { + "console 0.15.7": { "name": "console", - "version": "0.15.10", + "version": "0.15.7", "package_url": "https://github.com/console-rs/console", "repository": { "Http": { - "url": "https://static.crates.io/crates/console/0.15.10/download", - "sha256": "ea3c6ecd8059b57859df5c69830340ed3c41d30e3da0c1cbed90a96ac853041b" + "url": "https://static.crates.io/crates/console/0.15.7/download", + "sha256": "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" } }, "targets": [ @@ -13617,33 +13617,33 @@ "deps": { "common": [ { - "id": "libc 0.2.169", - "target": "libc" + "id": "lazy_static 1.4.0", + "target": "lazy_static" }, { - "id": "once_cell 1.20.2", - "target": "once_cell" + "id": "libc 0.2.158", + "target": "libc" }, { - "id": "unicode-width 0.2.0", + "id": "unicode-width 0.1.11", "target": "unicode_width" } ], "selects": { "cfg(windows)": [ { - "id": "encode_unicode 1.0.0", + "id": "encode_unicode 0.3.6", "target": "encode_unicode" }, { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.45.0", "target": "windows_sys" } ] } }, "edition": "2018", - "version": "0.15.10" + "version": "0.15.7" }, "license": "MIT", "license_ids": [ @@ -13687,7 +13687,7 @@ "target": "cfg_if" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], @@ -13703,14 +13703,14 @@ ], "license_file": "LICENSE-APACHE" }, - "const-hex 1.14.0": { + "const-hex 1.9.1": { "name": "const-hex", - "version": "1.14.0", + "version": "1.9.1", "package_url": "https://github.com/danipopes/const-hex", "repository": { "Http": { - "url": "https://static.crates.io/crates/const-hex/1.14.0/download", - "sha256": "4b0485bab839b018a8f1723fc5391819fea5f8f0f32288ef8a735fd096b6160c" + "url": "https://static.crates.io/crates/const-hex/1.9.1/download", + "sha256": "c37be52ef5e3b394db27a2341010685ad5103c72ac15ce2e9420a7e8f93f342c" } }, "targets": [ @@ -13755,14 +13755,14 @@ "selects": { "cfg(any(target_arch = \"x86\", target_arch = \"x86_64\"))": [ { - "id": "cpufeatures 0.2.16", + "id": "cpufeatures 0.2.9", "target": "cpufeatures" } ] } }, "edition": "2021", - "version": "1.14.0" + "version": "1.9.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13771,14 +13771,14 @@ ], "license_file": "LICENSE-APACHE" }, - "const-oid 0.9.6": { + "const-oid 0.9.5": { "name": "const-oid", - "version": "0.9.6", + "version": "0.9.5", "package_url": "https://github.com/RustCrypto/formats/tree/master/const-oid", "repository": { "Http": { - "url": "https://static.crates.io/crates/const-oid/0.9.6/download", - "sha256": "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" + "url": "https://static.crates.io/crates/const-oid/0.9.5/download", + "sha256": "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f" } }, "targets": [ @@ -13808,7 +13808,7 @@ "selects": {} }, "edition": "2021", - "version": "0.9.6" + "version": "0.9.5" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -13887,7 +13887,7 @@ "deps": { "common": [ { - "id": "unicode-segmentation 1.12.0", + "id": "unicode-segmentation 1.10.1", "target": "unicode_segmentation" } ], @@ -13961,7 +13961,7 @@ "target": "percent_encoding" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -13980,7 +13980,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.5", + "id": "version_check 0.9.4", "target": "version_check" } ], @@ -14037,7 +14037,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -14053,65 +14053,6 @@ ], "license_file": "LICENSE-APACHE" }, - "core-foundation 0.10.0": { - "name": "core-foundation", - "version": "0.10.0", - "package_url": "https://github.com/servo/core-foundation-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/core-foundation/0.10.0/download", - "sha256": "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" - } - }, - "targets": [ - { - "Library": { - "crate_name": "core_foundation", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "core_foundation", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "link" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "core-foundation-sys 0.8.7", - "target": "core_foundation_sys" - }, - { - "id": "libc 0.2.169", - "target": "libc" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.10.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "core-foundation-sys 0.8.7": { "name": "core-foundation-sys", "version": "0.8.7", @@ -14202,7 +14143,7 @@ "target": "jsonrpc" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -14210,7 +14151,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -14257,7 +14198,7 @@ "deps": { "common": [ { - "id": "bitcoin 0.30.2", + "id": "bitcoin 0.30.1", "target": "bitcoin" }, { @@ -14269,7 +14210,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -14323,7 +14264,7 @@ "deps": { "common": [ { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" } ], @@ -14339,14 +14280,14 @@ ], "license_file": "LICENSE-APACHE" }, - "cpufeatures 0.2.16": { + "cpufeatures 0.2.9": { "name": "cpufeatures", - "version": "0.2.16", + "version": "0.2.9", "package_url": "https://github.com/RustCrypto/utils", "repository": { "Http": { - "url": "https://static.crates.io/crates/cpufeatures/0.2.16/download", - "sha256": "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3" + "url": "https://static.crates.io/crates/cpufeatures/0.2.9/download", + "sha256": "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" } }, "targets": [ @@ -14373,32 +14314,26 @@ "selects": { "aarch64-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))": [ { - "id": "libc 0.2.169", - "target": "libc" - } - ], - "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))": [ - { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] } }, "edition": "2018", - "version": "0.2.16" + "version": "0.2.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -14407,14 +14342,14 @@ ], "license_file": "LICENSE-APACHE" }, - "cranelift-bforest 0.115.1": { + "cranelift-bforest 0.115.0": { "name": "cranelift-bforest", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-bforest/0.115.1/download", - "sha256": "88c1d02b72b6c411c0a2e92b25ed791ad5d071184193c08a34aa0fdcdf000b72" + "url": "https://static.crates.io/crates/cranelift-bforest/0.115.0/download", + "sha256": "ac89549be94911dd0e839b4a7db99e9ed29c17517e1c026f61066884c168aa3c" } }, "targets": [ @@ -14439,14 +14374,14 @@ "deps": { "common": [ { - "id": "cranelift-entity 0.115.1", + "id": "cranelift-entity 0.115.0", "target": "cranelift_entity" } ], "selects": {} }, "edition": "2021", - "version": "0.115.1" + "version": "0.115.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14454,14 +14389,14 @@ ], "license_file": "LICENSE" }, - "cranelift-bitset 0.115.1": { + "cranelift-bitset 0.115.0": { "name": "cranelift-bitset", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-bitset/0.115.1/download", - "sha256": "720b93bd86ebbb23ebfb2db1ed44d54b2ecbdbb2d034d485bc64aa605ee787ab" + "url": "https://static.crates.io/crates/cranelift-bitset/0.115.0/download", + "sha256": "b9bd49369f76c77e34e641af85d0956869237832c118964d08bf5f51f210875a" } }, "targets": [ @@ -14508,7 +14443,7 @@ ], "selects": {} }, - "version": "0.115.1" + "version": "0.115.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14516,14 +14451,14 @@ ], "license_file": null }, - "cranelift-codegen 0.115.1": { + "cranelift-codegen 0.115.0": { "name": "cranelift-codegen", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-codegen/0.115.1/download", - "sha256": "aed3d2d9914d30b460eedd7fd507720203023997bef71452ce84873f9c93537c" + "url": "https://static.crates.io/crates/cranelift-codegen/0.115.0/download", + "sha256": "fd96ce9cf8efebd7f5ab8ced5a0ce44250280bbae9f593d74a6d7effc3582a35" } }, "targets": [ @@ -14574,27 +14509,27 @@ "target": "bumpalo" }, { - "id": "cranelift-bforest 0.115.1", + "id": "cranelift-bforest 0.115.0", "target": "cranelift_bforest" }, { - "id": "cranelift-bitset 0.115.1", + "id": "cranelift-bitset 0.115.0", "target": "cranelift_bitset" }, { - "id": "cranelift-codegen 0.115.1", + "id": "cranelift-codegen 0.115.0", "target": "build_script_build" }, { - "id": "cranelift-codegen-shared 0.115.1", + "id": "cranelift-codegen-shared 0.115.0", "target": "cranelift_codegen_shared" }, { - "id": "cranelift-control 0.115.1", + "id": "cranelift-control 0.115.0", "target": "cranelift_control" }, { - "id": "cranelift-entity 0.115.1", + "id": "cranelift-entity 0.115.0", "target": "cranelift_entity" }, { @@ -14606,7 +14541,7 @@ "target": "hashbrown" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -14614,7 +14549,7 @@ "target": "regalloc2" }, { - "id": "rustc-hash 2.1.0", + "id": "rustc-hash 2.0.0", "target": "rustc_hash" }, { @@ -14629,7 +14564,7 @@ "selects": {} }, "edition": "2021", - "version": "0.115.1" + "version": "0.115.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -14641,11 +14576,11 @@ "deps": { "common": [ { - "id": "cranelift-codegen-meta 0.115.1", + "id": "cranelift-codegen-meta 0.115.0", "target": "cranelift_codegen_meta" }, { - "id": "cranelift-isle 0.115.1", + "id": "cranelift-isle 0.115.0", "target": "cranelift_isle" } ], @@ -14658,14 +14593,14 @@ ], "license_file": "LICENSE" }, - "cranelift-codegen-meta 0.115.1": { + "cranelift-codegen-meta 0.115.0": { "name": "cranelift-codegen-meta", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-codegen-meta/0.115.1/download", - "sha256": "888c188d32263ec9e048873ff0b68c700933600d553f4412417916828be25f8e", + "url": "https://static.crates.io/crates/cranelift-codegen-meta/0.115.0/download", + "sha256": "5a68e358827afe4bfb6239fcbf6fbd5ac56206ece8a99c8f5f9bbd518773281a", "patch_args": [ "-p4" ], @@ -14696,14 +14631,14 @@ "deps": { "common": [ { - "id": "cranelift-codegen-shared 0.115.1", + "id": "cranelift-codegen-shared 0.115.0", "target": "cranelift_codegen_shared" } ], "selects": {} }, "edition": "2021", - "version": "0.115.1" + "version": "0.115.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14711,14 +14646,14 @@ ], "license_file": "LICENSE" }, - "cranelift-codegen-shared 0.115.1": { + "cranelift-codegen-shared 0.115.0": { "name": "cranelift-codegen-shared", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-codegen-shared/0.115.1/download", - "sha256": "4ddd5f4114d04ce7e073dd74e2ad16541fc61970726fcc8b2d5644a154ee4127" + "url": "https://static.crates.io/crates/cranelift-codegen-shared/0.115.0/download", + "sha256": "e184c9767afbe73d50c55ec29abcf4c32f9baf0d9d22b86d58c4d55e06dee181" } }, "targets": [ @@ -14741,7 +14676,7 @@ "**" ], "edition": "2021", - "version": "0.115.1" + "version": "0.115.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14749,14 +14684,14 @@ ], "license_file": "LICENSE" }, - "cranelift-control 0.115.1": { + "cranelift-control 0.115.0": { "name": "cranelift-control", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-control/0.115.1/download", - "sha256": "92cc4c98d6a4256a1600d93ccd3536f3e77da9b4ca2c279de786ac22876e67d6" + "url": "https://static.crates.io/crates/cranelift-control/0.115.0/download", + "sha256": "5cc7664f2a66f053e33f149e952bb5971d138e3af637f5097727ed6dc0ed95dd" } }, "targets": [ @@ -14788,14 +14723,14 @@ "deps": { "common": [ { - "id": "arbitrary 1.4.1", + "id": "arbitrary 1.3.2", "target": "arbitrary" } ], "selects": {} }, "edition": "2021", - "version": "0.115.1" + "version": "0.115.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14803,14 +14738,14 @@ ], "license_file": "LICENSE" }, - "cranelift-entity 0.115.1": { + "cranelift-entity 0.115.0": { "name": "cranelift-entity", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-entity/0.115.1/download", - "sha256": "760af4b5e051b5f82097a27274b917e3751736369fa73660513488248d27f23d" + "url": "https://static.crates.io/crates/cranelift-entity/0.115.0/download", + "sha256": "118597e3a9cf86c3556fa579a7a23b955fa18231651a52a77a2475d305a9cf84" } }, "targets": [ @@ -14843,7 +14778,7 @@ "deps": { "common": [ { - "id": "cranelift-bitset 0.115.1", + "id": "cranelift-bitset 0.115.0", "target": "cranelift_bitset" }, { @@ -14863,7 +14798,7 @@ ], "selects": {} }, - "version": "0.115.1" + "version": "0.115.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14871,14 +14806,14 @@ ], "license_file": "LICENSE" }, - "cranelift-frontend 0.115.1": { + "cranelift-frontend 0.115.0": { "name": "cranelift-frontend", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-frontend/0.115.1/download", - "sha256": "c0bf77ec0f470621655ec7539860b5c620d4f91326654ab21b075b83900f8831" + "url": "https://static.crates.io/crates/cranelift-frontend/0.115.0/download", + "sha256": "7638ea1efb069a0aa18d8ee67401b6b0d19f6bfe5de5e9ede348bfc80bb0d8c7" } }, "targets": [ @@ -14910,11 +14845,11 @@ "deps": { "common": [ { - "id": "cranelift-codegen 0.115.1", + "id": "cranelift-codegen 0.115.0", "target": "cranelift_codegen" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -14929,7 +14864,7 @@ "selects": {} }, "edition": "2021", - "version": "0.115.1" + "version": "0.115.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14937,14 +14872,14 @@ ], "license_file": "LICENSE" }, - "cranelift-isle 0.115.1": { + "cranelift-isle 0.115.0": { "name": "cranelift-isle", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime/tree/main/cranelift/isle", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-isle/0.115.1/download", - "sha256": "4b665d0a6932c421620be184f9fc7f7adaf1b0bc2fa77bb7ac5177c49abf645b", + "url": "https://static.crates.io/crates/cranelift-isle/0.115.0/download", + "sha256": "15c53e1152a0b01c4ed2b1e0535602b8e86458777dd9d18b28732b16325c7dc0", "patch_args": [ "-p4" ], @@ -14993,14 +14928,14 @@ "deps": { "common": [ { - "id": "cranelift-isle 0.115.1", + "id": "cranelift-isle 0.115.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.115.1" + "version": "0.115.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -15016,14 +14951,14 @@ ], "license_file": null }, - "cranelift-native 0.115.1": { + "cranelift-native 0.115.0": { "name": "cranelift-native", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-native/0.115.1/download", - "sha256": "bb2e75d1bd43dfec10924798f15e6474f1dbf63b0024506551aa19394dbe72ab" + "url": "https://static.crates.io/crates/cranelift-native/0.115.0/download", + "sha256": "7b7d8f895444fa52dd7bdd0bed11bf007a7fb43af65a6deac8fcc4094c6372f7" } }, "targets": [ @@ -15055,7 +14990,7 @@ "deps": { "common": [ { - "id": "cranelift-codegen 0.115.1", + "id": "cranelift-codegen 0.115.0", "target": "cranelift_codegen" }, { @@ -15066,14 +15001,14 @@ "selects": { "cfg(any(target_arch = \"s390x\", target_arch = \"riscv64\"))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] } }, "edition": "2021", - "version": "0.115.1" + "version": "0.115.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -15081,14 +15016,14 @@ ], "license_file": "LICENSE" }, - "crc32fast 1.4.2": { + "crc32fast 1.3.2": { "name": "crc32fast", - "version": "1.4.2", + "version": "1.3.2", "package_url": "https://github.com/srijs/rust-crc32fast", "repository": { "Http": { - "url": "https://static.crates.io/crates/crc32fast/1.4.2/download", - "sha256": "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" + "url": "https://static.crates.io/crates/crc32fast/1.3.2/download", + "sha256": "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" } }, "targets": [ @@ -15103,6 +15038,18 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], "library_target_name": "crc32fast", @@ -15122,12 +15069,24 @@ { "id": "cfg-if 1.0.0", "target": "cfg_if" + }, + { + "id": "crc32fast 1.3.2", + "target": "build_script_build" } ], "selects": {} }, "edition": "2015", - "version": "1.4.2" + "version": "1.3.2" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15190,11 +15149,11 @@ "target": "cast" }, { - "id": "ciborium 0.2.2", + "id": "ciborium 0.2.1", "target": "ciborium" }, { - "id": "clap 4.5.26", + "id": "clap 4.5.20", "target": "clap" }, { @@ -15206,7 +15165,7 @@ "target": "futures" }, { - "id": "is-terminal 0.4.13", + "id": "is-terminal 0.4.9", "target": "is_terminal" }, { @@ -15218,15 +15177,15 @@ "target": "num_traits" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "oorandom 11.1.4", + "id": "oorandom 11.1.3", "target": "oorandom" }, { - "id": "plotters 0.3.7", + "id": "plotters 0.3.5", "target": "plotters" }, { @@ -15234,7 +15193,7 @@ "target": "rayon" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -15242,7 +15201,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -15250,11 +15209,11 @@ "target": "tinytemplate" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { - "id": "walkdir 2.5.0", + "id": "walkdir 2.3.3", "target": "walkdir" } ], @@ -15375,11 +15334,11 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { - "id": "crossbeam-deque 0.8.6", + "id": "crossbeam-deque 0.8.5", "target": "crossbeam_deque" }, { @@ -15387,11 +15346,11 @@ "target": "crossbeam_epoch" }, { - "id": "crossbeam-queue 0.3.12", + "id": "crossbeam-queue 0.3.11", "target": "crossbeam_queue" }, { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], @@ -15407,14 +15366,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crossbeam-channel 0.5.14": { + "crossbeam-channel 0.5.13": { "name": "crossbeam-channel", - "version": "0.5.14", + "version": "0.5.13", "package_url": "https://github.com/crossbeam-rs/crossbeam", "repository": { "Http": { - "url": "https://static.crates.io/crates/crossbeam-channel/0.5.14/download", - "sha256": "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471" + "url": "https://static.crates.io/crates/crossbeam-channel/0.5.13/download", + "sha256": "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" } }, "targets": [ @@ -15446,14 +15405,14 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], "selects": {} }, "edition": "2021", - "version": "0.5.14" + "version": "0.5.13" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15462,14 +15421,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crossbeam-deque 0.8.6": { + "crossbeam-deque 0.8.5": { "name": "crossbeam-deque", - "version": "0.8.6", + "version": "0.8.5", "package_url": "https://github.com/crossbeam-rs/crossbeam", "repository": { "Http": { - "url": "https://static.crates.io/crates/crossbeam-deque/0.8.6/download", - "sha256": "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" + "url": "https://static.crates.io/crates/crossbeam-deque/0.8.5/download", + "sha256": "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" } }, "targets": [ @@ -15505,14 +15464,14 @@ "target": "crossbeam_epoch" }, { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], "selects": {} }, "edition": "2021", - "version": "0.8.6" + "version": "0.8.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15561,7 +15520,7 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], @@ -15577,14 +15536,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crossbeam-queue 0.3.12": { + "crossbeam-queue 0.3.11": { "name": "crossbeam-queue", - "version": "0.3.12", + "version": "0.3.11", "package_url": "https://github.com/crossbeam-rs/crossbeam", "repository": { "Http": { - "url": "https://static.crates.io/crates/crossbeam-queue/0.3.12/download", - "sha256": "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" + "url": "https://static.crates.io/crates/crossbeam-queue/0.3.11/download", + "sha256": "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" } }, "targets": [ @@ -15616,14 +15575,14 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], "selects": {} }, "edition": "2021", - "version": "0.3.12" + "version": "0.3.11" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15632,14 +15591,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crossbeam-utils 0.8.21": { + "crossbeam-utils 0.8.19": { "name": "crossbeam-utils", - "version": "0.8.21", + "version": "0.8.19", "package_url": "https://github.com/crossbeam-rs/crossbeam", "repository": { "Http": { - "url": "https://static.crates.io/crates/crossbeam-utils/0.8.21/download", - "sha256": "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" + "url": "https://static.crates.io/crates/crossbeam-utils/0.8.19/download", + "sha256": "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" } }, "targets": [ @@ -15683,14 +15642,14 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.8.21" + "version": "0.8.19" }, "build_script_attrs": { "compile_data_glob": [ @@ -15748,18 +15707,18 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15767,13 +15726,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "aarch64-apple-ios": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15781,13 +15740,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "aarch64-apple-ios-sim": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15795,13 +15754,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "aarch64-linux-android": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15809,7 +15768,7 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], @@ -15825,7 +15784,7 @@ ], "aarch64-unknown-fuchsia": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15833,13 +15792,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "aarch64-unknown-linux-gnu": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15847,13 +15806,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15861,13 +15820,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15875,13 +15834,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "arm-unknown-linux-gnueabi": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15889,13 +15848,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "armv7-linux-androideabi": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15903,13 +15862,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15917,19 +15876,19 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-apple-darwin": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15937,13 +15896,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "i686-linux-android": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15951,7 +15910,7 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], @@ -15967,7 +15926,7 @@ ], "i686-unknown-freebsd": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15975,13 +15934,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "i686-unknown-linux-gnu": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15989,13 +15948,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "powerpc-unknown-linux-gnu": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -16003,13 +15962,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "s390x-unknown-linux-gnu": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -16017,13 +15976,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "x86_64-apple-darwin": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -16031,13 +15990,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "x86_64-apple-ios": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -16045,13 +16004,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "x86_64-linux-android": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -16059,7 +16018,7 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], @@ -16075,7 +16034,7 @@ ], "x86_64-unknown-freebsd": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -16083,13 +16042,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "x86_64-unknown-fuchsia": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -16097,13 +16056,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "x86_64-unknown-linux-gnu": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -16111,13 +16070,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -16125,7 +16084,7 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ] @@ -16265,14 +16224,14 @@ ], "license_file": null }, - "crypto-bigint 0.5.5": { + "crypto-bigint 0.5.3": { "name": "crypto-bigint", - "version": "0.5.5", + "version": "0.5.3", "package_url": "https://github.com/RustCrypto/crypto-bigint", "repository": { "Http": { - "url": "https://static.crates.io/crates/crypto-bigint/0.5.5/download", - "sha256": "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" + "url": "https://static.crates.io/crates/crypto-bigint/0.5.3/download", + "sha256": "740fe28e594155f10cfc383984cbefd529d7396050557148f79cb0f621204124" } }, "targets": [ @@ -16324,7 +16283,7 @@ "selects": {} }, "edition": "2021", - "version": "0.5.5" + "version": "0.5.3" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -16429,15 +16388,15 @@ "deps": { "common": [ { - "id": "dtoa-short 0.3.5", + "id": "dtoa-short 0.3.4", "target": "dtoa_short" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "phf 0.11.3", + "id": "phf 0.11.2", "target": "phf" }, { @@ -16497,11 +16456,11 @@ "deps": { "common": [ { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -16516,14 +16475,14 @@ ], "license_file": "LICENSE" }, - "csv 1.3.1": { + "csv 1.3.0": { "name": "csv", - "version": "1.3.1", + "version": "1.3.0", "package_url": "https://github.com/BurntSushi/rust-csv", "repository": { "Http": { - "url": "https://static.crates.io/crates/csv/1.3.1/download", - "sha256": "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf" + "url": "https://static.crates.io/crates/csv/1.3.0/download", + "sha256": "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe" } }, "targets": [ @@ -16552,11 +16511,11 @@ "target": "csv_core" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "ryu 1.0.18", + "id": "ryu 1.0.15", "target": "ryu" }, { @@ -16567,7 +16526,7 @@ "selects": {} }, "edition": "2021", - "version": "1.3.1" + "version": "1.3.0" }, "license": "Unlicense/MIT", "license_ids": [ @@ -16614,7 +16573,7 @@ "deps": { "common": [ { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" } ], @@ -16779,13 +16738,13 @@ "selects": { "cfg(curve25519_dalek_backend = \"fiat\")": [ { - "id": "fiat-crypto 0.2.9", + "id": "fiat-crypto 0.2.6", "target": "fiat_crypto" } ], "cfg(target_arch = \"x86_64\")": [ { - "id": "cpufeatures 0.2.16", + "id": "cpufeatures 0.2.9", "target": "cpufeatures" } ] @@ -16822,7 +16781,7 @@ "deps": { "common": [ { - "id": "rustc_version 0.4.1", + "id": "rustc_version 0.4.0", "target": "rustc_version" } ], @@ -16867,15 +16826,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -17182,11 +17141,11 @@ "target": "ident_case" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -17256,11 +17215,11 @@ "target": "ident_case" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -17268,7 +17227,7 @@ "target": "strsim" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -17319,7 +17278,7 @@ "target": "darling_core" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -17374,11 +17333,11 @@ "target": "darling_core" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -17393,14 +17352,14 @@ ], "license_file": "LICENSE" }, - "dary_heap 0.3.7": { + "dary_heap 0.3.6": { "name": "dary_heap", - "version": "0.3.7", + "version": "0.3.6", "package_url": "https://github.com/hanmertens/dary_heap", "repository": { "Http": { - "url": "https://static.crates.io/crates/dary_heap/0.3.7/download", - "sha256": "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728" + "url": "https://static.crates.io/crates/dary_heap/0.3.6/download", + "sha256": "7762d17f1241643615821a8455a0b2c3e803784b058693d990b11f2dce25a0ca" } }, "targets": [ @@ -17423,7 +17382,7 @@ "**" ], "edition": "2018", - "version": "0.3.7" + "version": "0.3.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -17472,15 +17431,15 @@ "target": "hashbrown" }, { - "id": "lock_api 0.4.12", + "id": "lock_api 0.4.10", "target": "lock_api" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "parking_lot_core 0.9.10", + "id": "parking_lot_core 0.9.8", "target": "parking_lot_core" } ], @@ -17531,7 +17490,7 @@ "target": "cfg_if" }, { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" }, { @@ -17539,15 +17498,15 @@ "target": "hashbrown" }, { - "id": "lock_api 0.4.12", + "id": "lock_api 0.4.10", "target": "lock_api" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "parking_lot_core 0.9.10", + "id": "parking_lot_core 0.9.8", "target": "parking_lot_core" } ], @@ -17562,14 +17521,14 @@ ], "license_file": "LICENSE" }, - "data-encoding 2.7.0": { + "data-encoding 2.4.0": { "name": "data-encoding", - "version": "2.7.0", + "version": "2.4.0", "package_url": "https://github.com/ia0/data-encoding", "repository": { "Http": { - "url": "https://static.crates.io/crates/data-encoding/2.7.0/download", - "sha256": "0e60eed09d8c01d3cee5b7d30acb059b76614c918fa0f992e0dd6eeb10daad6f" + "url": "https://static.crates.io/crates/data-encoding/2.4.0/download", + "sha256": "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" } }, "targets": [ @@ -17600,7 +17559,7 @@ "selects": {} }, "edition": "2018", - "version": "2.7.0" + "version": "2.4.0" }, "license": "MIT", "license_ids": [ @@ -17640,7 +17599,7 @@ "deps": { "common": [ { - "id": "uuid 1.12.0", + "id": "uuid 1.11.0", "target": "uuid" } ], @@ -17655,14 +17614,14 @@ ], "license_file": "LICENSE" }, - "der 0.7.9": { + "der 0.7.8": { "name": "der", - "version": "0.7.9", + "version": "0.7.8", "package_url": "https://github.com/RustCrypto/formats/tree/master/der", "repository": { "Http": { - "url": "https://static.crates.io/crates/der/0.7.9/download", - "sha256": "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" + "url": "https://static.crates.io/crates/der/0.7.8/download", + "sha256": "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c" } }, "targets": [ @@ -17699,11 +17658,11 @@ "deps": { "common": [ { - "id": "const-oid 0.9.6", + "id": "const-oid 0.9.5", "target": "const_oid" }, { - "id": "flagset 0.4.6", + "id": "flagset 0.4.4", "target": "flagset" }, { @@ -17721,13 +17680,13 @@ "proc_macro_deps": { "common": [ { - "id": "der_derive 0.7.3", + "id": "der_derive 0.7.2", "target": "der_derive" } ], "selects": {} }, - "version": "0.7.9" + "version": "0.7.8" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -17777,7 +17736,7 @@ "deps": { "common": [ { - "id": "asn1-rs 0.6.2", + "id": "asn1-rs 0.6.1", "target": "asn1_rs" }, { @@ -17803,7 +17762,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], @@ -17818,14 +17777,14 @@ ], "license_file": "LICENSE-APACHE" }, - "der_derive 0.7.3": { + "der_derive 0.7.2": { "name": "der_derive", - "version": "0.7.3", + "version": "0.7.2", "package_url": "https://github.com/RustCrypto/formats/tree/master/der/derive", "repository": { "Http": { - "url": "https://static.crates.io/crates/der_derive/0.7.3/download", - "sha256": "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18" + "url": "https://static.crates.io/crates/der_derive/0.7.2/download", + "sha256": "5fe87ce4529967e0ba1dcf8450bab64d97dfd5010a6256187ffe2e43e6f0e049" } }, "targets": [ @@ -17850,22 +17809,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.7.3" + "version": "0.7.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -17874,14 +17833,14 @@ ], "license_file": "LICENSE-APACHE" }, - "deranged 0.3.11": { + "deranged 0.3.9": { "name": "deranged", - "version": "0.3.11", + "version": "0.3.9", "package_url": "https://github.com/jhpratt/deranged", "repository": { "Http": { - "url": "https://static.crates.io/crates/deranged/0.3.11/download", - "sha256": "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" + "url": "https://static.crates.io/crates/deranged/0.3.9/download", + "sha256": "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" } }, "targets": [ @@ -17921,7 +17880,7 @@ "selects": {} }, "edition": "2021", - "version": "0.3.11" + "version": "0.3.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -17969,15 +17928,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -17992,14 +17951,14 @@ ], "license_file": "LICENSE" }, - "derive_arbitrary 1.4.1": { + "derive_arbitrary 1.3.2": { "name": "derive_arbitrary", - "version": "1.4.1", + "version": "1.3.2", "package_url": "https://github.com/rust-fuzz/arbitrary", "repository": { "Http": { - "url": "https://static.crates.io/crates/derive_arbitrary/1.4.1/download", - "sha256": "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" + "url": "https://static.crates.io/crates/derive_arbitrary/1.3.2/download", + "sha256": "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" } }, "targets": [ @@ -18024,22 +17983,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.4.1" + "version": "1.3.2" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -18048,14 +18007,14 @@ ], "license_file": "LICENSE-APACHE" }, - "derive_more 0.99.18": { + "derive_more 0.99.17": { "name": "derive_more", - "version": "0.99.18", + "version": "0.99.17", "package_url": "https://github.com/JelteF/derive_more", "repository": { "Http": { - "url": "https://static.crates.io/crates/derive_more/0.99.18/download", - "sha256": "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" + "url": "https://static.crates.io/crates/derive_more/0.99.17/download", + "sha256": "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" } }, "targets": [ @@ -18115,137 +18074,22 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 1.0.109", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.99.18" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "derive_more 1.0.0": { - "name": "derive_more", - "version": "1.0.0", - "package_url": "https://github.com/JelteF/derive_more", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/derive_more/1.0.0/download", - "sha256": "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" - } - }, - "targets": [ - { - "Library": { - "crate_name": "derive_more", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "derive_more", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "from" - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "derive_more-impl 1.0.0", - "target": "derive_more_impl" - } - ], - "selects": {} - }, - "version": "1.0.0" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "derive_more-impl 1.0.0": { - "name": "derive_more-impl", - "version": "1.0.0", - "package_url": "https://github.com/JelteF/derive_more", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/derive_more-impl/1.0.0/download", - "sha256": "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "derive_more_impl", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "derive_more_impl", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "from" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.93", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.38", - "target": "quote" - }, - { - "id": "syn 2.0.96", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.0" + "version": "0.99.17" }, "license": "MIT", "license_ids": [ @@ -18435,7 +18279,7 @@ "target": "block_buffer" }, { - "id": "const-oid 0.9.6", + "id": "const-oid 0.9.5", "target": "const_oid" }, { @@ -18498,15 +18342,15 @@ "target": "addr" }, { - "id": "aide 0.13.5", + "id": "aide 0.13.4", "target": "aide" }, { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "arbitrary 1.4.1", + "id": "arbitrary 1.3.2", "target": "arbitrary" }, { @@ -18514,7 +18358,7 @@ "target": "arc_swap" }, { - "id": "arrayvec 0.7.6", + "id": "arrayvec 0.7.4", "target": "arrayvec" }, { @@ -18558,7 +18402,7 @@ "target": "backoff" }, { - "id": "backon 0.4.4", + "id": "backon 0.4.1", "target": "backon" }, { @@ -18582,7 +18426,7 @@ "target": "bindgen" }, { - "id": "bip32 0.5.2", + "id": "bip32 0.5.1", "target": "bip32" }, { @@ -18594,7 +18438,7 @@ "target": "bitcoin" }, { - "id": "bitcoin 0.32.5", + "id": "bitcoin 0.32.2", "target": "bitcoin", "alias": "bitcoin_0_32" }, @@ -18611,7 +18455,7 @@ "target": "bitflags" }, { - "id": "bs58 0.5.1", + "id": "bs58 0.5.0", "target": "bs58" }, { @@ -18623,7 +18467,7 @@ "target": "build_info_build" }, { - "id": "by_address 1.2.1", + "id": "by_address 1.1.0", "target": "by_address" }, { @@ -18639,7 +18483,7 @@ "target": "bytes" }, { - "id": "cached 0.49.3", + "id": "cached 0.49.2", "target": "cached" }, { @@ -18651,11 +18495,11 @@ "target": "canbench_rs" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "candid_parser 0.1.4", + "id": "candid_parser 0.1.2", "target": "candid_parser" }, { @@ -18663,7 +18507,7 @@ "target": "cargo_metadata" }, { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { @@ -18679,11 +18523,11 @@ "target": "chacha20poly1305" }, { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { - "id": "ciborium 0.2.2", + "id": "ciborium 0.2.1", "target": "ciborium" }, { @@ -18691,7 +18535,7 @@ "target": "cidr" }, { - "id": "clap 4.5.26", + "id": "clap 4.5.20", "target": "clap" }, { @@ -18699,11 +18543,11 @@ "target": "cloudflare" }, { - "id": "colored 2.2.0", + "id": "colored 2.0.4", "target": "colored" }, { - "id": "comparable 0.5.5", + "id": "comparable 0.5.4", "target": "comparable" }, { @@ -18715,7 +18559,7 @@ "target": "convert_case" }, { - "id": "crc32fast 1.4.2", + "id": "crc32fast 1.3.2", "target": "crc32fast" }, { @@ -18727,11 +18571,11 @@ "target": "crossbeam" }, { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { - "id": "csv 1.3.1", + "id": "csv 1.3.0", "target": "csv" }, { @@ -18751,7 +18595,7 @@ "target": "dashmap" }, { - "id": "dyn-clone 1.0.17", + "id": "dyn-clone 1.0.14", "target": "dyn_clone" }, { @@ -18767,15 +18611,15 @@ "target": "erased_serde" }, { - "id": "escargot 0.5.13", + "id": "escargot 0.5.8", "target": "escargot" }, { - "id": "ethers-core 2.0.14", + "id": "ethers-core 2.0.10", "target": "ethers_core" }, { - "id": "ethnum 1.5.0", + "id": "ethnum 1.4.0", "target": "ethnum" }, { @@ -18787,7 +18631,7 @@ "target": "exec" }, { - "id": "eyre 0.6.12", + "id": "eyre 0.6.8", "target": "eyre" }, { @@ -18795,7 +18639,7 @@ "target": "ff" }, { - "id": "flate2 1.0.35", + "id": "flate2 1.0.31", "target": "flate2" }, { @@ -18803,7 +18647,7 @@ "target": "form_urlencoded" }, { - "id": "fqdn 0.3.12", + "id": "fqdn 0.3.11", "target": "fqdn" }, { @@ -18823,7 +18667,7 @@ "target": "get_if_addrs" }, { - "id": "getrandom 0.2.15", + "id": "getrandom 0.2.10", "target": "getrandom" }, { @@ -18871,11 +18715,11 @@ "target": "humantime_serde" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { @@ -18951,7 +18795,7 @@ "target": "ic_sha3" }, { - "id": "ic-stable-structures 0.6.7", + "id": "ic-stable-structures 0.6.5", "target": "ic_stable_structures" }, { @@ -18971,7 +18815,7 @@ "target": "ic_verify_bls_signature" }, { - "id": "ic-wasm 0.8.6", + "id": "ic-wasm 0.8.4", "target": "ic_wasm" }, { @@ -19003,19 +18847,19 @@ "target": "idna" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "indicatif 0.17.9", + "id": "indicatif 0.17.7", "target": "indicatif" }, { - "id": "inferno 0.12.1", + "id": "inferno 0.12.0", "target": "inferno" }, { - "id": "insta 1.42.0", + "id": "insta 1.34.0", "target": "insta" }, { @@ -19035,7 +18879,7 @@ "target": "isocountry" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.12.0", "target": "itertools" }, { @@ -19059,7 +18903,7 @@ "target": "kube" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -19067,7 +18911,7 @@ "target": "leb128" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -19075,7 +18919,7 @@ "target": "libflate" }, { - "id": "libfuzzer-sys 0.4.8", + "id": "libfuzzer-sys 0.4.7", "target": "libfuzzer_sys" }, { @@ -19095,7 +18939,7 @@ "target": "lmdb_sys" }, { - "id": "local-ip-address 0.5.7", + "id": "local-ip-address 0.5.6", "target": "local_ip_address" }, { @@ -19127,15 +18971,15 @@ "target": "minicbor" }, { - "id": "mockall 0.13.1", + "id": "mockall 0.13.0", "target": "mockall" }, { - "id": "mockito 1.6.1", + "id": "mockito 1.2.0", "target": "mockito" }, { - "id": "moka 0.12.10", + "id": "moka 0.12.8", "target": "moka" }, { @@ -19171,7 +19015,7 @@ "target": "num_cpus" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -19184,7 +19028,7 @@ "alias": "opentelemetry_0_20_0" }, { - "id": "opentelemetry 0.27.1", + "id": "opentelemetry 0.27.0", "target": "opentelemetry" }, { @@ -19208,11 +19052,11 @@ "target": "pairing" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { - "id": "pcre2 0.2.9", + "id": "pcre2 0.2.6", "target": "pcre2" }, { @@ -19220,11 +19064,11 @@ "target": "pem" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "ping 0.5.2", + "id": "ping 0.5.0", "target": "ping" }, { @@ -19232,7 +19076,7 @@ "target": "pkcs8" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" }, { @@ -19240,7 +19084,7 @@ "target": "pprof" }, { - "id": "predicates 3.1.3", + "id": "predicates 3.1.2", "target": "predicates" }, { @@ -19248,15 +19092,15 @@ "target": "pretty_bytes" }, { - "id": "pretty_assertions 1.4.1", + "id": "pretty_assertions 1.4.0", "target": "pretty_assertions" }, { - "id": "priority-queue 1.4.0", + "id": "priority-queue 1.3.2", "target": "priority_queue" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { @@ -19268,24 +19112,24 @@ "target": "prometheus" }, { - "id": "prometheus-parse 0.2.5", + "id": "prometheus-parse 0.2.4", "target": "prometheus_parse" }, { - "id": "proptest 1.6.0", + "id": "proptest 1.5.0", "target": "proptest" }, { - "id": "prost 0.12.6", + "id": "prost 0.12.2", "target": "prost", "alias": "prost_0_12_0" }, { - "id": "prost 0.13.4", + "id": "prost 0.13.3", "target": "prost" }, { - "id": "prost-build 0.13.4", + "id": "prost-build 0.13.3", "target": "prost_build" }, { @@ -19293,7 +19137,7 @@ "target": "protobuf" }, { - "id": "publicsuffix 2.3.0", + "id": "publicsuffix 2.2.3", "target": "publicsuffix" }, { @@ -19301,15 +19145,15 @@ "target": "quickcheck" }, { - "id": "quinn 0.11.6", + "id": "quinn 0.11.5", "target": "quinn" }, { - "id": "quinn-udp 0.5.9", + "id": "quinn-udp 0.5.5", "target": "quinn_udp" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -19337,23 +19181,23 @@ "target": "rayon" }, { - "id": "rcgen 0.13.2", + "id": "rcgen 0.13.1", "target": "rcgen" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { - "id": "reqwest 0.12.12", + "id": "reqwest 0.12.9", "target": "reqwest" }, { - "id": "rgb 0.8.50", + "id": "rgb 0.8.37", "target": "rgb" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { @@ -19373,7 +19217,7 @@ "target": "rolling_file" }, { - "id": "rsa 0.9.7", + "id": "rsa 0.9.6", "target": "rsa" }, { @@ -19381,7 +19225,7 @@ "target": "rstest" }, { - "id": "rusb 0.9.4", + "id": "rusb 0.9.3", "target": "rusb" }, { @@ -19393,7 +19237,7 @@ "target": "rust_decimal" }, { - "id": "rustc-demangle 0.1.24", + "id": "rustc-demangle 0.1.23", "target": "rustc_demangle" }, { @@ -19401,7 +19245,7 @@ "target": "rustc_hash" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { @@ -19413,7 +19257,7 @@ "target": "rusty_fork" }, { - "id": "schemars 0.8.21", + "id": "schemars 0.8.16", "target": "schemars" }, { @@ -19433,7 +19277,7 @@ "target": "secp256k1" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -19453,7 +19297,7 @@ "target": "serde_cbor" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -19485,7 +19329,7 @@ "target": "signature" }, { - "id": "simple_asn1 0.6.3", + "id": "simple_asn1 0.6.2", "target": "simple_asn1" }, { @@ -19517,7 +19361,7 @@ "target": "slog_term" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { @@ -19533,7 +19377,7 @@ "target": "strum" }, { - "id": "stubborn-io 0.3.5", + "id": "stubborn-io 0.3.2", "target": "stubborn_io" }, { @@ -19545,7 +19389,7 @@ "target": "syn" }, { - "id": "tar 0.4.43", + "id": "tar 0.4.39", "target": "tar" }, { @@ -19553,7 +19397,7 @@ "target": "tarpc" }, { - "id": "tempfile 3.15.0", + "id": "tempfile 3.12.0", "target": "tempfile" }, { @@ -19561,11 +19405,11 @@ "target": "tester" }, { - "id": "textplots 0.8.6", + "id": "textplots 0.8.4", "target": "textplots" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 2.0.3", "target": "thiserror" }, { @@ -19585,11 +19429,11 @@ "target": "tikv_jemallocator" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -19601,7 +19445,7 @@ "target": "tokio_metrics" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -19637,7 +19481,7 @@ "target": "tonic_build" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.1", "target": "tower" }, { @@ -19653,7 +19497,7 @@ "target": "tower_test" }, { - "id": "tower_governor 0.4.3", + "id": "tower_governor 0.4.2", "target": "tower_governor" }, { @@ -19693,11 +19537,11 @@ "target": "turmoil" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" }, { - "id": "uuid 1.12.0", + "id": "uuid 1.11.0", "target": "uuid" }, { @@ -19705,7 +19549,7 @@ "target": "vsock" }, { - "id": "walkdir 2.5.0", + "id": "walkdir 2.3.3", "target": "walkdir" }, { @@ -19713,7 +19557,7 @@ "target": "warp" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" }, { @@ -19733,11 +19577,11 @@ "target": "wasmprinter" }, { - "id": "wasmtime 28.0.1", + "id": "wasmtime 28.0.0", "target": "wasmtime" }, { - "id": "wasmtime-environ 28.0.1", + "id": "wasmtime-environ 28.0.0", "target": "wasmtime_environ" }, { @@ -19745,7 +19589,7 @@ "target": "wast" }, { - "id": "wat 1.223.0", + "id": "wat 1.212.0", "target": "wat" }, { @@ -19791,11 +19635,11 @@ "proc_macro_deps": { "common": [ { - "id": "async-recursion 1.1.1", + "id": "async-recursion 1.0.5", "target": "async_recursion" }, { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" }, { @@ -19819,7 +19663,7 @@ "target": "paste" }, { - "id": "proptest-derive 0.5.1", + "id": "proptest-derive 0.5.0", "target": "proptest_derive" }, { @@ -19827,7 +19671,7 @@ "target": "rust_decimal_macros" }, { - "id": "rustversion 1.0.19", + "id": "rustversion 1.0.14", "target": "rustversion" }, { @@ -19985,13 +19829,13 @@ "selects": { "cfg(target_os = \"redox\")": [ { - "id": "redox_users 0.4.6", + "id": "redox_users 0.4.3", "target": "redox_users" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -20047,13 +19891,13 @@ "selects": { "cfg(target_os = \"redox\")": [ { - "id": "redox_users 0.4.6", + "id": "redox_users 0.4.3", "target": "redox_users" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -20075,14 +19919,14 @@ ], "license_file": "LICENSE-APACHE" }, - "displaydoc 0.2.5": { + "displaydoc 0.2.4": { "name": "displaydoc", - "version": "0.2.5", + "version": "0.2.4", "package_url": "https://github.com/yaahc/displaydoc", "repository": { "Http": { - "url": "https://static.crates.io/crates/displaydoc/0.2.5/download", - "sha256": "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" + "url": "https://static.crates.io/crates/displaydoc/0.2.4/download", + "sha256": "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" } }, "targets": [ @@ -20114,22 +19958,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, - "edition": "2021", - "version": "0.2.5" + "edition": "2018", + "version": "0.2.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -20282,7 +20126,7 @@ "deps": { "common": [ { - "id": "colored 2.2.0", + "id": "colored 2.0.4", "target": "colored" }, { @@ -20341,14 +20185,14 @@ ], "license_file": "LICENSE-APACHE" }, - "dtoa-short 0.3.5": { + "dtoa-short 0.3.4": { "name": "dtoa-short", - "version": "0.3.5", + "version": "0.3.4", "package_url": "https://github.com/upsuper/dtoa-short", "repository": { "Http": { - "url": "https://static.crates.io/crates/dtoa-short/0.3.5/download", - "sha256": "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" + "url": "https://static.crates.io/crates/dtoa-short/0.3.4/download", + "sha256": "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74" } }, "targets": [ @@ -20380,7 +20224,7 @@ "selects": {} }, "edition": "2015", - "version": "0.3.5" + "version": "0.3.4" }, "license": "MPL-2.0", "license_ids": [ @@ -20439,14 +20283,14 @@ "license_ids": [], "license_file": "LICENSE" }, - "dyn-clone 1.0.17": { + "dyn-clone 1.0.14": { "name": "dyn-clone", - "version": "1.0.17", + "version": "1.0.14", "package_url": "https://github.com/dtolnay/dyn-clone", "repository": { "Http": { - "url": "https://static.crates.io/crates/dyn-clone/1.0.17/download", - "sha256": "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" + "url": "https://static.crates.io/crates/dyn-clone/1.0.14/download", + "sha256": "23d2f3407d9a573d666de4b5bdf10569d73ca9478087346697dcbae6244bfbcd" } }, "targets": [ @@ -20469,7 +20313,7 @@ "**" ], "edition": "2018", - "version": "1.0.17" + "version": "1.0.14" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -20528,7 +20372,7 @@ "deps": { "common": [ { - "id": "der 0.7.9", + "id": "der 0.7.8", "target": "der" }, { @@ -20687,7 +20531,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -20849,11 +20693,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -20881,14 +20725,14 @@ ], "license_file": "LICENSE" }, - "ego-tree 0.6.3": { + "ego-tree 0.6.2": { "name": "ego-tree", - "version": "0.6.3", - "package_url": "https://github.com/rust-scraper/ego-tree", + "version": "0.6.2", + "package_url": "https://github.com/programble/ego-tree", "repository": { "Http": { - "url": "https://static.crates.io/crates/ego-tree/0.6.3/download", - "sha256": "12a0bb14ac04a9fcf170d0bbbef949b44cc492f4452bd20c095636956f653642" + "url": "https://static.crates.io/crates/ego-tree/0.6.2/download", + "sha256": "3a68a4904193147e0a8dec3314640e6db742afd5f6e634f428a6af230d9b3591" } }, "targets": [ @@ -20911,7 +20755,7 @@ "**" ], "edition": "2015", - "version": "0.6.3" + "version": "0.6.2" }, "license": "ISC", "license_ids": [ @@ -20919,14 +20763,14 @@ ], "license_file": "LICENSE" }, - "either 1.13.0": { + "either 1.9.0": { "name": "either", - "version": "1.13.0", - "package_url": "https://github.com/rayon-rs/either", + "version": "1.9.0", + "package_url": "https://github.com/bluss/either", "repository": { "Http": { - "url": "https://static.crates.io/crates/either/1.13.0/download", - "sha256": "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" + "url": "https://static.crates.io/crates/either/1.9.0/download", + "sha256": "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" } }, "targets": [ @@ -20956,7 +20800,7 @@ "selects": {} }, "edition": "2018", - "version": "1.13.0" + "version": "1.9.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -21017,7 +20861,7 @@ "target": "base16ct" }, { - "id": "crypto-bigint 0.5.5", + "id": "crypto-bigint 0.5.3", "target": "crypto_bigint" }, { @@ -21102,6 +20946,12 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "alloc" + ], + "selects": {} + }, "edition": "2021", "version": "0.4.0" }, @@ -21112,53 +20962,14 @@ ], "license_file": "LICENSE-APACHE" }, - "embedded-io 0.6.1": { - "name": "embedded-io", - "version": "0.6.1", - "package_url": "https://github.com/rust-embedded/embedded-hal", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/embedded-io/0.6.1/download", - "sha256": "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "embedded_io", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "embedded_io", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.6.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "ena 0.14.3": { + "ena 0.14.2": { "name": "ena", - "version": "0.14.3", + "version": "0.14.2", "package_url": "https://github.com/rust-lang/ena", "repository": { "Http": { - "url": "https://static.crates.io/crates/ena/0.14.3/download", - "sha256": "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5" + "url": "https://static.crates.io/crates/ena/0.14.2/download", + "sha256": "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1" } }, "targets": [ @@ -21183,14 +20994,14 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" } ], "selects": {} }, "edition": "2015", - "version": "0.14.3" + "version": "0.14.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -21245,60 +21056,14 @@ ], "license_file": "LICENSE-APACHE" }, - "encode_unicode 1.0.0": { - "name": "encode_unicode", - "version": "1.0.0", - "package_url": "https://github.com/tormol/encode_unicode", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/encode_unicode/1.0.0/download", - "sha256": "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" - } - }, - "targets": [ - { - "Library": { - "crate_name": "encode_unicode", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "encode_unicode", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.0" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "encoding_rs 0.8.35": { + "encoding_rs 0.8.33": { "name": "encoding_rs", - "version": "0.8.35", + "version": "0.8.33", "package_url": "https://github.com/hsivonen/encoding_rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/encoding_rs/0.8.35/download", - "sha256": "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" + "url": "https://static.crates.io/crates/encoding_rs/0.8.33/download", + "sha256": "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" } }, "targets": [ @@ -21337,7 +21102,7 @@ "selects": {} }, "edition": "2018", - "version": "0.8.35" + "version": "0.8.33" }, "license": "(Apache-2.0 OR MIT) AND BSD-3-Clause", "license_ids": [ @@ -21383,11 +21148,11 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -21407,14 +21172,14 @@ ], "license_file": "LICENSE-APACHE" }, - "enum-as-inner 0.6.1": { + "enum-as-inner 0.6.0": { "name": "enum-as-inner", - "version": "0.6.1", + "version": "0.6.0", "package_url": "https://github.com/bluejekyll/enum-as-inner", "repository": { "Http": { - "url": "https://static.crates.io/crates/enum-as-inner/0.6.1/download", - "sha256": "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" + "url": "https://static.crates.io/crates/enum-as-inner/0.6.0/download", + "sha256": "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" } }, "targets": [ @@ -21439,26 +21204,26 @@ "deps": { "common": [ { - "id": "heck 0.5.0", + "id": "heck 0.4.1", "target": "heck" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.6.1" + "version": "0.6.0" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -21507,15 +21272,15 @@ "target": "num_traits" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -21614,14 +21379,14 @@ ], "license_file": "LICENSE" }, - "env_filter 0.1.3": { + "env_filter 0.1.2": { "name": "env_filter", - "version": "0.1.3", + "version": "0.1.2", "package_url": "https://github.com/rust-cli/env_logger", "repository": { "Http": { - "url": "https://static.crates.io/crates/env_filter/0.1.3/download", - "sha256": "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" + "url": "https://static.crates.io/crates/env_filter/0.1.2/download", + "sha256": "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" } }, "targets": [ @@ -21646,14 +21411,14 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" } ], "selects": {} }, "edition": "2021", - "version": "0.1.3" + "version": "0.1.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -21700,11 +21465,11 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], @@ -21720,14 +21485,14 @@ ], "license_file": "LICENSE-APACHE" }, - "env_logger 0.11.6": { + "env_logger 0.11.2": { "name": "env_logger", - "version": "0.11.6", + "version": "0.11.2", "package_url": "https://github.com/rust-cli/env_logger", "repository": { "Http": { - "url": "https://static.crates.io/crates/env_logger/0.11.6/download", - "sha256": "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0" + "url": "https://static.crates.io/crates/env_logger/0.11.2/download", + "sha256": "6c012a26a7f605efc424dd53697843a72be7dc86ad2d01f7814337794a12231d" } }, "targets": [ @@ -21752,18 +21517,18 @@ "deps": { "common": [ { - "id": "env_filter 0.1.3", + "id": "env_filter 0.1.2", "target": "env_filter" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" } ], "selects": {} }, "edition": "2021", - "version": "0.11.6" + "version": "0.11.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -21851,15 +21616,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -22015,19 +21780,19 @@ ], "cfg(target_os = \"hermit\")": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -22049,14 +21814,14 @@ ], "license_file": "LICENSE-APACHE" }, - "errno 0.3.10": { + "errno 0.3.8": { "name": "errno", - "version": "0.3.10", + "version": "0.3.8", "package_url": "https://github.com/lambda-fairy/rust-errno", "repository": { "Http": { - "url": "https://static.crates.io/crates/errno/0.3.10/download", - "sha256": "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" + "url": "https://static.crates.io/crates/errno/0.3.8/download", + "sha256": "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" } }, "targets": [ @@ -22089,32 +21854,32 @@ "selects": { "cfg(target_os = \"hermit\")": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(windows)": [ { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.52.0", "target": "windows_sys" } ] } }, "edition": "2018", - "version": "0.3.10" + "version": "0.3.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -22171,7 +21936,7 @@ "target": "build_script_build" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -22190,7 +21955,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -22203,14 +21968,14 @@ ], "license_file": "LICENSE" }, - "escargot 0.5.13": { + "escargot 0.5.8": { "name": "escargot", - "version": "0.5.13", + "version": "0.5.8", "package_url": "https://github.com/crate-ci/escargot.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/escargot/0.5.13/download", - "sha256": "05a3ac187a16b5382fef8c69fd1bad123c67b7cf3932240a2d43dcdd32cded88" + "url": "https://static.crates.io/crates/escargot/0.5.8/download", + "sha256": "768064bd3a0e2bedcba91dc87ace90beea91acc41b6a01a3ca8e9aa8827461bf" } }, "targets": [ @@ -22253,15 +22018,15 @@ "deps": { "common": [ { - "id": "escargot 0.5.13", + "id": "escargot 0.5.8", "target": "build_script_build" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -22269,14 +22034,14 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], "selects": {} }, "edition": "2021", - "version": "0.5.13" + "version": "0.5.8" }, "build_script_attrs": { "compile_data_glob": [ @@ -22347,11 +22112,11 @@ "target": "hex" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -22359,7 +22124,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -22367,7 +22132,7 @@ "target": "sha3" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -22451,7 +22216,7 @@ "target": "impl_serde" }, { - "id": "scale-info 2.11.6", + "id": "scale-info 2.9.0", "target": "scale_info" }, { @@ -22542,7 +22307,7 @@ "target": "primitive_types" }, { - "id": "scale-info 2.11.6", + "id": "scale-info 2.9.0", "target": "scale_info" }, { @@ -22563,14 +22328,14 @@ ], "license_file": null }, - "ethers-core 2.0.14": { + "ethers-core 2.0.10": { "name": "ethers-core", - "version": "2.0.14", + "version": "2.0.10", "package_url": "https://github.com/gakonst/ethers-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ethers-core/2.0.14/download", - "sha256": "82d80cc6ad30b14a48ab786523af33b37f28a8623fc06afd55324816ef18fb1f" + "url": "https://static.crates.io/crates/ethers-core/2.0.10/download", + "sha256": "c0a17f0708692024db9956b31d7a20163607d2745953f5ae8125ab368ba280ad" } }, "targets": [ @@ -22595,7 +22360,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.6", + "id": "arrayvec 0.7.4", "target": "arrayvec" }, { @@ -22603,11 +22368,11 @@ "target": "bytes" }, { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { - "id": "const-hex 1.14.0", + "id": "const-hex 1.9.1", "target": "const_hex", "alias": "hex" }, @@ -22628,7 +22393,7 @@ "target": "k256" }, { - "id": "num_enum 0.7.3", + "id": "num_enum 0.7.0", "target": "num_enum" }, { @@ -22648,15 +22413,15 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "strum 0.26.3", + "id": "strum 0.25.0", "target": "strum" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -22664,21 +22429,21 @@ "target": "tiny_keccak" }, { - "id": "unicode-xid 0.2.6", + "id": "unicode-xid 0.2.4", "target": "unicode_xid" } ], "selects": { "cfg(not(target_arch = \"wasm32\"))": [ { - "id": "tempfile 3.15.0", + "id": "tempfile 3.12.0", "target": "tempfile" } ] } }, "edition": "2021", - "version": "2.0.14" + "version": "2.0.10" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -22687,14 +22452,14 @@ ], "license_file": null }, - "ethnum 1.5.0": { + "ethnum 1.4.0": { "name": "ethnum", - "version": "1.5.0", + "version": "1.4.0", "package_url": "https://github.com/nlordell/ethnum-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ethnum/1.5.0/download", - "sha256": "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c" + "url": "https://static.crates.io/crates/ethnum/1.4.0/download", + "sha256": "6c8ff382b2fa527fb7fb06eeebfc5bbb3f17e3cc6b9d70b006c41daa8824adac" } }, "targets": [ @@ -22732,7 +22497,7 @@ "selects": {} }, "edition": "2021", - "version": "1.5.0" + "version": "1.4.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -22780,14 +22545,266 @@ ], "license_file": "LICENSE-APACHE" }, - "event-listener 5.4.0": { + "event-listener 4.0.3": { + "name": "event-listener", + "version": "4.0.3", + "package_url": "https://github.com/smol-rs/event-listener", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/event-listener/4.0.3/download", + "sha256": "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" + } + }, + "targets": [ + { + "Library": { + "crate_name": "event_listener", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "event_listener", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "parking", + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "concurrent-queue 2.5.0", + "target": "concurrent_queue" + }, + { + "id": "pin-project-lite 0.2.13", + "target": "pin_project_lite" + } + ], + "selects": { + "aarch64-apple-darwin": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "aarch64-apple-ios": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "aarch64-apple-ios-sim": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "aarch64-linux-android": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "aarch64-pc-windows-msvc": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "aarch64-unknown-fuchsia": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "aarch64-unknown-linux-gnu": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "aarch64-unknown-nixos-gnu": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "aarch64-unknown-nto-qnx710": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "arm-unknown-linux-gnueabi": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "armv7-linux-androideabi": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "armv7-unknown-linux-gnueabi": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "i686-apple-darwin": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "i686-linux-android": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "i686-pc-windows-msvc": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "i686-unknown-freebsd": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "i686-unknown-linux-gnu": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "powerpc-unknown-linux-gnu": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "riscv32imc-unknown-none-elf": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "riscv64gc-unknown-none-elf": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "s390x-unknown-linux-gnu": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "thumbv7em-none-eabi": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "thumbv8m.main-none-eabi": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "x86_64-apple-darwin": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "x86_64-apple-ios": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "x86_64-linux-android": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "x86_64-pc-windows-msvc": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "x86_64-unknown-freebsd": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "x86_64-unknown-fuchsia": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "x86_64-unknown-linux-gnu": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "x86_64-unknown-nixos-gnu": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ], + "x86_64-unknown-none": [ + { + "id": "parking 2.1.1", + "target": "parking" + } + ] + } + }, + "edition": "2021", + "version": "4.0.3" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "event-listener 5.3.1": { "name": "event-listener", - "version": "5.4.0", + "version": "5.3.1", "package_url": "https://github.com/smol-rs/event-listener", "repository": { "Http": { - "url": "https://static.crates.io/crates/event-listener/5.4.0/download", - "sha256": "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" + "url": "https://static.crates.io/crates/event-listener/5.3.1/download", + "sha256": "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" } }, "targets": [ @@ -22824,207 +22841,207 @@ "target": "concurrent_queue" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "aarch64-apple-ios": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "aarch64-apple-ios-sim": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "aarch64-linux-android": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "aarch64-pc-windows-msvc": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "aarch64-unknown-fuchsia": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "aarch64-unknown-linux-gnu": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "arm-unknown-linux-gnueabi": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "armv7-linux-androideabi": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "i686-apple-darwin": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "i686-linux-android": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "i686-pc-windows-msvc": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "i686-unknown-freebsd": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "i686-unknown-linux-gnu": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "powerpc-unknown-linux-gnu": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "riscv32imc-unknown-none-elf": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "riscv64gc-unknown-none-elf": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "s390x-unknown-linux-gnu": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "thumbv7em-none-eabi": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "thumbv8m.main-none-eabi": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "x86_64-apple-darwin": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "x86_64-apple-ios": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "x86_64-linux-android": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "x86_64-pc-windows-msvc": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "x86_64-unknown-freebsd": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "x86_64-unknown-fuchsia": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "x86_64-unknown-linux-gnu": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ], "x86_64-unknown-none": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.1", "target": "parking" } ] } }, "edition": "2021", - "version": "5.4.0" + "version": "5.3.1" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -23033,14 +23050,72 @@ ], "license_file": "LICENSE-APACHE" }, - "event-listener-strategy 0.5.3": { + "event-listener-strategy 0.4.0": { "name": "event-listener-strategy", - "version": "0.5.3", + "version": "0.4.0", + "package_url": "https://github.com/smol-rs/event-listener", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/event-listener-strategy/0.4.0/download", + "sha256": "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" + } + }, + "targets": [ + { + "Library": { + "crate_name": "event_listener_strategy", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "event_listener_strategy", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "event-listener 4.0.3", + "target": "event_listener" + }, + { + "id": "pin-project-lite 0.2.13", + "target": "pin_project_lite" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.4.0" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "event-listener-strategy 0.5.2": { + "name": "event-listener-strategy", + "version": "0.5.2", "package_url": "https://github.com/smol-rs/event-listener-strategy", "repository": { "Http": { - "url": "https://static.crates.io/crates/event-listener-strategy/0.5.3/download", - "sha256": "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2" + "url": "https://static.crates.io/crates/event-listener-strategy/0.5.2/download", + "sha256": "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" } }, "targets": [ @@ -23071,18 +23146,18 @@ "deps": { "common": [ { - "id": "event-listener 5.4.0", + "id": "event-listener 5.3.1", "target": "event_listener" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], "selects": {} }, "edition": "2021", - "version": "0.5.3" + "version": "0.5.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -23123,7 +23198,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -23147,11 +23222,11 @@ "target": "strum" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" } ], @@ -23202,7 +23277,7 @@ "target": "errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -23256,14 +23331,14 @@ ], "license_file": "LICENSE" }, - "eyre 0.6.12": { + "eyre 0.6.8": { "name": "eyre", - "version": "0.6.12", - "package_url": "https://github.com/eyre-rs/eyre", + "version": "0.6.8", + "package_url": "https://github.com/yaahc/eyre", "repository": { "Http": { - "url": "https://static.crates.io/crates/eyre/0.6.12/download", - "sha256": "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec" + "url": "https://static.crates.io/crates/eyre/0.6.8/download", + "sha256": "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb" } }, "targets": [ @@ -23308,7 +23383,7 @@ "deps": { "common": [ { - "id": "eyre 0.6.12", + "id": "eyre 0.6.8", "target": "build_script_build" }, { @@ -23316,14 +23391,14 @@ "target": "indenter" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "selects": {} }, "edition": "2018", - "version": "0.6.12" + "version": "0.6.8" }, "build_script_attrs": { "compile_data_glob": [ @@ -23464,14 +23539,64 @@ ], "license_file": "LICENSE-APACHE" }, - "fastrand 2.3.0": { + "fastrand 1.9.0": { "name": "fastrand", - "version": "2.3.0", + "version": "1.9.0", + "package_url": "https://github.com/smol-rs/fastrand", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/fastrand/1.9.0/download", + "sha256": "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" + } + }, + "targets": [ + { + "Library": { + "crate_name": "fastrand", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "fastrand", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [], + "selects": { + "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ + { + "id": "instant 0.1.12", + "target": "instant" + } + ] + } + }, + "edition": "2018", + "version": "1.9.0" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "fastrand 2.2.0": { + "name": "fastrand", + "version": "2.2.0", "package_url": "https://github.com/smol-rs/fastrand", "repository": { "Http": { - "url": "https://static.crates.io/crates/fastrand/2.3.0/download", - "sha256": "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" + "url": "https://static.crates.io/crates/fastrand/2.2.0/download", + "sha256": "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4" } }, "targets": [ @@ -23502,7 +23627,7 @@ "selects": {} }, "edition": "2018", - "version": "2.3.0" + "version": "2.2.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -23628,14 +23753,14 @@ ], "license_file": "LICENSE-APACHE" }, - "fiat-crypto 0.2.9": { + "fiat-crypto 0.2.6": { "name": "fiat-crypto", - "version": "0.2.9", + "version": "0.2.6", "package_url": "https://github.com/mit-plv/fiat-crypto", "repository": { "Http": { - "url": "https://static.crates.io/crates/fiat-crypto/0.2.9/download", - "sha256": "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" + "url": "https://static.crates.io/crates/fiat-crypto/0.2.6/download", + "sha256": "1676f435fc1dadde4d03e43f5d62b259e1ce5f40bd4ffb21db2b42ebe59c1382" } }, "targets": [ @@ -23658,7 +23783,7 @@ "**" ], "edition": "2018", - "version": "0.2.9" + "version": "0.2.6" }, "license": "MIT OR Apache-2.0 OR BSD-1-Clause", "license_ids": [ @@ -23668,14 +23793,14 @@ ], "license_file": "LICENSE-APACHE" }, - "filetime 0.2.25": { + "filetime 0.2.22": { "name": "filetime", - "version": "0.2.25", + "version": "0.2.22", "package_url": "https://github.com/alexcrichton/filetime", "repository": { "Http": { - "url": "https://static.crates.io/crates/filetime/0.2.25/download", - "sha256": "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" + "url": "https://static.crates.io/crates/filetime/0.2.22/download", + "sha256": "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" } }, "targets": [ @@ -23707,26 +23832,26 @@ "selects": { "cfg(target_os = \"redox\")": [ { - "id": "libredox 0.1.3", - "target": "libredox" + "id": "redox_syscall 0.3.5", + "target": "syscall" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(windows)": [ { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.48.0", "target": "windows_sys" } ] } }, "edition": "2018", - "version": "0.2.25" + "version": "0.2.22" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -23783,14 +23908,14 @@ "target": "build_script_build" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "selects": { "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" } ], @@ -23815,7 +23940,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -23937,14 +24062,14 @@ ], "license_file": "LICENSE-APACHE" }, - "flagset 0.4.6": { + "flagset 0.4.4": { "name": "flagset", - "version": "0.4.6", + "version": "0.4.4", "package_url": "https://github.com/enarx/flagset", "repository": { "Http": { - "url": "https://static.crates.io/crates/flagset/0.4.6/download", - "sha256": "b3ea1ec5f8307826a5b71094dd91fc04d4ae75d5709b20ad351c7fb4815c86ec" + "url": "https://static.crates.io/crates/flagset/0.4.4/download", + "sha256": "d52a7e408202050813e6f1d9addadcaafef3dca7530c7ddfb005d4081cce6779" } }, "targets": [ @@ -23967,7 +24092,7 @@ "**" ], "edition": "2021", - "version": "0.4.6" + "version": "0.4.4" }, "license": "Apache-2.0", "license_ids": [ @@ -23975,14 +24100,14 @@ ], "license_file": "LICENSE" }, - "flate2 1.0.35": { + "flate2 1.0.31": { "name": "flate2", - "version": "1.0.35", + "version": "1.0.31", "package_url": "https://github.com/rust-lang/flate2-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/flate2/1.0.35/download", - "sha256": "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c" + "url": "https://static.crates.io/crates/flate2/1.0.31/download", + "sha256": "7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920" } }, "targets": [ @@ -24016,18 +24141,18 @@ "deps": { "common": [ { - "id": "crc32fast 1.4.2", + "id": "crc32fast 1.3.2", "target": "crc32fast" }, { - "id": "miniz_oxide 0.8.3", + "id": "miniz_oxide 0.7.1", "target": "miniz_oxide" } ], "selects": {} }, "edition": "2018", - "version": "1.0.35" + "version": "1.0.31" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -24036,14 +24161,14 @@ ], "license_file": "LICENSE-APACHE" }, - "float-cmp 0.10.0": { + "float-cmp 0.9.0": { "name": "float-cmp", - "version": "0.10.0", + "version": "0.9.0", "package_url": "https://github.com/mikedilger/float-cmp", "repository": { "Http": { - "url": "https://static.crates.io/crates/float-cmp/0.10.0/download", - "sha256": "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8" + "url": "https://static.crates.io/crates/float-cmp/0.9.0/download", + "sha256": "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" } }, "targets": [ @@ -24083,7 +24208,7 @@ "selects": {} }, "edition": "2018", - "version": "0.10.0" + "version": "0.9.0" }, "license": "MIT", "license_ids": [ @@ -24267,7 +24392,7 @@ "target": "nonempty" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -24282,14 +24407,14 @@ ], "license_file": "LICENSE.txt" }, - "fqdn 0.3.12": { + "fqdn 0.3.11": { "name": "fqdn", - "version": "0.3.12", + "version": "0.3.11", "package_url": "https://github.com/Orange-OpenSource/fqdn", "repository": { "Http": { - "url": "https://static.crates.io/crates/fqdn/0.3.12/download", - "sha256": "eb540cf7bc4fe6df9d8f7f0c974cfd0dce8ed4e9e8884e73433b503ee78b4e7d" + "url": "https://static.crates.io/crates/fqdn/0.3.11/download", + "sha256": "08b1eaa7dfddeab6036292995620bf0435712e619db6d7690605897e76975eb0" } }, "targets": [ @@ -24319,7 +24444,7 @@ "selects": {} }, "edition": "2021", - "version": "0.3.12" + "version": "0.3.11" }, "license": "MIT", "license_ids": [ @@ -24327,14 +24452,14 @@ ], "license_file": null }, - "fqdn 0.4.4": { + "fqdn 0.4.1": { "name": "fqdn", - "version": "0.4.4", + "version": "0.4.1", "package_url": "https://github.com/Orange-OpenSource/fqdn", "repository": { "Http": { - "url": "https://static.crates.io/crates/fqdn/0.4.4/download", - "sha256": "8f66e93156d144bd3a9a970033d04c6fbfb4b641275d8eaa3ff83f5b9c232496" + "url": "https://static.crates.io/crates/fqdn/0.4.1/download", + "sha256": "5eeee501d87b436020fcd3065cc981b5e4d22f2066735268b36b9d513d23e553" } }, "targets": [ @@ -24364,7 +24489,7 @@ "selects": {} }, "edition": "2021", - "version": "0.4.4" + "version": "0.4.1" }, "license": "MIT", "license_ids": [ @@ -24558,7 +24683,7 @@ "target": "mac" }, { - "id": "new_debug_unreachable 1.0.6", + "id": "new_debug_unreachable 1.0.4", "target": "debug_unreachable" } ], @@ -24875,14 +25000,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-lite 2.6.0": { + "futures-lite 2.0.0": { "name": "futures-lite", - "version": "2.6.0", + "version": "2.0.0", "package_url": "https://github.com/smol-rs/futures-lite", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-lite/2.6.0/download", - "sha256": "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" + "url": "https://static.crates.io/crates/futures-lite/2.0.0/download", + "sha256": "9c1155db57329dca6d018b61e76b1488ce9a2e5e44028cac420a5898f4fcef63" } }, "targets": [ @@ -24910,16 +25035,18 @@ "default", "fastrand", "futures-io", + "memchr", "parking", "race", - "std" + "std", + "waker-fn" ], "selects": {} }, "deps": { "common": [ { - "id": "fastrand 2.3.0", + "id": "fastrand 2.2.0", "target": "fastrand" }, { @@ -24931,18 +25058,26 @@ "target": "futures_io" }, { - "id": "parking 2.2.1", + "id": "memchr 2.6.4", + "target": "memchr" + }, + { + "id": "parking 2.1.1", "target": "parking" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" + }, + { + "id": "waker-fn 1.1.1", + "target": "waker_fn" } ], "selects": {} }, - "edition": "2021", - "version": "2.6.0" + "edition": "2018", + "version": "2.0.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -24983,15 +25118,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -25050,11 +25185,11 @@ "target": "futures_io" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" } @@ -25164,14 +25299,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-timer 3.0.3": { + "futures-timer 3.0.2": { "name": "futures-timer", - "version": "3.0.3", + "version": "3.0.2", "package_url": "https://github.com/async-rs/futures-timer", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-timer/3.0.3/download", - "sha256": "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" + "url": "https://static.crates.io/crates/futures-timer/3.0.2/download", + "sha256": "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" } }, "targets": [ @@ -25194,7 +25329,7 @@ "**" ], "edition": "2018", - "version": "3.0.3" + "version": "3.0.2" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -25274,11 +25409,11 @@ "target": "futures_task" }, { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -25398,104 +25533,6 @@ ], "license_file": "LICENSE-APACHE" }, - "generator 0.8.4": { - "name": "generator", - "version": "0.8.4", - "package_url": "https://github.com/Xudong-Huang/generator-rs.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/generator/0.8.4/download", - "sha256": "cc6bd114ceda131d3b1d665eba35788690ad37f5916457286b32ab6fd3c438dd" - } - }, - "targets": [ - { - "Library": { - "crate_name": "generator", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "generator", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "generator 0.8.4", - "target": "build_script_build" - }, - { - "id": "log 0.4.25", - "target": "log" - } - ], - "selects": { - "cfg(unix)": [ - { - "id": "libc 0.2.169", - "target": "libc" - } - ], - "cfg(windows)": [ - { - "id": "windows 0.58.0", - "target": "windows" - } - ] - } - }, - "edition": "2021", - "version": "0.8.4" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ], - "proc_macro_deps": { - "common": [ - { - "id": "rustversion 1.0.19", - "target": "rustversion" - } - ], - "selects": {} - } - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "generic-array 0.14.7": { "name": "generic-array", "version": "0.14.7", @@ -25574,7 +25611,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.5", + "id": "version_check 0.9.4", "target": "version_check" } ], @@ -25623,7 +25660,7 @@ "target": "c_linked_list" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -25700,7 +25737,7 @@ "target": "build_script_build" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -25766,7 +25803,7 @@ "deps": { "common": [ { - "id": "unicode-width 0.1.14", + "id": "unicode-width 0.1.11", "target": "unicode_width" } ], @@ -25782,14 +25819,14 @@ ], "license_file": "LICENSE-APACHE" }, - "getrandom 0.2.15": { + "getrandom 0.2.10": { "name": "getrandom", - "version": "0.2.15", + "version": "0.2.10", "package_url": "https://github.com/rust-random/getrandom", "repository": { "Http": { - "url": "https://static.crates.io/crates/getrandom/0.2.15/download", - "sha256": "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" + "url": "https://static.crates.io/crates/getrandom/0.2.10/download", + "sha256": "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" } }, "targets": [ @@ -25816,13 +25853,7 @@ "custom", "std" ], - "selects": { - "wasm32-unknown-unknown": [ - "js", - "js-sys", - "wasm-bindgen" - ] - } + "selects": {} }, "deps": { "common": [ @@ -25840,24 +25871,14 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } - ], - "wasm32-unknown-unknown": [ - { - "id": "js-sys 0.3.77", - "target": "js_sys" - }, - { - "id": "wasm-bindgen 0.2.100", - "target": "wasm_bindgen" - } ] } }, "edition": "2018", - "version": "0.2.15" + "version": "0.2.10" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -25936,6 +25957,52 @@ ], "license_file": "LICENSE-APACHE" }, + "gimli 0.28.0": { + "name": "gimli", + "version": "0.28.0", + "package_url": "https://github.com/gimli-rs/gimli", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/gimli/0.28.0/download", + "sha256": "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" + } + }, + "targets": [ + { + "Library": { + "crate_name": "gimli", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "gimli", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "read", + "read-core" + ], + "selects": {} + }, + "edition": "2018", + "version": "0.28.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "gimli 0.31.1": { "name": "gimli", "version": "0.31.1", @@ -25977,7 +26044,7 @@ "deps": { "common": [ { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" } ], @@ -25993,14 +26060,14 @@ ], "license_file": "LICENSE-APACHE" }, - "glob 0.3.2": { + "glob 0.3.1": { "name": "glob", - "version": "0.3.2", + "version": "0.3.1", "package_url": "https://github.com/rust-lang/glob", "repository": { "Http": { - "url": "https://static.crates.io/crates/glob/0.3.2/download", - "sha256": "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" + "url": "https://static.crates.io/crates/glob/0.3.1/download", + "sha256": "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" } }, "targets": [ @@ -26023,7 +26090,7 @@ "**" ], "edition": "2015", - "version": "0.3.2" + "version": "0.3.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -26032,14 +26099,14 @@ ], "license_file": "LICENSE-APACHE" }, - "governor 0.6.3": { + "governor 0.6.0": { "name": "governor", - "version": "0.6.3", - "package_url": "https://github.com/boinkor-net/governor.git", + "version": "0.6.0", + "package_url": "https://github.com/antifuchs/governor.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/governor/0.6.3/download", - "sha256": "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b" + "url": "https://static.crates.io/crates/governor/0.6.0/download", + "sha256": "821239e5672ff23e2a7060901fa622950bbd80b649cdaadd78d1c1767ed14eb4" } }, "targets": [ @@ -26089,7 +26156,7 @@ "target": "futures" }, { - "id": "futures-timer 3.0.3", + "id": "futures-timer 3.0.2", "target": "futures_timer" }, { @@ -26101,15 +26168,11 @@ "target": "nonzero_ext" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { - "id": "portable-atomic 1.10.0", - "target": "portable_atomic" - }, - { - "id": "quanta 0.12.5", + "id": "quanta 0.11.1", "target": "quanta" }, { @@ -26119,16 +26182,12 @@ { "id": "smallvec 1.13.2", "target": "smallvec" - }, - { - "id": "spinning_top 0.3.0", - "target": "spinning_top" } ], "selects": {} }, "edition": "2018", - "version": "0.6.3" + "version": "0.6.0" }, "license": "MIT", "license_ids": [ @@ -26261,7 +26320,7 @@ "target": "http" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { @@ -26269,7 +26328,7 @@ "target": "slab" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -26292,14 +26351,14 @@ ], "license_file": "LICENSE" }, - "h2 0.4.7": { + "h2 0.4.4": { "name": "h2", - "version": "0.4.7", + "version": "0.4.4", "package_url": "https://github.com/hyperium/h2", "repository": { "Http": { - "url": "https://static.crates.io/crates/h2/0.4.7/download", - "sha256": "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e" + "url": "https://static.crates.io/crates/h2/0.4.4/download", + "sha256": "816ec7294445779408f36fe57bc5b7fc1cf59664059096c65f905c1c61f58069" } }, "targets": [ @@ -26323,10 +26382,6 @@ ], "deps": { "common": [ - { - "id": "atomic-waker 1.1.2", - "target": "atomic_waker" - }, { "id": "bytes 1.9.0", "target": "bytes" @@ -26343,12 +26398,16 @@ "id": "futures-sink 0.3.31", "target": "futures_sink" }, + { + "id": "futures-util 0.3.31", + "target": "futures_util" + }, { "id": "http 1.2.0", "target": "http" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { @@ -26356,7 +26415,7 @@ "target": "slab" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -26371,7 +26430,7 @@ "selects": {} }, "edition": "2021", - "version": "0.4.7" + "version": "0.4.4" }, "license": "MIT", "license_ids": [ @@ -26379,14 +26438,14 @@ ], "license_file": "LICENSE" }, - "half 1.8.3": { + "half 1.8.2": { "name": "half", - "version": "1.8.3", + "version": "1.8.2", "package_url": "https://github.com/starkat99/half-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/half/1.8.3/download", - "sha256": "1b43ede17f21864e81be2fa654110bf1e793774238d86ef8555c37e6519c0403" + "url": "https://static.crates.io/crates/half/1.8.2/download", + "sha256": "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" } }, "targets": [ @@ -26409,62 +26468,7 @@ "**" ], "edition": "2018", - "version": "1.8.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE" - }, - "half 2.4.1": { - "name": "half", - "version": "2.4.1", - "package_url": "https://github.com/starkat99/half-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/half/2.4.1/download", - "sha256": "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" - } - }, - "targets": [ - { - "Library": { - "crate_name": "half", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "half", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - } - ], - "selects": { - "cfg(target_arch = \"spirv\")": [ - { - "id": "crunchy 0.2.2", - "target": "crunchy" - } - ] - } - }, - "edition": "2021", - "version": "2.4.1" + "version": "1.8.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -26687,14 +26691,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hdrhistogram 7.5.4": { + "hdrhistogram 7.5.2": { "name": "hdrhistogram", - "version": "7.5.4", + "version": "7.5.2", "package_url": "https://github.com/HdrHistogram/HdrHistogram_rust.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/hdrhistogram/7.5.4/download", - "sha256": "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d" + "url": "https://static.crates.io/crates/hdrhistogram/7.5.2/download", + "sha256": "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8" } }, "targets": [ @@ -26730,7 +26734,7 @@ "selects": {} }, "edition": "2018", - "version": "7.5.4" + "version": "7.5.2" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -26771,7 +26775,7 @@ "deps": { "common": [ { - "id": "base64 0.21.7", + "id": "base64 0.21.4", "target": "base64" }, { @@ -26842,7 +26846,7 @@ "deps": { "common": [ { - "id": "base64 0.21.7", + "id": "base64 0.21.4", "target": "base64" }, { @@ -27007,7 +27011,7 @@ "deps": { "common": [ { - "id": "unicode-segmentation 1.12.0", + "id": "unicode-segmentation 1.10.1", "target": "unicode_segmentation" } ], @@ -27139,7 +27143,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -27328,7 +27332,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.6", + "id": "arrayvec 0.7.4", "target": "arrayvec" } ], @@ -27487,14 +27491,14 @@ ], "license_file": null }, - "hickory-proto 0.24.2": { + "hickory-proto 0.24.1": { "name": "hickory-proto", - "version": "0.24.2", + "version": "0.24.1", "package_url": "https://github.com/hickory-dns/hickory-dns", "repository": { "Http": { - "url": "https://static.crates.io/crates/hickory-proto/0.24.2/download", - "sha256": "447afdcdb8afb9d0a852af6dc65d9b285ce720ed7a59e42a8bf2e931c67bc1b5" + "url": "https://static.crates.io/crates/hickory-proto/0.24.1/download", + "sha256": "07698b8420e2f0d6447a436ba999ec85d8fbf2a398bbd737b82cac4a2e96e512" } }, "targets": [ @@ -27549,7 +27553,7 @@ "target": "cfg_if" }, { - "id": "data-encoding 2.7.0", + "id": "data-encoding 2.4.0", "target": "data_encoding" }, { @@ -27573,7 +27577,7 @@ "target": "http" }, { - "id": "idna 1.0.3", + "id": "idna 0.4.0", "target": "idna" }, { @@ -27581,7 +27585,7 @@ "target": "ipnet" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -27597,19 +27601,19 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tinyvec 1.8.1", + "id": "tinyvec 1.6.0", "target": "tinyvec" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -27621,11 +27625,11 @@ "target": "tracing" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], @@ -27635,17 +27639,17 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" }, { - "id": "enum-as-inner 0.6.1", + "id": "enum-as-inner 0.6.0", "target": "enum_as_inner" } ], "selects": {} }, - "version": "0.24.2" + "version": "0.24.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -27654,14 +27658,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hickory-resolver 0.24.2": { + "hickory-resolver 0.24.1": { "name": "hickory-resolver", - "version": "0.24.2", + "version": "0.24.1", "package_url": "https://github.com/hickory-dns/hickory-dns", "repository": { "Http": { - "url": "https://static.crates.io/crates/hickory-resolver/0.24.2/download", - "sha256": "0a2e2aba9c389ce5267d31cf1e4dace82390ae276b0b364ea55630b1fa1b44b4" + "url": "https://static.crates.io/crates/hickory-resolver/0.24.1/download", + "sha256": "28757f23aa75c98f254cf0405e6d8c25b831b32921b050a66692427679b1f243" } }, "targets": [ @@ -27714,7 +27718,7 @@ "target": "futures_util" }, { - "id": "hickory-proto 0.24.2", + "id": "hickory-proto 0.24.1", "target": "hickory_proto" }, { @@ -27722,11 +27726,11 @@ "target": "lru_cache" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { @@ -27746,11 +27750,11 @@ "target": "smallvec" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -27762,7 +27766,7 @@ "target": "tracing" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], @@ -27788,7 +27792,7 @@ } }, "edition": "2021", - "version": "0.24.2" + "version": "0.24.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -27899,14 +27903,14 @@ ], "license_file": "LICENSE-APACHE" }, - "home 0.5.11": { + "home 0.5.5": { "name": "home", - "version": "0.5.11", + "version": "0.5.5", "package_url": "https://github.com/rust-lang/cargo", "repository": { "Http": { - "url": "https://static.crates.io/crates/home/0.5.11/download", - "sha256": "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" + "url": "https://static.crates.io/crates/home/0.5.5/download", + "sha256": "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" } }, "targets": [ @@ -27933,14 +27937,14 @@ "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.48.0", "target": "windows_sys" } ] } }, - "edition": "2021", - "version": "0.5.11" + "edition": "2018", + "version": "0.5.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -27994,7 +27998,7 @@ "selects": { "cfg(any(unix, target_os = \"redox\"))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -28063,7 +28067,7 @@ "target": "build_script_build" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -28090,11 +28094,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -28152,7 +28156,7 @@ "target": "fnv" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" } ], @@ -28215,7 +28219,7 @@ "target": "fnv" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" } ], @@ -28271,7 +28275,7 @@ "target": "http" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], @@ -28385,7 +28389,7 @@ "target": "http_body" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], @@ -28400,14 +28404,14 @@ ], "license_file": "LICENSE" }, - "httparse 1.9.5": { + "httparse 1.8.0": { "name": "httparse", - "version": "1.9.5", + "version": "1.8.0", "package_url": "https://github.com/seanmonstar/httparse", "repository": { "Http": { - "url": "https://static.crates.io/crates/httparse/1.9.5/download", - "sha256": "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" + "url": "https://static.crates.io/crates/httparse/1.8.0/download", + "sha256": "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" } }, "targets": [ @@ -28451,14 +28455,14 @@ "deps": { "common": [ { - "id": "httparse 1.9.5", + "id": "httparse 1.8.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.9.5" + "version": "1.8.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -28468,7 +28472,7 @@ "**" ] }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -28546,7 +28550,7 @@ "deps": { "common": [ { - "id": "libm 0.2.11", + "id": "libm 0.2.8", "target": "libm" } ], @@ -28653,14 +28657,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hyper 0.14.32": { + "hyper 0.14.27": { "name": "hyper", - "version": "0.14.32", + "version": "0.14.27", "package_url": "https://github.com/hyperium/hyper", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper/0.14.32/download", - "sha256": "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" + "url": "https://static.crates.io/crates/hyper/0.14.27/download", + "sha256": "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" } }, "targets": [ @@ -28686,6 +28690,7 @@ "common": [ "client", "default", + "full", "h2", "http1", "http2", @@ -28728,7 +28733,7 @@ "target": "http_body" }, { - "id": "httparse 1.9.5", + "id": "httparse 1.8.0", "target": "httparse" }, { @@ -28736,19 +28741,19 @@ "target": "httpdate" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.4.9", "target": "socket2" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -28767,7 +28772,7 @@ "selects": {} }, "edition": "2018", - "version": "0.14.32" + "version": "0.14.27" }, "license": "MIT", "license_ids": [ @@ -28775,14 +28780,14 @@ ], "license_file": "LICENSE" }, - "hyper 1.5.2": { + "hyper 1.5.1": { "name": "hyper", - "version": "1.5.2", + "version": "1.5.1", "package_url": "https://github.com/hyperium/hyper", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper/1.5.2/download", - "sha256": "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0" + "url": "https://static.crates.io/crates/hyper/1.5.1/download", + "sha256": "97818827ef4f364230e16705d4706e2897df2bb60617d6ca15d598025a3c481f" } }, "targets": [ @@ -28830,7 +28835,7 @@ "target": "futures_util" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { @@ -28842,7 +28847,7 @@ "target": "http_body" }, { - "id": "httparse 1.9.5", + "id": "httparse 1.8.0", "target": "httparse" }, { @@ -28850,11 +28855,11 @@ "target": "httpdate" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -28862,7 +28867,7 @@ "target": "smallvec" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -28873,7 +28878,7 @@ "selects": {} }, "edition": "2021", - "version": "1.5.2" + "version": "1.5.1" }, "license": "MIT", "license_ids": [ @@ -28929,7 +28934,7 @@ "target": "http" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -28937,11 +28942,11 @@ "target": "hyper_util" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -29014,11 +29019,11 @@ "target": "http" }, { - "id": "hyper 0.14.32", + "id": "hyper 0.14.27", "target": "hyper" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -29030,7 +29035,7 @@ "target": "rustls_native_certs" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -29051,14 +29056,14 @@ ], "license_file": "LICENSE" }, - "hyper-rustls 0.27.5": { + "hyper-rustls 0.27.3": { "name": "hyper-rustls", - "version": "0.27.5", + "version": "0.27.3", "package_url": "https://github.com/rustls/hyper-rustls", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper-rustls/0.27.5/download", - "sha256": "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2" + "url": "https://static.crates.io/crates/hyper-rustls/0.27.3/download", + "sha256": "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" } }, "targets": [ @@ -29233,7 +29238,7 @@ "target": "http" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -29241,28 +29246,28 @@ "target": "hyper_util" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -29273,200 +29278,200 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "aarch64-apple-ios": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "aarch64-apple-ios-sim": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "aarch64-linux-android": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "aarch64-pc-windows-msvc": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "aarch64-unknown-fuchsia": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "aarch64-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "arm-unknown-linux-gnueabi": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "armv7-linux-androideabi": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "i686-apple-darwin": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "i686-linux-android": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "i686-pc-windows-msvc": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "i686-unknown-freebsd": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "i686-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "powerpc-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "riscv32imc-unknown-none-elf": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "riscv64gc-unknown-none-elf": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "s390x-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "thumbv7em-none-eabi": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "thumbv8m.main-none-eabi": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-apple-darwin": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-apple-ios": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-linux-android": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-pc-windows-msvc": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-unknown-freebsd": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-unknown-fuchsia": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-unknown-none": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ] } }, "edition": "2021", - "version": "0.27.5" + "version": "0.27.3" }, "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ @@ -29516,7 +29521,7 @@ "target": "http" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -29524,11 +29529,11 @@ "target": "hyper_util" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -29548,14 +29553,14 @@ ], "license_file": "LICENSE-APACHE.md" }, - "hyper-timeout 0.5.2": { + "hyper-timeout 0.5.1": { "name": "hyper-timeout", - "version": "0.5.2", + "version": "0.5.1", "package_url": "https://github.com/hjr3/hyper-timeout", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper-timeout/0.5.2/download", - "sha256": "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" + "url": "https://static.crates.io/crates/hyper-timeout/0.5.1/download", + "sha256": "3203a961e5c83b6f5498933e78b6b263e208c197b63e9c6c53cc82ffd3f63793" } }, "targets": [ @@ -29580,7 +29585,7 @@ "deps": { "common": [ { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -29588,11 +29593,11 @@ "target": "hyper_util" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -29603,7 +29608,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.2" + "version": "0.5.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -29680,19 +29685,19 @@ "target": "http_body" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -29715,14 +29720,14 @@ ], "license_file": "LICENSE" }, - "iana-time-zone 0.1.61": { + "iana-time-zone 0.1.59": { "name": "iana-time-zone", - "version": "0.1.61", + "version": "0.1.59", "package_url": "https://github.com/strawlab/iana-time-zone", "repository": { "Http": { - "url": "https://static.crates.io/crates/iana-time-zone/0.1.61/download", - "sha256": "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" + "url": "https://static.crates.io/crates/iana-time-zone/0.1.59/download", + "sha256": "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539" } }, "targets": [ @@ -29753,22 +29758,22 @@ "deps": { "common": [], "selects": { - "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [ + "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ + { + "id": "core-foundation-sys 0.8.7", + "target": "core_foundation_sys" + } + ], + "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], - "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ - { - "id": "core-foundation-sys 0.8.7", - "target": "core_foundation_sys" - } - ], "cfg(target_os = \"android\")": [ { "id": "android_system_properties 0.1.5", @@ -29790,7 +29795,7 @@ } }, "edition": "2018", - "version": "0.1.61" + "version": "0.1.59" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -29862,7 +29867,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -29924,7 +29929,7 @@ "target": "async_channel" }, { - "id": "async-lock 3.4.0", + "id": "async-lock 3.3.0", "target": "async_lock" }, { @@ -29940,11 +29945,11 @@ "target": "cached" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "der 0.7.9", + "id": "der 0.7.8", "target": "der" }, { @@ -30012,15 +30017,15 @@ "target": "rand" }, { - "id": "rangemap 1.5.1", + "id": "rangemap 1.4.0", "target": "rangemap" }, { - "id": "reqwest 0.12.12", + "id": "reqwest 0.12.9", "target": "reqwest" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { @@ -30044,7 +30049,7 @@ "target": "sha2" }, { - "id": "simple_asn1 0.6.3", + "id": "simple_asn1 0.6.2", "target": "simple_asn1" }, { @@ -30052,11 +30057,11 @@ "target": "stop_token" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 2.0.3", "target": "thiserror" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" }, { @@ -30064,14 +30069,14 @@ "target": "tower_service" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" } ], "selects": { "cfg(not(target_family = \"wasm\"))": [ { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ] @@ -30081,7 +30086,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" }, { @@ -30137,7 +30142,7 @@ "target": "ahash" }, { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -30165,7 +30170,7 @@ "target": "chacha20poly1305" }, { - "id": "clap 4.5.26", + "id": "clap 4.5.20", "target": "clap" }, { @@ -30173,7 +30178,7 @@ "target": "cloudflare" }, { - "id": "fqdn 0.4.4", + "id": "fqdn 0.4.1", "target": "fqdn" }, { @@ -30185,11 +30190,11 @@ "target": "futures_util" }, { - "id": "hickory-proto 0.24.2", + "id": "hickory-proto 0.24.1", "target": "hickory_proto" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { @@ -30209,7 +30214,7 @@ "target": "humantime" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -30221,7 +30226,7 @@ "target": "instant_acme" }, { - "id": "moka 0.12.10", + "id": "moka 0.12.8", "target": "moka" }, { @@ -30233,11 +30238,11 @@ "target": "prometheus" }, { - "id": "prost 0.13.4", + "id": "prost 0.13.3", "target": "prost" }, { - "id": "prost-types 0.13.4", + "id": "prost-types 0.13.3", "target": "prost_types" }, { @@ -30245,15 +30250,15 @@ "target": "rand" }, { - "id": "rcgen 0.13.2", + "id": "rcgen 0.13.1", "target": "rcgen" }, { - "id": "reqwest 0.12.12", + "id": "reqwest 0.12.9", "target": "reqwest" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { @@ -30277,7 +30282,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -30289,15 +30294,15 @@ "target": "strum" }, { - "id": "systemstat 0.2.4", + "id": "systemstat 0.2.3", "target": "systemstat" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 2.0.3", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -30305,7 +30310,7 @@ "target": "tokio_io_timeout" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -30313,7 +30318,7 @@ "target": "tokio_util" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.1", "target": "tower" }, { @@ -30325,11 +30330,11 @@ "target": "tracing" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" }, { - "id": "uuid 1.12.0", + "id": "uuid 1.11.0", "target": "uuid" }, { @@ -30337,7 +30342,7 @@ "target": "vrl" }, { - "id": "webpki-root-certs 0.26.7", + "id": "webpki-root-certs 0.26.6", "target": "webpki_root_certs" }, { @@ -30355,11 +30360,11 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" }, { - "id": "clap_derive 4.5.24", + "id": "clap_derive 4.5.18", "target": "clap_derive" }, { @@ -30411,7 +30416,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -30515,7 +30520,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -30523,7 +30528,7 @@ "target": "hex" }, { - "id": "ic-cdk 0.17.1", + "id": "ic-cdk 0.17.0", "target": "ic_cdk" }, { @@ -30535,7 +30540,7 @@ "target": "ic_representation_independent_hash" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -30555,7 +30560,7 @@ "target": "sha2" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 2.0.3", "target": "thiserror" } ], @@ -30602,7 +30607,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -30618,7 +30623,7 @@ "target": "nom" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -30665,7 +30670,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -30733,7 +30738,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -30769,14 +30774,14 @@ ], "license_file": "LICENSE" }, - "ic-cdk 0.17.1": { + "ic-cdk 0.17.0": { "name": "ic-cdk", - "version": "0.17.1", + "version": "0.17.0", "package_url": "https://github.com/dfinity/cdk-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-cdk/0.17.1/download", - "sha256": "122efbcb0af5280d408a75a57b7dc6e9d92893bf6ed9cc98fe4dcff51f18b67c" + "url": "https://static.crates.io/crates/ic-cdk/0.17.0/download", + "sha256": "b2abdf9341da9f9f6b451a40609cb69645a05a8e9eb7784c16209f16f2c0f76f" } }, "targets": [ @@ -30801,7 +30806,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -30823,13 +30828,13 @@ "proc_macro_deps": { "common": [ { - "id": "ic-cdk-macros 0.17.1", + "id": "ic-cdk-macros 0.17.0", "target": "ic_cdk_macros" } ], "selects": {} }, - "version": "0.17.1" + "version": "0.17.0" }, "license": "Apache-2.0", "license_ids": [ @@ -30869,15 +30874,15 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -30936,15 +30941,15 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -31003,15 +31008,15 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -31019,11 +31024,11 @@ "target": "serde" }, { - "id": "serde_tokenstream 0.2.2", + "id": "serde_tokenstream 0.2.1", "target": "serde_tokenstream" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -31038,14 +31043,14 @@ ], "license_file": "LICENSE" }, - "ic-cdk-macros 0.17.1": { + "ic-cdk-macros 0.17.0": { "name": "ic-cdk-macros", - "version": "0.17.1", + "version": "0.17.0", "package_url": "https://github.com/dfinity/cdk-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-cdk-macros/0.17.1/download", - "sha256": "c792bf0d1621c893ccf2bcdeac4ee70121103a03030a1827031a6b3c60488944" + "url": "https://static.crates.io/crates/ic-cdk-macros/0.17.0/download", + "sha256": "b8df41980e95dead28735ab0f748c75477b0c5eab37a09a5641c78ec406a1db0" } }, "targets": [ @@ -31070,15 +31075,15 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -31086,18 +31091,18 @@ "target": "serde" }, { - "id": "serde_tokenstream 0.2.2", + "id": "serde_tokenstream 0.2.1", "target": "serde_tokenstream" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.17.1" + "version": "0.17.0" }, "license": "Apache-2.0", "license_ids": [ @@ -31141,7 +31146,7 @@ "target": "futures" }, { - "id": "ic-cdk 0.17.1", + "id": "ic-cdk 0.17.0", "target": "ic_cdk" }, { @@ -31157,7 +31162,7 @@ "target": "serde_bytes" }, { - "id": "slotmap 1.0.7", + "id": "slotmap 1.0.6", "target": "slotmap" } ], @@ -31208,7 +31213,7 @@ "target": "cached" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -31220,7 +31225,7 @@ "target": "ic_certification" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -31236,7 +31241,7 @@ "target": "nom" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { @@ -31244,7 +31249,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -31483,7 +31488,7 @@ "target": "base64" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -31507,7 +31512,7 @@ "target": "serde_cbor" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -31562,7 +31567,7 @@ "target": "bytes" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -31598,7 +31603,7 @@ "target": "ic_utils" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -31738,11 +31743,11 @@ "target": "base64" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "flate2 1.0.35", + "id": "flate2 1.0.31", "target": "flate2" }, { @@ -31778,7 +31783,7 @@ "target": "leb128" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -31790,7 +31795,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -31856,14 +31861,14 @@ ], "license_file": "LICENSE" }, - "ic-stable-structures 0.6.7": { + "ic-stable-structures 0.6.5": { "name": "ic-stable-structures", - "version": "0.6.7", + "version": "0.6.5", "package_url": "https://github.com/dfinity/stable-structures", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-stable-structures/0.6.7/download", - "sha256": "b492c5a16455ae78623eaa12ead96dda6c69a83c535b1b00789f19b381c8a24c" + "url": "https://static.crates.io/crates/ic-stable-structures/0.6.5/download", + "sha256": "03f3044466a69802de74e710dc0300b706a05696a0531c942ca856751a13b0db" } }, "targets": [ @@ -31916,7 +31921,7 @@ ], "selects": {} }, - "version": "0.6.7" + "version": "0.6.5" }, "license": "Apache-2.0", "license_ids": [ @@ -31956,11 +31961,11 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "ciborium 0.2.2", + "id": "ciborium 0.2.1", "target": "ciborium" }, { @@ -32015,7 +32020,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -32043,7 +32048,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -32099,7 +32104,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -32131,7 +32136,7 @@ "target": "sha2" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 2.0.3", "target": "thiserror" } ], @@ -32193,7 +32198,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -32205,11 +32210,11 @@ "target": "ic_agent" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -32229,15 +32234,15 @@ "target": "strum" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 2.0.3", "target": "thiserror" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -32247,7 +32252,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" }, { @@ -32315,7 +32320,7 @@ "alias": "bls12_381" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -32391,7 +32396,7 @@ "alias": "bls12_381" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -32414,14 +32419,14 @@ ], "license_file": null }, - "ic-wasm 0.8.6": { + "ic-wasm 0.8.4": { "name": "ic-wasm", - "version": "0.8.6", + "version": "0.8.4", "package_url": "https://github.com/dfinity/ic-wasm", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-wasm/0.8.6/download", - "sha256": "19fabaeecfe37f24b433c62489242fc54503d98d4cc8d0f9ef7544dfdfc0ddcb" + "url": "https://static.crates.io/crates/ic-wasm/0.8.4/download", + "sha256": "45bc33855672981ae4a2f4e77c1a77d1bdc0756fb1b36ad0dbe47df77a955e2d" } }, "targets": [ @@ -32467,15 +32472,15 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "clap 4.5.26", + "id": "clap 4.5.20", "target": "clap" }, { @@ -32483,7 +32488,7 @@ "target": "libflate" }, { - "id": "rustc-demangle 0.1.24", + "id": "rustc-demangle 0.1.23", "target": "rustc_demangle" }, { @@ -32491,22 +32496,22 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "walrus 0.21.3", + "id": "walrus 0.21.1", "target": "walrus" } ], "selects": {} }, "edition": "2021", - "version": "0.8.6" + "version": "0.8.4" }, "license": "Apache-2.0", "license_ids": [ @@ -32546,7 +32551,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -32813,15 +32818,15 @@ "deps": { "common": [ { - "id": "arbitrary 1.4.1", + "id": "arbitrary 1.3.2", "target": "arbitrary" }, { - "id": "crc32fast 1.4.2", + "id": "crc32fast 1.3.2", "target": "crc32fast" }, { - "id": "data-encoding 2.7.0", + "id": "data-encoding 2.4.0", "target": "data_encoding" }, { @@ -32833,7 +32838,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -32883,11 +32888,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -32895,7 +32900,7 @@ "target": "serde" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -32905,7 +32910,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -32954,11 +32959,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -33013,11 +33018,11 @@ "deps": { "common": [ { - "id": "yoke 0.7.5", + "id": "yoke 0.7.4", "target": "yoke" }, { - "id": "zerofrom 0.1.5", + "id": "zerofrom 0.1.4", "target": "zerofrom" }, { @@ -33031,7 +33036,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], @@ -33083,7 +33088,7 @@ "deps": { "common": [ { - "id": "litemap 0.7.4", + "id": "litemap 0.7.3", "target": "litemap" }, { @@ -33105,7 +33110,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], @@ -33183,7 +33188,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], @@ -33316,7 +33321,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], @@ -33437,7 +33442,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], @@ -33543,11 +33548,11 @@ "target": "writeable" }, { - "id": "yoke 0.7.5", + "id": "yoke 0.7.4", "target": "yoke" }, { - "id": "zerofrom 0.1.5", + "id": "zerofrom 0.1.4", "target": "zerofrom" }, { @@ -33561,7 +33566,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" }, { @@ -33611,15 +33616,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -33755,11 +33760,11 @@ "target": "matches" }, { - "id": "unicode-bidi 0.3.18", + "id": "unicode-bidi 0.3.13", "target": "unicode_bidi" }, { - "id": "unicode-normalization 0.1.24", + "id": "unicode-normalization 0.1.22", "target": "unicode_normalization" } ], @@ -33775,6 +33780,118 @@ ], "license_file": "LICENSE-APACHE" }, + "idna 0.3.0": { + "name": "idna", + "version": "0.3.0", + "package_url": "https://github.com/servo/rust-url/", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/idna/0.3.0/download", + "sha256": "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" + } + }, + "targets": [ + { + "Library": { + "crate_name": "idna", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "idna", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "unicode-bidi 0.3.13", + "target": "unicode_bidi" + }, + { + "id": "unicode-normalization 0.1.22", + "target": "unicode_normalization" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.3.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "idna 0.4.0": { + "name": "idna", + "version": "0.4.0", + "package_url": "https://github.com/servo/rust-url/", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/idna/0.4.0/download", + "sha256": "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" + } + }, + "targets": [ + { + "Library": { + "crate_name": "idna", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "idna", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc", + "default", + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "unicode-bidi 0.3.13", + "target": "unicode_bidi" + }, + { + "id": "unicode-normalization 0.1.22", + "target": "unicode_normalization" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.4.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "idna 1.0.3": { "name": "idna", "version": "1.0.3", @@ -33936,7 +34053,7 @@ "deps": { "common": [ { - "id": "parity-scale-codec 3.6.12", + "id": "parity-scale-codec 3.6.4", "target": "parity_scale_codec" } ], @@ -33952,14 +34069,14 @@ ], "license_file": null }, - "impl-more 0.1.9": { + "impl-more 0.1.6": { "name": "impl-more", - "version": "0.1.9", + "version": "0.1.6", "package_url": "https://github.com/robjtede/impl-more", "repository": { "Http": { - "url": "https://static.crates.io/crates/impl-more/0.1.9/download", - "sha256": "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" + "url": "https://static.crates.io/crates/impl-more/0.1.6/download", + "sha256": "206ca75c9c03ba3d4ace2460e57b189f39f43de612c2f85836e65c929701bb2d" } }, "targets": [ @@ -33982,7 +34099,7 @@ "**" ], "edition": "2018", - "version": "0.1.9" + "version": "0.1.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -34087,14 +34204,14 @@ ], "license_file": null }, - "impl-trait-for-tuples 0.2.3": { + "impl-trait-for-tuples 0.2.2": { "name": "impl-trait-for-tuples", - "version": "0.2.3", + "version": "0.2.2", "package_url": "https://github.com/bkchr/impl-trait-for-tuples", "repository": { "Http": { - "url": "https://static.crates.io/crates/impl-trait-for-tuples/0.2.3/download", - "sha256": "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" + "url": "https://static.crates.io/crates/impl-trait-for-tuples/0.2.2/download", + "sha256": "11d7a9f6330b71fea57921c9b61c47ee6e84f72d394754eff6163ae67e7395eb" } }, "targets": [ @@ -34119,22 +34236,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 1.0.109", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.2.3" + "version": "0.2.2" }, "license": "Apache-2.0/MIT", "license_ids": [ @@ -34261,7 +34378,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -34275,14 +34392,14 @@ ], "license_file": "LICENSE-APACHE" }, - "indexmap 2.7.0": { + "indexmap 2.2.6": { "name": "indexmap", - "version": "2.7.0", + "version": "2.2.6", "package_url": "https://github.com/indexmap-rs/indexmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/indexmap/2.7.0/download", - "sha256": "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f" + "url": "https://static.crates.io/crates/indexmap/2.2.6/download", + "sha256": "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" } }, "targets": [ @@ -34319,7 +34436,7 @@ "target": "equivalent" }, { - "id": "hashbrown 0.15.2", + "id": "hashbrown 0.14.5", "target": "hashbrown" }, { @@ -34330,7 +34447,7 @@ "selects": {} }, "edition": "2021", - "version": "2.7.0" + "version": "2.2.6" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -34339,14 +34456,14 @@ ], "license_file": "LICENSE-APACHE" }, - "indicatif 0.17.9": { + "indicatif 0.17.7": { "name": "indicatif", - "version": "0.17.9", + "version": "0.17.7", "package_url": "https://github.com/console-rs/indicatif", "repository": { "Http": { - "url": "https://static.crates.io/crates/indicatif/0.17.9/download", - "sha256": "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281" + "url": "https://static.crates.io/crates/indicatif/0.17.7/download", + "sha256": "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25" } }, "targets": [ @@ -34378,7 +34495,7 @@ "deps": { "common": [ { - "id": "console 0.15.10", + "id": "console 0.15.7", "target": "console" }, { @@ -34386,25 +34503,25 @@ "target": "number_prefix" }, { - "id": "portable-atomic 1.10.0", + "id": "portable-atomic 1.4.3", "target": "portable_atomic" }, { - "id": "unicode-width 0.2.0", + "id": "unicode-width 0.1.11", "target": "unicode_width" } ], "selects": { "cfg(target_arch = \"wasm32\")": [ { - "id": "web-time 1.1.0", - "target": "web_time" + "id": "instant 0.1.12", + "target": "instant" } ] } }, "edition": "2021", - "version": "0.17.9" + "version": "0.17.7" }, "license": "MIT", "license_ids": [ @@ -34451,14 +34568,14 @@ ], "license_file": "LICENSE-APACHE" }, - "inferno 0.11.21": { + "inferno 0.11.19": { "name": "inferno", - "version": "0.11.21", + "version": "0.11.19", "package_url": "https://github.com/jonhoo/inferno.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/inferno/0.11.21/download", - "sha256": "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88" + "url": "https://static.crates.io/crates/inferno/0.11.19/download", + "sha256": "321f0f839cd44a4686e9504b0a62b4d69a50b62072144c71c68f5873c167b8d9" } }, "targets": [ @@ -34494,19 +34611,19 @@ "target": "ahash" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "is-terminal 0.4.13", + "id": "is-terminal 0.4.9", "target": "is_terminal" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -34514,7 +34631,7 @@ "target": "num_format" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -34522,7 +34639,7 @@ "target": "quick_xml" }, { - "id": "rgb 0.8.50", + "id": "rgb 0.8.37", "target": "rgb" }, { @@ -34533,7 +34650,7 @@ "selects": {} }, "edition": "2021", - "version": "0.11.21" + "version": "0.11.19" }, "license": "CDDL-1.0", "license_ids": [ @@ -34541,14 +34658,14 @@ ], "license_file": "LICENSE" }, - "inferno 0.12.1": { + "inferno 0.12.0": { "name": "inferno", - "version": "0.12.1", + "version": "0.12.0", "package_url": "https://github.com/jonhoo/inferno.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/inferno/0.12.1/download", - "sha256": "692eda1cc790750b9f5a5e3921ef9c117fd5498b97cfacbc910693e5b29002dc" + "url": "https://static.crates.io/crates/inferno/0.12.0/download", + "sha256": "75a5d75fee4d36809e6b021e4b96b686e763d365ffdb03af2bd00786353f84fe" } }, "targets": [ @@ -34592,15 +34709,15 @@ "target": "ahash" }, { - "id": "clap 4.5.26", + "id": "clap 4.5.20", "target": "clap" }, { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" }, { @@ -34608,19 +34725,19 @@ "target": "dashmap" }, { - "id": "env_logger 0.11.6", + "id": "env_logger 0.11.2", "target": "env_logger" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -34628,15 +34745,15 @@ "target": "num_format" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "quick-xml 0.37.2", + "id": "quick-xml 0.37.1", "target": "quick_xml" }, { - "id": "rgb 0.8.50", + "id": "rgb 0.8.37", "target": "rgb" }, { @@ -34647,7 +34764,7 @@ "selects": {} }, "edition": "2021", - "version": "0.12.1" + "version": "0.12.0" }, "license": "CDDL-1.0", "license_ids": [ @@ -34703,14 +34820,14 @@ ], "license_file": "LICENSE-APACHE" }, - "insta 1.42.0": { + "insta 1.34.0": { "name": "insta", - "version": "1.42.0", + "version": "1.34.0", "package_url": "https://github.com/mitsuhiko/insta", "repository": { "Http": { - "url": "https://static.crates.io/crates/insta/1.42.0/download", - "sha256": "6513e4067e16e69ed1db5ab56048ed65db32d10ba5fc1217f5393f8f17d8b5a5" + "url": "https://static.crates.io/crates/insta/1.34.0/download", + "sha256": "5d64600be34b2fcfc267740a243fa7744441bb4947a619ac4e5bb6507f35fbfc" } }, "targets": [ @@ -34743,26 +34860,30 @@ "deps": { "common": [ { - "id": "console 0.15.10", + "id": "console 0.15.7", "target": "console" }, + { + "id": "lazy_static 1.4.0", + "target": "lazy_static" + }, { "id": "linked-hash-map 0.5.6", "target": "linked_hash_map" }, { - "id": "once_cell 1.20.2", - "target": "once_cell" + "id": "similar 2.3.0", + "target": "similar" }, { - "id": "similar 2.6.0", - "target": "similar" + "id": "yaml-rust 0.4.5", + "target": "yaml_rust" } ], "selects": {} }, - "edition": "2021", - "version": "1.42.0" + "edition": "2018", + "version": "1.34.0" }, "license": "Apache-2.0", "license_ids": [ @@ -34770,14 +34891,14 @@ ], "license_file": "LICENSE" }, - "instant 0.1.13": { + "instant 0.1.12": { "name": "instant", - "version": "0.1.13", + "version": "0.1.12", "package_url": "https://github.com/sebcrozet/instant", "repository": { "Http": { - "url": "https://static.crates.io/crates/instant/0.1.13/download", - "sha256": "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" + "url": "https://static.crates.io/crates/instant/0.1.12/download", + "sha256": "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" } }, "targets": [ @@ -34809,7 +34930,7 @@ "selects": {} }, "edition": "2018", - "version": "0.1.13" + "version": "0.1.12" }, "license": "BSD-3-Clause", "license_ids": [ @@ -34877,11 +34998,11 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { @@ -34889,11 +35010,11 @@ "target": "hyper_util" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { @@ -34901,11 +35022,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -34915,7 +35036,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -35045,11 +35166,11 @@ "selects": { "cfg(windows)": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { - "id": "widestring 1.1.0", + "id": "widestring 1.0.2", "target": "widestring" }, { @@ -35188,14 +35309,14 @@ ], "license_file": "LICENSE-APACHE.md" }, - "is-terminal 0.4.13": { + "is-terminal 0.4.9": { "name": "is-terminal", - "version": "0.4.13", + "version": "0.4.9", "package_url": "https://github.com/sunfishcode/is-terminal", "repository": { "Http": { - "url": "https://static.crates.io/crates/is-terminal/0.4.13/download", - "sha256": "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" + "url": "https://static.crates.io/crates/is-terminal/0.4.9/download", + "sha256": "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" } }, "targets": [ @@ -35220,28 +35341,28 @@ "deps": { "common": [], "selects": { - "cfg(any(unix, target_os = \"wasi\"))": [ + "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))": [ { - "id": "libc 0.2.169", - "target": "libc" + "id": "rustix 0.38.32", + "target": "rustix" } ], "cfg(target_os = \"hermit\")": [ { - "id": "hermit-abi 0.4.0", + "id": "hermit-abi 0.3.9", "target": "hermit_abi" } ], "cfg(windows)": [ { - "id": "windows-sys 0.52.0", + "id": "windows-sys 0.48.0", "target": "windows_sys" } ] } }, "edition": "2018", - "version": "0.4.13" + "version": "0.4.9" }, "license": "MIT", "license_ids": [ @@ -35330,7 +35451,7 @@ "target": "serde" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -35385,7 +35506,7 @@ "deps": { "common": [ { - "id": "either 1.13.0", + "id": "either 1.9.0", "target": "either" } ], @@ -35441,7 +35562,7 @@ "deps": { "common": [ { - "id": "either 1.13.0", + "id": "either 1.9.0", "target": "either" } ], @@ -35457,14 +35578,14 @@ ], "license_file": "LICENSE-APACHE" }, - "itertools 0.12.1": { + "itertools 0.12.0": { "name": "itertools", - "version": "0.12.1", + "version": "0.12.0", "package_url": "https://github.com/rust-itertools/itertools", "repository": { "Http": { - "url": "https://static.crates.io/crates/itertools/0.12.1/download", - "sha256": "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" + "url": "https://static.crates.io/crates/itertools/0.12.0/download", + "sha256": "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" } }, "targets": [ @@ -35497,125 +35618,14 @@ "deps": { "common": [ { - "id": "either 1.13.0", - "target": "either" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.12.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "itertools 0.13.0": { - "name": "itertools", - "version": "0.13.0", - "package_url": "https://github.com/rust-itertools/itertools", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/itertools/0.13.0/download", - "sha256": "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" - } - }, - "targets": [ - { - "Library": { - "crate_name": "itertools", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "itertools", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "use_alloc" - ], - "selects": { - "aarch64-apple-darwin": [ - "default", - "use_std" - ], - "aarch64-pc-windows-msvc": [ - "default", - "use_std" - ], - "aarch64-unknown-linux-gnu": [ - "default", - "use_std" - ], - "aarch64-unknown-nixos-gnu": [ - "default", - "use_std" - ], - "arm-unknown-linux-gnueabi": [ - "default", - "use_std" - ], - "i686-pc-windows-msvc": [ - "default", - "use_std" - ], - "i686-unknown-linux-gnu": [ - "default", - "use_std" - ], - "powerpc-unknown-linux-gnu": [ - "default", - "use_std" - ], - "s390x-unknown-linux-gnu": [ - "default", - "use_std" - ], - "x86_64-apple-darwin": [ - "default", - "use_std" - ], - "x86_64-pc-windows-msvc": [ - "default", - "use_std" - ], - "x86_64-unknown-freebsd": [ - "default", - "use_std" - ], - "x86_64-unknown-linux-gnu": [ - "default", - "use_std" - ], - "x86_64-unknown-nixos-gnu": [ - "default", - "use_std" - ] - } - }, - "deps": { - "common": [ - { - "id": "either 1.13.0", + "id": "either 1.9.0", "target": "either" } ], "selects": {} }, "edition": "2018", - "version": "0.13.0" + "version": "0.12.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -35624,14 +35634,14 @@ ], "license_file": "LICENSE-APACHE" }, - "itoa 1.0.14": { + "itoa 1.0.9": { "name": "itoa", - "version": "1.0.14", + "version": "1.0.9", "package_url": "https://github.com/dtolnay/itoa", "repository": { "Http": { - "url": "https://static.crates.io/crates/itoa/1.0.14/download", - "sha256": "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" + "url": "https://static.crates.io/crates/itoa/1.0.9/download", + "sha256": "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" } }, "targets": [ @@ -35654,7 +35664,7 @@ "**" ], "edition": "2018", - "version": "1.0.14" + "version": "1.0.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -35723,11 +35733,11 @@ "target": "jni_sys" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -35746,7 +35756,7 @@ "deps": { "common": [ { - "id": "walkdir 2.5.0", + "id": "walkdir 2.3.3", "target": "walkdir" } ], @@ -35799,14 +35809,14 @@ ], "license_file": "LICENSE-APACHE" }, - "jobserver 0.1.32": { + "jobserver 0.1.27": { "name": "jobserver", - "version": "0.1.32", - "package_url": "https://github.com/rust-lang/jobserver-rs", + "version": "0.1.27", + "package_url": "https://github.com/alexcrichton/jobserver-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/jobserver/0.1.32/download", - "sha256": "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" + "url": "https://static.crates.io/crates/jobserver/0.1.27/download", + "sha256": "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" } }, "targets": [ @@ -35833,30 +35843,30 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] } }, - "edition": "2021", - "version": "0.1.32" + "edition": "2018", + "version": "0.1.27" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "js-sys 0.3.77": { + "js-sys 0.3.64": { "name": "js-sys", - "version": "0.3.77", + "version": "0.3.64", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/js-sys/0.3.77/download", - "sha256": "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" + "url": "https://static.crates.io/crates/js-sys/0.3.64/download", + "sha256": "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" } }, "targets": [ @@ -35878,30 +35888,19 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "once_cell 1.20.2", - "target": "once_cell" - }, - { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], "selects": {} }, - "edition": "2021", - "version": "0.3.77" + "edition": "2018", + "version": "0.3.64" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -35952,7 +35951,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -36004,7 +36003,7 @@ "deps": { "common": [ { - "id": "pest 2.7.15", + "id": "pest 2.7.4", "target": "pest" }, { @@ -36018,7 +36017,7 @@ "proc_macro_deps": { "common": [ { - "id": "pest_derive 2.7.15", + "id": "pest_derive 2.7.4", "target": "pest_derive" } ], @@ -36064,27 +36063,27 @@ "deps": { "common": [ { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "pest 2.7.15", + "id": "pest 2.7.4", "target": "pest" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -36094,7 +36093,7 @@ "proc_macro_deps": { "common": [ { - "id": "pest_derive 2.7.15", + "id": "pest_derive 2.7.4", "target": "pest_derive" } ], @@ -36157,7 +36156,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -36221,7 +36220,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -36301,7 +36300,7 @@ "target": "elliptic_curve" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -36386,7 +36385,7 @@ "target": "base64" }, { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { @@ -36402,7 +36401,7 @@ "target": "serde_value" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -36426,14 +36425,14 @@ ], "license_file": "LICENSE" }, - "keccak 0.1.5": { + "keccak 0.1.4": { "name": "keccak", - "version": "0.1.5", + "version": "0.1.4", "package_url": "https://github.com/RustCrypto/sponges/tree/master/keccak", "repository": { "Http": { - "url": "https://static.crates.io/crates/keccak/0.1.5/download", - "sha256": "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" + "url": "https://static.crates.io/crates/keccak/0.1.4/download", + "sha256": "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940" } }, "targets": [ @@ -36460,14 +36459,14 @@ "selects": { "cfg(target_arch = \"aarch64\")": [ { - "id": "cpufeatures 0.2.16", + "id": "cpufeatures 0.2.9", "target": "cpufeatures" } ] } }, "edition": "2018", - "version": "0.1.5" + "version": "0.1.4" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -36612,11 +36611,11 @@ "target": "bytes" }, { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { - "id": "either 1.13.0", + "id": "either 1.9.0", "target": "either" }, { @@ -36624,7 +36623,7 @@ "target": "futures" }, { - "id": "home 0.5.11", + "id": "home 0.5.5", "target": "home" }, { @@ -36640,15 +36639,15 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "hyper-timeout 0.5.2", + "id": "hyper-timeout 0.5.1", "target": "hyper_timeout" }, { @@ -36672,7 +36671,7 @@ "target": "pem" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { @@ -36688,7 +36687,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -36696,11 +36695,11 @@ "target": "serde_yaml" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -36763,7 +36762,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { @@ -36783,11 +36782,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -36853,11 +36852,11 @@ "target": "diff" }, { - "id": "ena 0.14.3", + "id": "ena 0.14.2", "target": "ena" }, { - "id": "is-terminal 0.4.13", + "id": "is-terminal 0.4.9", "target": "is_terminal" }, { @@ -36869,11 +36868,11 @@ "target": "lalrpop_util" }, { - "id": "petgraph 0.6.5", + "id": "petgraph 0.6.4", "target": "petgraph" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -36893,7 +36892,7 @@ "target": "tiny_keccak" }, { - "id": "unicode-xid 0.2.6", + "id": "unicode-xid 0.2.4", "target": "unicode_xid" } ], @@ -36909,14 +36908,14 @@ ], "license_file": null }, - "lalrpop 0.20.2": { + "lalrpop 0.20.0": { "name": "lalrpop", - "version": "0.20.2", + "version": "0.20.0", "package_url": "https://github.com/lalrpop/lalrpop", "repository": { "Http": { - "url": "https://static.crates.io/crates/lalrpop/0.20.2/download", - "sha256": "55cb077ad656299f160924eb2912aa147d7339ea7d69e1b5517326fdcec3c1ca" + "url": "https://static.crates.io/crates/lalrpop/0.20.0/download", + "sha256": "da4081d44f4611b66c6dd725e6de3169f9f63905421e8626fcb86b6a898998b8" } }, "targets": [ @@ -36958,19 +36957,27 @@ "target": "bit_set" }, { - "id": "ena 0.14.3", + "id": "diff 0.1.13", + "target": "diff" + }, + { + "id": "ena 0.14.2", "target": "ena" }, { - "id": "itertools 0.11.0", + "id": "is-terminal 0.4.9", + "target": "is_terminal" + }, + { + "id": "itertools 0.10.5", "target": "itertools" }, { - "id": "lalrpop-util 0.20.2", + "id": "lalrpop-util 0.20.0", "target": "lalrpop_util" }, { - "id": "petgraph 0.6.5", + "id": "petgraph 0.6.4", "target": "petgraph" }, { @@ -36978,11 +36985,11 @@ "target": "pico_args" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { - "id": "regex-syntax 0.8.5", + "id": "regex-syntax 0.7.5", "target": "regex_syntax" }, { @@ -36998,25 +37005,21 @@ "target": "tiny_keccak" }, { - "id": "unicode-xid 0.2.6", + "id": "unicode-xid 0.2.4", "target": "unicode_xid" - }, - { - "id": "walkdir 2.5.0", - "target": "walkdir" } ], "selects": {} }, "edition": "2021", - "version": "0.20.2" + "version": "0.20.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": null }, "lalrpop-util 0.19.12": { "name": "lalrpop-util", @@ -37116,85 +37119,85 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "aarch64-pc-windows-msvc": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "aarch64-unknown-linux-gnu": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "arm-unknown-linux-gnueabi": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "i686-pc-windows-msvc": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "i686-unknown-linux-gnu": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "powerpc-unknown-linux-gnu": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "s390x-unknown-linux-gnu": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "x86_64-apple-darwin": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "x86_64-pc-windows-msvc": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "x86_64-unknown-freebsd": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "x86_64-unknown-linux-gnu": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ] @@ -37210,14 +37213,14 @@ ], "license_file": null }, - "lalrpop-util 0.20.2": { + "lalrpop-util 0.20.0": { "name": "lalrpop-util", - "version": "0.20.2", + "version": "0.20.0", "package_url": "https://github.com/lalrpop/lalrpop", "repository": { "Http": { - "url": "https://static.crates.io/crates/lalrpop-util/0.20.2/download", - "sha256": "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553" + "url": "https://static.crates.io/crates/lalrpop-util/0.20.0/download", + "sha256": "3f35c735096c0293d313e8f2a641627472b83d01b937177fe76e5e2708d31e0d" } }, "targets": [ @@ -37242,65 +37245,64 @@ "crate_features": { "common": [ "default", - "std", - "unicode" + "std" ], "selects": { "aarch64-apple-darwin": [ "lexer", - "regex-automata" + "regex" ], "aarch64-pc-windows-msvc": [ "lexer", - "regex-automata" + "regex" ], "aarch64-unknown-linux-gnu": [ "lexer", - "regex-automata" + "regex" ], "aarch64-unknown-nixos-gnu": [ "lexer", - "regex-automata" + "regex" ], "arm-unknown-linux-gnueabi": [ "lexer", - "regex-automata" + "regex" ], "i686-pc-windows-msvc": [ "lexer", - "regex-automata" + "regex" ], "i686-unknown-linux-gnu": [ "lexer", - "regex-automata" + "regex" ], "powerpc-unknown-linux-gnu": [ "lexer", - "regex-automata" + "regex" ], "s390x-unknown-linux-gnu": [ "lexer", - "regex-automata" + "regex" ], "x86_64-apple-darwin": [ "lexer", - "regex-automata" + "regex" ], "x86_64-pc-windows-msvc": [ "lexer", - "regex-automata" + "regex" ], "x86_64-unknown-freebsd": [ "lexer", - "regex-automata" + "regex" ], "x86_64-unknown-linux-gnu": [ "lexer", - "regex-automata" + "regex" ], "x86_64-unknown-nixos-gnu": [ "lexer", - "regex-automata" + "regex" ] } }, @@ -37309,99 +37311,99 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "aarch64-pc-windows-msvc": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "aarch64-unknown-linux-gnu": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "arm-unknown-linux-gnueabi": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "i686-pc-windows-msvc": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "i686-unknown-linux-gnu": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "powerpc-unknown-linux-gnu": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "s390x-unknown-linux-gnu": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "x86_64-apple-darwin": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "x86_64-pc-windows-msvc": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "x86_64-unknown-freebsd": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "x86_64-unknown-linux-gnu": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ] } }, "edition": "2021", - "version": "0.20.2" + "version": "0.20.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": null }, "language-tags 0.3.2": { "name": "language-tags", @@ -37442,14 +37444,14 @@ ], "license_file": "LICENSE" }, - "lazy_static 1.5.0": { + "lazy_static 1.4.0": { "name": "lazy_static", - "version": "1.5.0", + "version": "1.4.0", "package_url": "https://github.com/rust-lang-nursery/lazy-static.rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/lazy_static/1.5.0/download", - "sha256": "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" + "url": "https://static.crates.io/crates/lazy_static/1.4.0/download", + "sha256": "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" } }, "targets": [ @@ -37481,16 +37483,16 @@ "deps": { "common": [ { - "id": "spin 0.9.8", + "id": "spin 0.5.2", "target": "spin" } ], "selects": {} }, "edition": "2015", - "version": "1.5.0" + "version": "1.4.0" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -37960,14 +37962,14 @@ ], "license_file": "LICENSE-APACHE" }, - "libc 0.2.169": { + "libc 0.2.158": { "name": "libc", - "version": "0.2.169", + "version": "0.2.158", "package_url": "https://github.com/rust-lang/libc", "repository": { "Http": { - "url": "https://static.crates.io/crates/libc/0.2.169/download", - "sha256": "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" + "url": "https://static.crates.io/crates/libc/0.2.158/download", + "sha256": "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" } }, "targets": [ @@ -38012,14 +38014,14 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.2.169" + "edition": "2015", + "version": "0.2.158" }, "build_script_attrs": { "compile_data_glob": [ @@ -38083,11 +38085,11 @@ "target": "core2" }, { - "id": "crc32fast 1.4.2", + "id": "crc32fast 1.3.2", "target": "crc32fast" }, { - "id": "dary_heap 0.3.7", + "id": "dary_heap 0.3.6", "target": "dary_heap" }, { @@ -38167,14 +38169,14 @@ ], "license_file": "LICENSE" }, - "libfuzzer-sys 0.4.8": { + "libfuzzer-sys 0.4.7": { "name": "libfuzzer-sys", - "version": "0.4.8", + "version": "0.4.7", "package_url": "https://github.com/rust-fuzz/libfuzzer", "repository": { "Http": { - "url": "https://static.crates.io/crates/libfuzzer-sys/0.4.8/download", - "sha256": "9b9569d2f74e257076d8c6bfa73fb505b46b851e51ddaecc825944aa3bed17fa" + "url": "https://static.crates.io/crates/libfuzzer-sys/0.4.7/download", + "sha256": "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7" } }, "targets": [ @@ -38211,18 +38213,22 @@ "deps": { "common": [ { - "id": "arbitrary 1.4.1", + "id": "arbitrary 1.3.2", "target": "arbitrary" }, { - "id": "libfuzzer-sys 0.4.8", + "id": "libfuzzer-sys 0.4.7", "target": "build_script_build" + }, + { + "id": "once_cell 1.19.0", + "target": "once_cell" } ], "selects": {} }, "edition": "2018", - "version": "0.4.8" + "version": "0.4.7" }, "build_script_attrs": { "compile_data_glob": [ @@ -38234,7 +38240,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -38249,14 +38255,14 @@ ], "license_file": "LICENSE-APACHE" }, - "libloading 0.8.6": { + "libloading 0.7.4": { "name": "libloading", - "version": "0.8.6", + "version": "0.7.4", "package_url": "https://github.com/nagisa/rust_libloading/", "repository": { "Http": { - "url": "https://static.crates.io/crates/libloading/0.8.6/download", - "sha256": "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" + "url": "https://static.crates.io/crates/libloading/0.7.4/download", + "sha256": "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" } }, "targets": [ @@ -38289,14 +38295,14 @@ ], "cfg(windows)": [ { - "id": "windows-targets 0.52.6", - "target": "windows_targets" + "id": "winapi 0.3.9", + "target": "winapi" } ] } }, "edition": "2015", - "version": "0.8.6" + "version": "0.7.4" }, "license": "ISC", "license_ids": [ @@ -38304,14 +38310,14 @@ ], "license_file": "LICENSE" }, - "libm 0.2.11": { + "libm 0.2.8": { "name": "libm", - "version": "0.2.11", + "version": "0.2.8", "package_url": "https://github.com/rust-lang/libm", "repository": { "Http": { - "url": "https://static.crates.io/crates/libm/0.2.11/download", - "sha256": "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa" + "url": "https://static.crates.io/crates/libm/0.2.8/download", + "sha256": "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" } }, "targets": [ @@ -38354,14 +38360,14 @@ "deps": { "common": [ { - "id": "libm 0.2.11", + "id": "libm 0.2.8", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.2.11" + "edition": "2018", + "version": "0.2.8" }, "build_script_attrs": { "compile_data_glob": [ @@ -38371,12 +38377,12 @@ "**" ] }, - "license": "MIT AND (MIT OR Apache-2.0)", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE.txt" + "license_file": "LICENSE-APACHE" }, "libnss 0.5.0": { "name": "libnss", @@ -38410,11 +38416,11 @@ "deps": { "common": [ { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -38438,61 +38444,6 @@ ], "license_file": null }, - "libredox 0.1.3": { - "name": "libredox", - "version": "0.1.3", - "package_url": "https://gitlab.redox-os.org/redox-os/libredox.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/libredox/0.1.3/download", - "sha256": "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "libredox", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "libredox", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bitflags 2.8.0", - "target": "bitflags" - }, - { - "id": "libc 0.2.169", - "target": "libc" - }, - { - "id": "redox_syscall 0.5.8", - "target": "syscall" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.3" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, "librocksdb-sys 0.16.0+8.10.0": { "name": "librocksdb-sys", "version": "0.16.0+8.10.0", @@ -38544,7 +38495,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -38567,15 +38518,15 @@ "deps": { "common": [ { - "id": "bindgen 0.69.5", + "id": "bindgen 0.69.4", "target": "bindgen" }, { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "glob 0.3.2", + "id": "glob 0.3.1", "target": "glob" } ], @@ -38672,11 +38623,11 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" }, { @@ -38744,7 +38695,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -38752,14 +38703,14 @@ "target": "build_script_build" }, { - "id": "libz-sys 1.1.21", + "id": "libz-sys 1.1.12", "target": "libz_sys" } ], "selects": { "cfg(unix)": [ { - "id": "openssl-sys 0.9.104", + "id": "openssl-sys 0.9.102", "target": "openssl_sys" } ] @@ -38778,11 +38729,11 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" } ], @@ -38798,14 +38749,14 @@ "link_deps": { "common": [ { - "id": "libz-sys 1.1.21", + "id": "libz-sys 1.1.12", "target": "libz_sys" } ], "selects": { "cfg(unix)": [ { - "id": "openssl-sys 0.9.104", + "id": "openssl-sys 0.9.102", "target": "openssl_sys" } ] @@ -38820,14 +38771,14 @@ ], "license_file": null }, - "libusb1-sys 0.7.0": { + "libusb1-sys 0.6.4": { "name": "libusb1-sys", - "version": "0.7.0", + "version": "0.6.4", "package_url": "https://github.com/a1ien/rusb.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/libusb1-sys/0.7.0/download", - "sha256": "da050ade7ac4ff1ba5379af847a10a10a8e284181e060105bf8d86960ce9ce0f" + "url": "https://static.crates.io/crates/libusb1-sys/0.6.4/download", + "sha256": "f9d0e2afce4245f2c9a418511e5af8718bcaf2fa408aefb259504d1a9cb25f27" } }, "targets": [ @@ -38864,18 +38815,18 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "libusb1-sys 0.7.0", + "id": "libusb1-sys 0.6.4", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.7.0" + "version": "0.6.4" }, "build_script_attrs": { "compile_data_glob": [ @@ -38887,16 +38838,16 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" } ], "selects": { - "cfg(target_os = \"windows\")": [ + "cfg(target_env = \"msvc\")": [ { "id": "vcpkg 0.2.15", "target": "vcpkg" @@ -38912,14 +38863,14 @@ ], "license_file": "LICENSE" }, - "libz-sys 1.1.21": { + "libz-sys 1.1.12": { "name": "libz-sys", - "version": "1.1.21", + "version": "1.1.12", "package_url": "https://github.com/rust-lang/libz-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/libz-sys/1.1.21/download", - "sha256": "df9b68e50e6e0b26f672573834882eb57759f6db9b3be2ea3c35c91188bb4eaa" + "url": "https://static.crates.io/crates/libz-sys/1.1.12/download", + "sha256": "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b" } }, "targets": [ @@ -38962,18 +38913,18 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "libz-sys 1.1.21", + "id": "libz-sys 1.1.12", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.1.21" + "version": "1.1.12" }, "build_script_attrs": { "compile_data_glob": [ @@ -38985,11 +38936,11 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" }, { @@ -39047,14 +38998,14 @@ ], "license_file": "LICENSE-APACHE" }, - "linux-raw-sys 0.4.15": { + "linux-raw-sys 0.4.13": { "name": "linux-raw-sys", - "version": "0.4.15", + "version": "0.4.13", "package_url": "https://github.com/sunfishcode/linux-raw-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/linux-raw-sys/0.4.15/download", - "sha256": "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" + "url": "https://static.crates.io/crates/linux-raw-sys/0.4.13/download", + "sha256": "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" } }, "targets": [ @@ -39091,57 +39042,48 @@ "aarch64-unknown-linux-gnu": [ "elf", "errno", - "std", "system" ], "aarch64-unknown-nixos-gnu": [ "elf", "errno", - "std", "system" ], "arm-unknown-linux-gnueabi": [ "elf", "errno", - "std", "system" ], "armv7-unknown-linux-gnueabi": [ "elf", "errno", - "std", "system" ], "i686-unknown-linux-gnu": [ "elf", "errno", - "std", "system" ], "powerpc-unknown-linux-gnu": [ - "std", "system" ], "s390x-unknown-linux-gnu": [ - "std", "system" ], "x86_64-unknown-linux-gnu": [ "elf", "errno", - "std", "system" ], "x86_64-unknown-nixos-gnu": [ "elf", "errno", - "std", "system" ] } }, "edition": "2021", - "version": "0.4.15" + "version": "0.4.13" }, "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ @@ -39150,14 +39092,14 @@ ], "license_file": "LICENSE-APACHE" }, - "litemap 0.7.4": { + "litemap 0.7.3": { "name": "litemap", - "version": "0.7.4", + "version": "0.7.3", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/litemap/0.7.4/download", - "sha256": "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" + "url": "https://static.crates.io/crates/litemap/0.7.3/download", + "sha256": "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" } }, "targets": [ @@ -39186,7 +39128,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.4" + "version": "0.7.3" }, "license": "Unicode-3.0", "license_ids": [ @@ -39226,7 +39168,7 @@ "deps": { "common": [ { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -39294,7 +39236,7 @@ "target": "byteorder" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -39372,7 +39314,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -39402,11 +39344,11 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" } ], @@ -39426,14 +39368,14 @@ ], "license_file": null }, - "local-channel 0.1.5": { + "local-channel 0.1.4": { "name": "local-channel", - "version": "0.1.5", + "version": "0.1.4", "package_url": "https://github.com/actix/actix-net", "repository": { "Http": { - "url": "https://static.crates.io/crates/local-channel/0.1.5/download", - "sha256": "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" + "url": "https://static.crates.io/crates/local-channel/0.1.4/download", + "sha256": "e0a493488de5f18c8ffcba89eebb8532ffc562dc400490eb65b84893fae0b178" } }, "targets": [ @@ -39466,14 +39408,14 @@ "target": "futures_sink" }, { - "id": "local-waker 0.1.4", + "id": "local-waker 0.1.3", "target": "local_waker" } ], "selects": {} }, "edition": "2021", - "version": "0.1.5" + "version": "0.1.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -39482,14 +39424,14 @@ ], "license_file": "LICENSE-APACHE" }, - "local-ip-address 0.5.7": { + "local-ip-address 0.5.6": { "name": "local-ip-address", - "version": "0.5.7", + "version": "0.5.6", "package_url": "https://github.com/EstebanBorai/local-ip-address", "repository": { "Http": { - "url": "https://static.crates.io/crates/local-ip-address/0.5.7/download", - "sha256": "612ed4ea9ce5acfb5d26339302528a5e1e59dfed95e9e11af3c083236ff1d15d" + "url": "https://static.crates.io/crates/local-ip-address/0.5.6/download", + "sha256": "66357e687a569abca487dc399a9c9ac19beb3f13991ed49f00c144e02cbd42ab" } }, "targets": [ @@ -39514,20 +39456,20 @@ "deps": { "common": [ { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], "selects": { "cfg(target_os = \"linux\")": [ { - "id": "neli 0.6.5", + "id": "neli 0.6.4", "target": "neli" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -39540,7 +39482,7 @@ } }, "edition": "2021", - "version": "0.5.7" + "version": "0.5.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -39549,14 +39491,14 @@ ], "license_file": "LICENSE-APACHE" }, - "local-waker 0.1.4": { + "local-waker 0.1.3": { "name": "local-waker", - "version": "0.1.4", - "package_url": "https://github.com/actix/actix-net", + "version": "0.1.3", + "package_url": "https://github.com/actix/actix-net.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/local-waker/0.1.4/download", - "sha256": "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" + "url": "https://static.crates.io/crates/local-waker/0.1.3/download", + "sha256": "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1" } }, "targets": [ @@ -39578,8 +39520,8 @@ "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "0.1.4" + "edition": "2018", + "version": "0.1.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -39588,14 +39530,14 @@ ], "license_file": "LICENSE-APACHE" }, - "lock_api 0.4.12": { + "lock_api 0.4.10": { "name": "lock_api", - "version": "0.4.12", + "version": "0.4.10", "package_url": "https://github.com/Amanieu/parking_lot", "repository": { "Http": { - "url": "https://static.crates.io/crates/lock_api/0.4.12/download", - "sha256": "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" + "url": "https://static.crates.io/crates/lock_api/0.4.10/download", + "sha256": "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" } }, "targets": [ @@ -39639,7 +39581,7 @@ "deps": { "common": [ { - "id": "lock_api 0.4.12", + "id": "lock_api 0.4.10", "target": "build_script_build" }, { @@ -39649,8 +39591,8 @@ ], "selects": {} }, - "edition": "2021", - "version": "0.4.12" + "edition": "2018", + "version": "0.4.10" }, "build_script_attrs": { "compile_data_glob": [ @@ -39662,7 +39604,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -39676,14 +39618,14 @@ ], "license_file": "LICENSE-APACHE" }, - "log 0.4.25": { + "log 0.4.20": { "name": "log", - "version": "0.4.25", + "version": "0.4.20", "package_url": "https://github.com/rust-lang/log", "repository": { "Http": { - "url": "https://static.crates.io/crates/log/0.4.25/download", - "sha256": "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f" + "url": "https://static.crates.io/crates/log/0.4.20/download", + "sha256": "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" } }, "targets": [ @@ -39711,8 +39653,8 @@ ], "selects": {} }, - "edition": "2021", - "version": "0.4.25" + "edition": "2015", + "version": "0.4.20" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -39875,11 +39817,11 @@ "target": "fnv" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -39887,7 +39829,7 @@ "target": "regex_syntax" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -39943,11 +39885,11 @@ "target": "fnv" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -40019,69 +39961,6 @@ ], "license_file": null }, - "loom 0.7.2": { - "name": "loom", - "version": "0.7.2", - "package_url": "https://github.com/tokio-rs/loom", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/loom/0.7.2/download", - "sha256": "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" - } - }, - "targets": [ - { - "Library": { - "crate_name": "loom", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "loom", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "generator 0.8.4", - "target": "generator" - }, - { - "id": "scoped-tls 1.0.1", - "target": "scoped_tls" - }, - { - "id": "tracing 0.1.41", - "target": "tracing" - }, - { - "id": "tracing-subscriber 0.3.19", - "target": "tracing_subscriber" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.7.2" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, "lru 0.7.8": { "name": "lru", "version": "0.7.8", @@ -40212,7 +40091,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -40235,11 +40114,11 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" } ], @@ -40379,7 +40258,7 @@ "selects": { "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] @@ -40479,7 +40358,7 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -40750,11 +40629,11 @@ "target": "ipnetwork" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" }, { @@ -40820,7 +40699,7 @@ "target": "digest" }, { - "id": "opaque-debug 0.3.1", + "id": "opaque-debug 0.3.0", "target": "opaque_debug" } ], @@ -40836,14 +40715,14 @@ ], "license_file": "LICENSE-APACHE" }, - "memchr 2.7.4": { + "memchr 2.6.4": { "name": "memchr", - "version": "2.7.4", + "version": "2.6.4", "package_url": "https://github.com/BurntSushi/memchr", "repository": { "Http": { - "url": "https://static.crates.io/crates/memchr/2.7.4/download", - "sha256": "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" + "url": "https://static.crates.io/crates/memchr/2.6.4/download", + "sha256": "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" } }, "targets": [ @@ -40874,7 +40753,7 @@ "selects": {} }, "edition": "2021", - "version": "2.7.4" + "version": "2.6.4" }, "license": "Unlicense OR MIT", "license_ids": [ @@ -40915,7 +40794,7 @@ "deps": { "common": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -40931,14 +40810,14 @@ ], "license_file": "LICENSE-APACHE" }, - "memmap2 0.9.5": { + "memmap2 0.5.10": { "name": "memmap2", - "version": "0.9.5", + "version": "0.5.10", "package_url": "https://github.com/RazrFalcon/memmap2-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/memmap2/0.9.5/download", - "sha256": "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" + "url": "https://static.crates.io/crates/memmap2/0.5.10/download", + "sha256": "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" } }, "targets": [ @@ -40965,14 +40844,14 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] } }, "edition": "2018", - "version": "0.9.5" + "version": "0.5.10" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -41050,7 +40929,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -41063,14 +40942,14 @@ ], "license_file": "LICENSE" }, - "memoffset 0.9.1": { + "memoffset 0.9.0": { "name": "memoffset", - "version": "0.9.1", + "version": "0.9.0", "package_url": "https://github.com/Gilnaa/memoffset", "repository": { "Http": { - "url": "https://static.crates.io/crates/memoffset/0.9.1/download", - "sha256": "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" + "url": "https://static.crates.io/crates/memoffset/0.9.0/download", + "sha256": "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" } }, "targets": [ @@ -41113,14 +40992,14 @@ "deps": { "common": [ { - "id": "memoffset 0.9.1", + "id": "memoffset 0.9.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2015", - "version": "0.9.1" + "version": "0.9.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -41132,7 +41011,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -41219,7 +41098,7 @@ "target": "byteorder" }, { - "id": "keccak 0.1.5", + "id": "keccak 0.1.4", "target": "keccak" }, { @@ -41302,7 +41181,7 @@ "target": "axum_otel_metrics" }, { - "id": "clap 4.5.26", + "id": "clap 4.5.20", "target": "clap" }, { @@ -41330,7 +41209,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -41346,11 +41225,11 @@ "target": "itertools" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -41358,11 +41237,11 @@ "target": "opentelemetry" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "pretty_assertions 1.4.1", + "id": "pretty_assertions 1.4.0", "target": "pretty_assertions" }, { @@ -41370,7 +41249,7 @@ "target": "prometheus" }, { - "id": "prometheus-parse 0.2.5", + "id": "prometheus-parse 0.2.4", "target": "prometheus_parse" }, { @@ -41378,7 +41257,7 @@ "target": "rand" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -41390,7 +41269,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -41406,7 +41285,7 @@ "target": "simple_logger" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -41422,7 +41301,7 @@ "target": "tower_http" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" } ], @@ -41474,14 +41353,14 @@ ], "license_file": "LICENSE-APACHE" }, - "mime_guess 2.0.5": { + "mime_guess 2.0.4": { "name": "mime_guess", - "version": "2.0.5", + "version": "2.0.4", "package_url": "https://github.com/abonander/mime_guess", "repository": { "Http": { - "url": "https://static.crates.io/crates/mime_guess/2.0.5/download", - "sha256": "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" + "url": "https://static.crates.io/crates/mime_guess/2.0.4/download", + "sha256": "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" } }, "targets": [ @@ -41529,18 +41408,18 @@ "target": "mime" }, { - "id": "mime_guess 2.0.5", + "id": "mime_guess 2.0.4", "target": "build_script_build" }, { - "id": "unicase 2.8.1", + "id": "unicase 2.7.0", "target": "unicase" } ], "selects": {} }, "edition": "2015", - "version": "2.0.5" + "version": "2.0.4" }, "build_script_attrs": { "compile_data_glob": [ @@ -41552,7 +41431,7 @@ "deps": { "common": [ { - "id": "unicase 2.8.1", + "id": "unicase 2.7.0", "target": "unicase" } ], @@ -41687,11 +41566,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -41755,14 +41634,14 @@ ], "license_file": "LICENSE-APACHE" }, - "miniz_oxide 0.8.3": { + "miniz_oxide 0.7.1": { "name": "miniz_oxide", - "version": "0.8.3", + "version": "0.7.1", "package_url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", "repository": { "Http": { - "url": "https://static.crates.io/crates/miniz_oxide/0.8.3/download", - "sha256": "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924" + "url": "https://static.crates.io/crates/miniz_oxide/0.7.1/download", + "sha256": "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" } }, "targets": [ @@ -41793,14 +41672,14 @@ "deps": { "common": [ { - "id": "adler2 2.0.0", - "target": "adler2" + "id": "adler 1.0.2", + "target": "adler" } ], "selects": {} }, - "edition": "2021", - "version": "0.8.3" + "edition": "2018", + "version": "0.7.1" }, "license": "MIT OR Zlib OR Apache-2.0", "license_ids": [ @@ -41810,14 +41689,14 @@ ], "license_file": "LICENSE" }, - "mio 0.8.11": { + "mio 0.8.10": { "name": "mio", - "version": "0.8.11", + "version": "0.8.10", "package_url": "https://github.com/tokio-rs/mio", "repository": { "Http": { - "url": "https://static.crates.io/crates/mio/0.8.11/download", - "sha256": "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" + "url": "https://static.crates.io/crates/mio/0.8.10/download", + "sha256": "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" } }, "targets": [ @@ -41844,22 +41723,94 @@ "default", "log", "net", - "os-ext", "os-poll" ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + "os-ext" + ], + "aarch64-apple-ios": [ + "os-ext" + ], + "aarch64-apple-ios-sim": [ + "os-ext" + ], + "aarch64-linux-android": [ + "os-ext" + ], + "aarch64-unknown-fuchsia": [ + "os-ext" + ], + "aarch64-unknown-linux-gnu": [ + "os-ext" + ], + "aarch64-unknown-nixos-gnu": [ + "os-ext" + ], + "aarch64-unknown-nto-qnx710": [ + "os-ext" + ], + "arm-unknown-linux-gnueabi": [ + "os-ext" + ], + "armv7-linux-androideabi": [ + "os-ext" + ], + "armv7-unknown-linux-gnueabi": [ + "os-ext" + ], + "i686-apple-darwin": [ + "os-ext" + ], + "i686-linux-android": [ + "os-ext" + ], + "i686-unknown-freebsd": [ + "os-ext" + ], + "i686-unknown-linux-gnu": [ + "os-ext" + ], + "powerpc-unknown-linux-gnu": [ + "os-ext" + ], + "s390x-unknown-linux-gnu": [ + "os-ext" + ], + "x86_64-apple-darwin": [ + "os-ext" + ], + "x86_64-apple-ios": [ + "os-ext" + ], + "x86_64-linux-android": [ + "os-ext" + ], + "x86_64-unknown-freebsd": [ + "os-ext" + ], + "x86_64-unknown-fuchsia": [ + "os-ext" + ], + "x86_64-unknown-linux-gnu": [ + "os-ext" + ], + "x86_64-unknown-nixos-gnu": [ + "os-ext" + ] + } }, "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" } ], "selects": { "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -41869,7 +41820,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -41882,7 +41833,7 @@ } }, "edition": "2018", - "version": "0.8.11" + "version": "0.8.10" }, "license": "MIT", "license_ids": [ @@ -41890,14 +41841,14 @@ ], "license_file": "LICENSE" }, - "mio 1.0.3": { + "mio 1.0.2": { "name": "mio", - "version": "1.0.3", + "version": "1.0.2", "package_url": "https://github.com/tokio-rs/mio", "repository": { "Http": { - "url": "https://static.crates.io/crates/mio/1.0.3/download", - "sha256": "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" + "url": "https://static.crates.io/crates/mio/1.0.2/download", + "sha256": "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" } }, "targets": [ @@ -41921,8 +41872,6 @@ ], "crate_features": { "common": [ - "default", - "log", "net", "os-ext", "os-poll" @@ -41930,22 +41879,18 @@ "selects": {} }, "deps": { - "common": [ - { - "id": "log 0.4.25", - "target": "log" - } - ], + "common": [], "selects": { "cfg(target_os = \"hermit\")": [ { - "id": "libc 0.2.169", - "target": "libc" + "id": "hermit-abi 0.3.9", + "target": "hermit_abi", + "alias": "libc" } ], "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -41955,7 +41900,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -41968,7 +41913,7 @@ } }, "edition": "2021", - "version": "1.0.3" + "version": "1.0.2" }, "license": "MIT", "license_ids": [ @@ -42021,14 +41966,14 @@ ], "license_file": null }, - "mockall 0.13.1": { + "mockall 0.13.0": { "name": "mockall", - "version": "0.13.1", + "version": "0.13.0", "package_url": "https://github.com/asomers/mockall", "repository": { "Http": { - "url": "https://static.crates.io/crates/mockall/0.13.1/download", - "sha256": "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2" + "url": "https://static.crates.io/crates/mockall/0.13.0/download", + "sha256": "d4c28b3fb6d753d28c20e826cd46ee611fda1cf3cde03a443a974043247c065a" } }, "targets": [ @@ -42065,11 +42010,11 @@ "target": "fragile" }, { - "id": "predicates 3.1.3", + "id": "predicates 3.1.2", "target": "predicates" }, { - "id": "predicates-tree 1.0.12", + "id": "predicates-tree 1.0.9", "target": "predicates_tree" } ], @@ -42079,13 +42024,13 @@ "proc_macro_deps": { "common": [ { - "id": "mockall_derive 0.13.1", + "id": "mockall_derive 0.13.0", "target": "mockall_derive" } ], "selects": {} }, - "version": "0.13.1" + "version": "0.13.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -42094,14 +42039,14 @@ ], "license_file": "LICENSE-APACHE" }, - "mockall_derive 0.13.1": { + "mockall_derive 0.13.0": { "name": "mockall_derive", - "version": "0.13.1", + "version": "0.13.0", "package_url": "https://github.com/asomers/mockall", "repository": { "Http": { - "url": "https://static.crates.io/crates/mockall_derive/0.13.1/download", - "sha256": "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898" + "url": "https://static.crates.io/crates/mockall_derive/0.13.0/download", + "sha256": "341014e7f530314e9a1fdbc7400b244efea7122662c96bfa248c31da5bfb2020" } }, "targets": [ @@ -42142,26 +42087,26 @@ "target": "cfg_if" }, { - "id": "mockall_derive 0.13.1", + "id": "mockall_derive 0.13.0", "target": "build_script_build" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.13.1" + "version": "0.13.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -42178,14 +42123,14 @@ ], "license_file": "LICENSE-APACHE" }, - "mockito 1.6.1": { + "mockito 1.2.0": { "name": "mockito", - "version": "1.6.1", + "version": "1.2.0", "package_url": "https://github.com/lipanski/mockito", "repository": { "Http": { - "url": "https://static.crates.io/crates/mockito/1.6.1/download", - "sha256": "652cd6d169a36eaf9d1e6bce1a221130439a966d7f27858af66a33a66e9c4ee2" + "url": "https://static.crates.io/crates/mockito/1.2.0/download", + "sha256": "f8d3038e23466858569c2d30a537f691fa0d53b51626630ae08262943e3bbb8b" } }, "targets": [ @@ -42222,39 +42167,19 @@ "target": "assert_json_diff" }, { - "id": "bytes 1.9.0", - "target": "bytes" - }, - { - "id": "colored 2.2.0", + "id": "colored 2.0.4", "target": "colored" }, { - "id": "futures-util 0.3.31", - "target": "futures_util" - }, - { - "id": "http 1.2.0", - "target": "http" - }, - { - "id": "http-body 1.0.1", - "target": "http_body" - }, - { - "id": "http-body-util 0.1.2", - "target": "http_body_util" + "id": "futures 0.3.31", + "target": "futures" }, { - "id": "hyper 1.5.2", + "id": "hyper 0.14.27", "target": "hyper" }, { - "id": "hyper-util 0.1.10", - "target": "hyper_util" - }, - { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -42262,11 +42187,11 @@ "target": "rand" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -42274,18 +42199,18 @@ "target": "serde_urlencoded" }, { - "id": "similar 2.6.0", + "id": "similar 2.3.0", "target": "similar" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "1.6.1" + "version": "1.2.0" }, "license": "MIT", "license_ids": [ @@ -42293,14 +42218,14 @@ ], "license_file": "LICENSE" }, - "moka 0.12.10": { + "moka 0.12.8": { "name": "moka", - "version": "0.12.10", + "version": "0.12.8", "package_url": "https://github.com/moka-rs/moka", "repository": { "Http": { - "url": "https://static.crates.io/crates/moka/0.12.10/download", - "sha256": "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" + "url": "https://static.crates.io/crates/moka/0.12.8/download", + "sha256": "32cf62eb4dd975d2dde76432fb1075c49e3ee2331cf36f1f8fd4b66550d32b6f" } }, "targets": [ @@ -42337,10 +42262,13 @@ "crate_features": { "common": [ "async-lock", + "async-trait", + "atomic64", "default", "event-listener", "future", "futures-util", + "quanta", "sync" ], "selects": {} @@ -42348,11 +42276,11 @@ "deps": { "common": [ { - "id": "async-lock 3.4.0", + "id": "async-lock 3.3.0", "target": "async_lock" }, { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { @@ -42360,11 +42288,11 @@ "target": "crossbeam_epoch" }, { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" }, { - "id": "event-listener 5.4.0", + "id": "event-listener 5.3.1", "target": "event_listener" }, { @@ -42372,16 +42300,20 @@ "target": "futures_util" }, { - "id": "moka 0.12.10", + "id": "moka 0.12.8", "target": "build_script_build" }, { - "id": "parking_lot 0.12.3", + "id": "once_cell 1.19.0", + "target": "once_cell" + }, + { + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { - "id": "portable-atomic 1.10.0", - "target": "portable_atomic" + "id": "quanta 0.12.3", + "target": "quanta" }, { "id": "smallvec 1.13.2", @@ -42392,25 +42324,31 @@ "target": "tagptr" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "uuid 1.12.0", + "id": "triomphe 0.1.9", + "target": "triomphe" + }, + { + "id": "uuid 1.11.0", "target": "uuid" } ], - "selects": { - "cfg(moka_loom)": [ - { - "id": "loom 0.7.2", - "target": "loom" - } - ] - } + "selects": {} }, "edition": "2021", - "version": "0.12.10" + "proc_macro_deps": { + "common": [ + { + "id": "async-trait 0.1.83", + "target": "async_trait" + } + ], + "selects": {} + }, + "version": "0.12.8" }, "build_script_attrs": { "compile_data_glob": [ @@ -42424,7 +42362,7 @@ "selects": { "cfg(rustver)": [ { - "id": "rustc_version 0.4.1", + "id": "rustc_version 0.4.0", "target": "rustc_version" } ] @@ -42533,7 +42471,7 @@ "target": "bytes" }, { - "id": "encoding_rs 0.8.35", + "id": "encoding_rs 0.8.33", "target": "encoding_rs" }, { @@ -42545,15 +42483,15 @@ "target": "http" }, { - "id": "httparse 1.9.5", + "id": "httparse 1.8.0", "target": "httparse" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" }, { @@ -42584,7 +42522,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.5", + "id": "version_check 0.9.4", "target": "version_check" } ], @@ -42651,7 +42589,7 @@ "target": "bytes" }, { - "id": "encoding_rs 0.8.35", + "id": "encoding_rs 0.8.33", "target": "encoding_rs" }, { @@ -42663,11 +42601,11 @@ "target": "http" }, { - "id": "httparse 1.9.5", + "id": "httparse 1.8.0", "target": "httparse" }, { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" }, { @@ -42698,7 +42636,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.5", + "id": "version_check 0.9.4", "target": "version_check" } ], @@ -42711,14 +42649,14 @@ ], "license_file": "LICENSE" }, - "multimap 0.10.0": { + "multimap 0.8.3": { "name": "multimap", - "version": "0.10.0", + "version": "0.8.3", "package_url": "https://github.com/havarnov/multimap", "repository": { "Http": { - "url": "https://static.crates.io/crates/multimap/0.10.0/download", - "sha256": "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" + "url": "https://static.crates.io/crates/multimap/0.8.3/download", + "sha256": "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" } }, "targets": [ @@ -42741,23 +42679,23 @@ "**" ], "edition": "2015", - "version": "0.10.0" + "version": "0.8.3" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "neli 0.6.5": { + "neli 0.6.4": { "name": "neli", - "version": "0.6.5", + "version": "0.6.4", "package_url": "https://github.com/jbaublitz/neli", "repository": { "Http": { - "url": "https://static.crates.io/crates/neli/0.6.5/download", - "sha256": "93062a0dce6da2517ea35f301dfc88184ce18d3601ec786a727a87bf535deca9" + "url": "https://static.crates.io/crates/neli/0.6.4/download", + "sha256": "1100229e06604150b3becd61a4965d5c70f3be1759544ea7274166f4be41ef43" } }, "targets": [ @@ -42792,11 +42730,11 @@ "target": "byteorder" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" } ], @@ -42806,13 +42744,13 @@ "proc_macro_deps": { "common": [ { - "id": "neli-proc-macros 0.1.4", + "id": "neli-proc-macros 0.1.3", "target": "neli_proc_macros" } ], "selects": {} }, - "version": "0.6.5" + "version": "0.6.4" }, "license": "BSD-3-Clause", "license_ids": [ @@ -42820,14 +42758,14 @@ ], "license_file": "LICENSE" }, - "neli-proc-macros 0.1.4": { + "neli-proc-macros 0.1.3": { "name": "neli-proc-macros", - "version": "0.1.4", + "version": "0.1.3", "package_url": "https://github.com/jbaublitz/neli", "repository": { "Http": { - "url": "https://static.crates.io/crates/neli-proc-macros/0.1.4/download", - "sha256": "0c8034b7fbb6f9455b2a96c19e6edf8dc9fc34c70449938d8ee3b4df363f61fe" + "url": "https://static.crates.io/crates/neli-proc-macros/0.1.3/download", + "sha256": "c168194d373b1e134786274020dae7fc5513d565ea2ebb9bc9ff17ffb69106d4" } }, "targets": [ @@ -42852,15 +42790,15 @@ "deps": { "common": [ { - "id": "either 1.13.0", + "id": "either 1.9.0", "target": "either" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -42875,22 +42813,22 @@ "selects": {} }, "edition": "2018", - "version": "0.1.4" + "version": "0.1.3" }, "license": "BSD-3-Clause", "license_ids": [ "BSD-3-Clause" ], - "license_file": "LICENSE" + "license_file": null }, - "new_debug_unreachable 1.0.6": { + "new_debug_unreachable 1.0.4": { "name": "new_debug_unreachable", - "version": "1.0.6", + "version": "1.0.4", "package_url": "https://github.com/mbrubeck/rust-debug-unreachable", "repository": { "Http": { - "url": "https://static.crates.io/crates/new_debug_unreachable/1.0.6/download", - "sha256": "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" + "url": "https://static.crates.io/crates/new_debug_unreachable/1.0.4/download", + "sha256": "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" } }, "targets": [ @@ -42912,8 +42850,8 @@ "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "1.0.6" + "edition": "2018", + "version": "1.0.4" }, "license": "MIT", "license_ids": [ @@ -42957,11 +42895,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "serde_path_to_error 0.1.16", + "id": "serde_path_to_error 0.1.14", "target": "serde_path_to_error" }, { @@ -42969,7 +42907,7 @@ "target": "strum" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -43073,7 +43011,7 @@ "target": "cfg_if" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -43140,7 +43078,7 @@ "target": "cfg_if" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -43196,7 +43134,7 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -43204,11 +43142,11 @@ "target": "cfg_if" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "memoffset 0.9.1", + "id": "memoffset 0.9.0", "target": "memoffset" } ], @@ -43275,7 +43213,7 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -43283,7 +43221,7 @@ "target": "cfg_if" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -43404,7 +43342,7 @@ "deps": { "common": [ { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" }, { @@ -43674,7 +43612,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -43813,11 +43751,11 @@ "target": "byteorder" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "libm 0.2.11", + "id": "libm 0.2.8", "target": "libm" }, { @@ -43829,7 +43767,7 @@ "target": "num_integer" }, { - "id": "num-iter 0.1.45", + "id": "num-iter 0.1.43", "target": "num_iter" }, { @@ -43944,11 +43882,11 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.6", + "id": "arrayvec 0.7.4", "target": "arrayvec" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" } ], @@ -44019,14 +43957,14 @@ ], "license_file": "LICENSE-APACHE" }, - "num-iter 0.1.45": { + "num-iter 0.1.43": { "name": "num-iter", - "version": "0.1.45", + "version": "0.1.43", "package_url": "https://github.com/rust-num/num-iter", "repository": { "Http": { - "url": "https://static.crates.io/crates/num-iter/0.1.45/download", - "sha256": "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" + "url": "https://static.crates.io/crates/num-iter/0.1.43/download", + "sha256": "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" } }, "targets": [ @@ -44041,6 +43979,18 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], "library_target_name": "num_iter", @@ -44054,6 +44004,10 @@ "id": "num-integer 0.1.46", "target": "num_integer" }, + { + "id": "num-iter 0.1.43", + "target": "build_script_build" + }, { "id": "num-traits 0.2.19", "target": "num_traits" @@ -44061,8 +44015,25 @@ ], "selects": {} }, - "edition": "2018", - "version": "0.1.45" + "edition": "2015", + "version": "0.1.43" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "autocfg 1.1.0", + "target": "autocfg" + } + ], + "selects": {} + } }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -44156,7 +44127,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -44223,7 +44194,7 @@ "deps": { "common": [ { - "id": "libm 0.2.11", + "id": "libm 0.2.8", "target": "libm" }, { @@ -44246,7 +44217,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -44294,7 +44265,7 @@ "selects": { "cfg(not(windows))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -44316,14 +44287,14 @@ ], "license_file": "LICENSE-APACHE" }, - "num_enum 0.7.3": { + "num_enum 0.7.0": { "name": "num_enum", - "version": "0.7.3", + "version": "0.7.0", "package_url": "https://github.com/illicitonion/num_enum", "repository": { "Http": { - "url": "https://static.crates.io/crates/num_enum/0.7.3/download", - "sha256": "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" + "url": "https://static.crates.io/crates/num_enum/0.7.0/download", + "sha256": "70bf6736f74634d299d00086f02986875b3c2d924781a6a2cb6c201e73da0ceb" } }, "targets": [ @@ -44356,13 +44327,13 @@ "proc_macro_deps": { "common": [ { - "id": "num_enum_derive 0.7.3", + "id": "num_enum_derive 0.7.0", "target": "num_enum_derive" } ], "selects": {} }, - "version": "0.7.3" + "version": "0.7.0" }, "license": "BSD-3-Clause OR MIT OR Apache-2.0", "license_ids": [ @@ -44372,14 +44343,14 @@ ], "license_file": "LICENSE-APACHE" }, - "num_enum_derive 0.7.3": { + "num_enum_derive 0.7.0": { "name": "num_enum_derive", - "version": "0.7.3", + "version": "0.7.0", "package_url": "https://github.com/illicitonion/num_enum", "repository": { "Http": { - "url": "https://static.crates.io/crates/num_enum_derive/0.7.3/download", - "sha256": "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" + "url": "https://static.crates.io/crates/num_enum_derive/0.7.0/download", + "sha256": "56ea360eafe1022f7cc56cd7b869ed57330fb2453d0c7831d99b74c65d2f5597" } }, "targets": [ @@ -44411,26 +44382,26 @@ "deps": { "common": [ { - "id": "proc-macro-crate 3.2.0", + "id": "proc-macro-crate 1.3.1", "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.7.3" + "version": "0.7.0" }, "license": "BSD-3-Clause OR MIT OR Apache-2.0", "license_ids": [ @@ -44440,14 +44411,14 @@ ], "license_file": "LICENSE-APACHE" }, - "num_threads 0.1.7": { + "num_threads 0.1.6": { "name": "num_threads", - "version": "0.1.7", + "version": "0.1.6", "package_url": "https://github.com/jhpratt/num_threads", "repository": { "Http": { - "url": "https://static.crates.io/crates/num_threads/0.1.7/download", - "sha256": "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" + "url": "https://static.crates.io/crates/num_threads/0.1.6/download", + "sha256": "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" } }, "targets": [ @@ -44474,14 +44445,14 @@ "selects": { "cfg(any(target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\"))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] } }, "edition": "2015", - "version": "0.1.7" + "version": "0.1.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -44535,6 +44506,66 @@ ], "license_file": null }, + "object 0.32.1": { + "name": "object", + "version": "0.32.1", + "package_url": "https://github.com/gimli-rs/object", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/object/0.32.1/download", + "sha256": "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" + } + }, + "targets": [ + { + "Library": { + "crate_name": "object", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "object", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "archive", + "coff", + "elf", + "macho", + "pe", + "read_core", + "unaligned" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "memchr 2.6.4", + "target": "memchr" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.32.1" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "object 0.36.7": { "name": "object", "version": "0.36.7", @@ -44589,137 +44620,12 @@ "write_std", "xcoff" ], - "selects": { - "aarch64-apple-darwin": [ - "archive", - "unaligned" - ], - "aarch64-apple-ios": [ - "archive", - "unaligned" - ], - "aarch64-apple-ios-sim": [ - "archive", - "unaligned" - ], - "aarch64-linux-android": [ - "archive", - "unaligned" - ], - "aarch64-unknown-fuchsia": [ - "archive", - "unaligned" - ], - "aarch64-unknown-linux-gnu": [ - "archive", - "unaligned" - ], - "aarch64-unknown-nixos-gnu": [ - "archive", - "unaligned" - ], - "aarch64-unknown-nto-qnx710": [ - "archive", - "unaligned" - ], - "arm-unknown-linux-gnueabi": [ - "archive", - "unaligned" - ], - "armv7-linux-androideabi": [ - "archive", - "unaligned" - ], - "armv7-unknown-linux-gnueabi": [ - "archive", - "unaligned" - ], - "i686-apple-darwin": [ - "archive", - "unaligned" - ], - "i686-linux-android": [ - "archive", - "unaligned" - ], - "i686-unknown-freebsd": [ - "archive", - "unaligned" - ], - "i686-unknown-linux-gnu": [ - "archive", - "unaligned" - ], - "powerpc-unknown-linux-gnu": [ - "archive", - "unaligned" - ], - "riscv32imc-unknown-none-elf": [ - "archive", - "unaligned" - ], - "riscv64gc-unknown-none-elf": [ - "archive", - "unaligned" - ], - "s390x-unknown-linux-gnu": [ - "archive", - "unaligned" - ], - "thumbv7em-none-eabi": [ - "archive", - "unaligned" - ], - "thumbv8m.main-none-eabi": [ - "archive", - "unaligned" - ], - "wasm32-unknown-unknown": [ - "archive", - "unaligned" - ], - "wasm32-wasip1": [ - "archive", - "unaligned" - ], - "x86_64-apple-darwin": [ - "archive", - "unaligned" - ], - "x86_64-apple-ios": [ - "archive", - "unaligned" - ], - "x86_64-linux-android": [ - "archive", - "unaligned" - ], - "x86_64-unknown-freebsd": [ - "archive", - "unaligned" - ], - "x86_64-unknown-fuchsia": [ - "archive", - "unaligned" - ], - "x86_64-unknown-linux-gnu": [ - "archive", - "unaligned" - ], - "x86_64-unknown-nixos-gnu": [ - "archive", - "unaligned" - ], - "x86_64-unknown-none": [ - "archive", - "unaligned" - ] - } + "selects": {} }, "deps": { "common": [ { - "id": "crc32fast 1.4.2", + "id": "crc32fast 1.3.2", "target": "crc32fast" }, { @@ -44727,11 +44633,11 @@ "target": "hashbrown" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" }, { @@ -44759,14 +44665,14 @@ ], "license_file": "LICENSE-APACHE" }, - "oid-registry 0.7.1": { + "oid-registry 0.7.0": { "name": "oid-registry", - "version": "0.7.1", + "version": "0.7.0", "package_url": "https://github.com/rusticata/oid-registry.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/oid-registry/0.7.1/download", - "sha256": "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9" + "url": "https://static.crates.io/crates/oid-registry/0.7.0/download", + "sha256": "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d" } }, "targets": [ @@ -44819,18 +44725,18 @@ "deps": { "common": [ { - "id": "asn1-rs 0.6.2", + "id": "asn1-rs 0.6.1", "target": "asn1_rs" }, { - "id": "oid-registry 0.7.1", + "id": "oid-registry 0.7.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.7.1" + "version": "0.7.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -44847,14 +44753,14 @@ ], "license_file": "LICENSE-APACHE" }, - "once_cell 1.20.2": { + "once_cell 1.19.0": { "name": "once_cell", - "version": "1.20.2", + "version": "1.19.0", "package_url": "https://github.com/matklad/once_cell", "repository": { "Http": { - "url": "https://static.crates.io/crates/once_cell/1.20.2/download", - "sha256": "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" + "url": "https://static.crates.io/crates/once_cell/1.19.0/download", + "sha256": "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" } }, "targets": [ @@ -44886,7 +44792,7 @@ "selects": {} }, "edition": "2021", - "version": "1.20.2" + "version": "1.19.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -44895,14 +44801,14 @@ ], "license_file": "LICENSE-APACHE" }, - "oorandom 11.1.4": { + "oorandom 11.1.3": { "name": "oorandom", - "version": "11.1.4", - "package_url": "https://hg.sr.ht/~icefox/oorandom", + "version": "11.1.3", + "package_url": "https://sr.ht/~icefox/oorandom/", "repository": { "Http": { - "url": "https://static.crates.io/crates/oorandom/11.1.4/download", - "sha256": "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9" + "url": "https://static.crates.io/crates/oorandom/11.1.3/download", + "sha256": "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" } }, "targets": [ @@ -44925,7 +44831,7 @@ "**" ], "edition": "2018", - "version": "11.1.4" + "version": "11.1.3" }, "license": "MIT", "license_ids": [ @@ -44933,14 +44839,14 @@ ], "license_file": "LICENSE-MIT" }, - "opaque-debug 0.3.1": { + "opaque-debug 0.3.0": { "name": "opaque-debug", - "version": "0.3.1", + "version": "0.3.0", "package_url": "https://github.com/RustCrypto/utils", "repository": { "Http": { - "url": "https://static.crates.io/crates/opaque-debug/0.3.1/download", - "sha256": "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" + "url": "https://static.crates.io/crates/opaque-debug/0.3.0/download", + "sha256": "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" } }, "targets": [ @@ -44963,7 +44869,7 @@ "**" ], "edition": "2018", - "version": "0.3.1" + "version": "0.3.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -45014,7 +44920,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.6", + "id": "arrayvec 0.7.4", "target": "arrayvec" }, { @@ -45032,7 +44938,7 @@ "proc_macro_deps": { "common": [ { - "id": "auto_impl 1.2.1", + "id": "auto_impl 1.1.0", "target": "auto_impl" }, { @@ -45087,11 +44993,11 @@ "target": "bytes" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -45158,7 +45064,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -45213,14 +45119,14 @@ ], "license_file": "LICENSE-APACHE" }, - "openssl-sys 0.9.104": { + "openssl-sys 0.9.102": { "name": "openssl-sys", - "version": "0.9.104", + "version": "0.9.102", "package_url": "https://github.com/sfackler/rust-openssl", "repository": { "Http": { - "url": "https://static.crates.io/crates/openssl-sys/0.9.104/download", - "sha256": "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" + "url": "https://static.crates.io/crates/openssl-sys/0.9.102/download", + "sha256": "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" } }, "targets": [ @@ -45257,18 +45163,18 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "openssl-sys 0.9.104", + "id": "openssl-sys 0.9.102", "target": "build_script_main" } ], "selects": {} }, - "edition": "2021", - "version": "0.9.104" + "edition": "2018", + "version": "0.9.102" }, "build_script_attrs": { "compile_data_glob": [ @@ -45280,11 +45186,11 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" }, { @@ -45467,19 +45373,19 @@ "target": "futures_sink" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -45490,7 +45396,7 @@ "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" } ] @@ -45505,14 +45411,14 @@ ], "license_file": "LICENSE" }, - "opentelemetry 0.27.1": { + "opentelemetry 0.27.0": { "name": "opentelemetry", - "version": "0.27.1", + "version": "0.27.0", "package_url": "https://github.com/open-telemetry/opentelemetry-rust", "repository": { "Http": { - "url": "https://static.crates.io/crates/opentelemetry/0.27.1/download", - "sha256": "ab70038c28ed37b97d8ed414b6429d343a8bbf44c9f79ec854f3a643029ba6d7" + "url": "https://static.crates.io/crates/opentelemetry/0.27.0/download", + "sha256": "0f3cebff57f7dbd1255b44d8bddc2cebeb0ea677dbaa2e25a3070a91b318f660" } }, "targets": [ @@ -45537,15 +45443,10 @@ "crate_features": { "common": [ "default", - "futures-core", - "futures-sink", - "internal-logs", "logs", "metrics", "pin-project-lite", - "thiserror", - "trace", - "tracing" + "trace" ], "selects": {} }, @@ -45560,29 +45461,29 @@ "target": "futures_sink" }, { - "id": "pin-project-lite 0.2.16", - "target": "pin_project_lite" + "id": "once_cell 1.19.0", + "target": "once_cell" }, { - "id": "thiserror 1.0.69", - "target": "thiserror" + "id": "pin-project-lite 0.2.13", + "target": "pin_project_lite" }, { - "id": "tracing 0.1.41", - "target": "tracing" + "id": "thiserror 1.0.68", + "target": "thiserror" } ], "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" } ] } }, "edition": "2021", - "version": "0.27.1" + "version": "0.27.0" }, "license": "Apache-2.0", "license_ids": [ @@ -45646,7 +45547,7 @@ "target": "http" }, { - "id": "opentelemetry 0.27.1", + "id": "opentelemetry 0.27.0", "target": "opentelemetry" }, { @@ -45658,15 +45559,15 @@ "target": "opentelemetry_sdk" }, { - "id": "prost 0.13.4", + "id": "prost 0.13.3", "target": "prost" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -45684,7 +45585,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -45730,7 +45631,7 @@ "deps": { "common": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -45799,7 +45700,7 @@ "deps": { "common": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -45874,7 +45775,7 @@ "deps": { "common": [ { - "id": "opentelemetry 0.27.1", + "id": "opentelemetry 0.27.0", "target": "opentelemetry" }, { @@ -45882,7 +45783,7 @@ "target": "opentelemetry_sdk" }, { - "id": "prost 0.13.4", + "id": "prost 0.13.3", "target": "prost" }, { @@ -46000,22 +45901,22 @@ "target": "indexmap" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], "selects": { "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" } ] @@ -46083,15 +45984,15 @@ "target": "indexmap" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -46102,7 +46003,7 @@ "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" } ] @@ -46160,7 +46061,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { @@ -46176,7 +46077,7 @@ "target": "futures_util" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -46192,7 +46093,7 @@ "target": "rand" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -46202,7 +46103,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -46261,7 +46162,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { @@ -46277,7 +46178,7 @@ "target": "futures_util" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -46297,11 +46198,11 @@ "target": "rand" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -46311,7 +46212,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -46373,7 +46274,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { @@ -46389,11 +46290,11 @@ "target": "futures_util" }, { - "id": "glob 0.3.2", + "id": "glob 0.3.1", "target": "glob" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -46401,7 +46302,7 @@ "target": "opentelemetry" }, { - "id": "ordered-float 4.6.0", + "id": "ordered-float 4.2.0", "target": "ordered_float" }, { @@ -46413,11 +46314,11 @@ "target": "rand" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -46431,7 +46332,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -46508,11 +46409,11 @@ "target": "futures_util" }, { - "id": "glob 0.3.2", + "id": "glob 0.3.1", "target": "glob" }, { - "id": "opentelemetry 0.27.1", + "id": "opentelemetry 0.27.0", "target": "opentelemetry" }, { @@ -46524,15 +46425,15 @@ "target": "rand" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -46550,7 +46451,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -46672,14 +46573,14 @@ ], "license_file": "LICENSE-MIT" }, - "ordered-float 4.6.0": { + "ordered-float 4.2.0": { "name": "ordered-float", - "version": "4.6.0", + "version": "4.2.0", "package_url": "https://github.com/reem/rust-ordered-float", "repository": { "Http": { - "url": "https://static.crates.io/crates/ordered-float/4.6.0/download", - "sha256": "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951" + "url": "https://static.crates.io/crates/ordered-float/4.2.0/download", + "sha256": "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e" } }, "targets": [ @@ -46718,7 +46619,7 @@ "selects": {} }, "edition": "2021", - "version": "4.6.0" + "version": "4.2.0" }, "license": "MIT", "license_ids": [ @@ -46866,7 +46767,7 @@ "target": "elliptic_curve" }, { - "id": "primeorder 0.13.6", + "id": "primeorder 0.13.2", "target": "primeorder" }, { @@ -46941,14 +46842,14 @@ ], "license_file": "LICENSE-APACHE" }, - "parity-scale-codec 3.6.12": { + "parity-scale-codec 3.6.4": { "name": "parity-scale-codec", - "version": "3.6.12", + "version": "3.6.4", "package_url": "https://github.com/paritytech/parity-scale-codec", "repository": { "Http": { - "url": "https://static.crates.io/crates/parity-scale-codec/3.6.12/download", - "sha256": "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee" + "url": "https://static.crates.io/crates/parity-scale-codec/3.6.4/download", + "sha256": "dd8e946cc0cc711189c0b0249fb8b599cbeeab9784d83c415719368bb8d4ac64" } }, "targets": [ @@ -46984,7 +46885,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.6", + "id": "arrayvec 0.7.4", "target": "arrayvec" }, { @@ -47002,17 +46903,17 @@ "proc_macro_deps": { "common": [ { - "id": "impl-trait-for-tuples 0.2.3", + "id": "impl-trait-for-tuples 0.2.2", "target": "impl_trait_for_tuples" }, { - "id": "parity-scale-codec-derive 3.6.12", + "id": "parity-scale-codec-derive 3.6.5", "target": "parity_scale_codec_derive" } ], "selects": {} }, - "version": "3.6.12" + "version": "3.6.4" }, "license": "Apache-2.0", "license_ids": [ @@ -47020,14 +46921,14 @@ ], "license_file": "LICENSE" }, - "parity-scale-codec-derive 3.6.12": { + "parity-scale-codec-derive 3.6.5": { "name": "parity-scale-codec-derive", - "version": "3.6.12", + "version": "3.6.5", "package_url": null, "repository": { "Http": { - "url": "https://static.crates.io/crates/parity-scale-codec-derive/3.6.12/download", - "sha256": "d830939c76d294956402033aee57a6da7b438f2294eb94864c37b0569053a42c" + "url": "https://static.crates.io/crates/parity-scale-codec-derive/3.6.5/download", + "sha256": "312270ee71e1cd70289dacf597cab7b207aa107d2f28191c2ae45b2ece18a260" } }, "targets": [ @@ -47058,15 +46959,15 @@ "deps": { "common": [ { - "id": "proc-macro-crate 3.2.0", + "id": "proc-macro-crate 1.3.1", "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -47077,7 +46978,7 @@ "selects": {} }, "edition": "2021", - "version": "3.6.12" + "version": "3.6.5" }, "license": "Apache-2.0", "license_ids": [ @@ -47085,14 +46986,14 @@ ], "license_file": null }, - "parking 2.2.1": { + "parking 2.1.1": { "name": "parking", - "version": "2.2.1", + "version": "2.1.1", "package_url": "https://github.com/smol-rs/parking", "repository": { "Http": { - "url": "https://static.crates.io/crates/parking/2.2.1/download", - "sha256": "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" + "url": "https://static.crates.io/crates/parking/2.1.1/download", + "sha256": "e52c774a4c39359c1d1c52e43f73dd91a75a614652c825408eec30c95a9b2067" } }, "targets": [ @@ -47115,7 +47016,7 @@ "**" ], "edition": "2018", - "version": "2.2.1" + "version": "2.1.1" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -47162,11 +47063,11 @@ "deps": { "common": [ { - "id": "instant 0.1.13", + "id": "instant 0.1.12", "target": "instant" }, { - "id": "lock_api 0.4.12", + "id": "lock_api 0.4.10", "target": "lock_api" }, { @@ -47186,14 +47087,14 @@ ], "license_file": "LICENSE-APACHE" }, - "parking_lot 0.12.3": { + "parking_lot 0.12.1": { "name": "parking_lot", - "version": "0.12.3", + "version": "0.12.1", "package_url": "https://github.com/Amanieu/parking_lot", "repository": { "Http": { - "url": "https://static.crates.io/crates/parking_lot/0.12.3/download", - "sha256": "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" + "url": "https://static.crates.io/crates/parking_lot/0.12.1/download", + "sha256": "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" } }, "targets": [ @@ -47224,18 +47125,18 @@ "deps": { "common": [ { - "id": "lock_api 0.4.12", + "id": "lock_api 0.4.10", "target": "lock_api" }, { - "id": "parking_lot_core 0.9.10", + "id": "parking_lot_core 0.9.8", "target": "parking_lot_core" } ], "selects": {} }, - "edition": "2021", - "version": "0.12.3" + "edition": "2018", + "version": "0.12.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -47292,7 +47193,7 @@ "target": "cfg_if" }, { - "id": "instant 0.1.13", + "id": "instant 0.1.12", "target": "instant" }, { @@ -47313,7 +47214,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -47343,14 +47244,14 @@ ], "license_file": "LICENSE-APACHE" }, - "parking_lot_core 0.9.10": { + "parking_lot_core 0.9.8": { "name": "parking_lot_core", - "version": "0.9.10", + "version": "0.9.8", "package_url": "https://github.com/Amanieu/parking_lot", "repository": { "Http": { - "url": "https://static.crates.io/crates/parking_lot_core/0.9.10/download", - "sha256": "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" + "url": "https://static.crates.io/crates/parking_lot_core/0.9.8/download", + "sha256": "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" } }, "targets": [ @@ -47391,7 +47292,7 @@ "target": "cfg_if" }, { - "id": "parking_lot_core 0.9.10", + "id": "parking_lot_core 0.9.8", "target": "build_script_build" }, { @@ -47402,26 +47303,26 @@ "selects": { "cfg(target_os = \"redox\")": [ { - "id": "redox_syscall 0.5.8", + "id": "redox_syscall 0.3.5", "target": "syscall" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(windows)": [ { - "id": "windows-targets 0.52.6", + "id": "windows-targets 0.48.5", "target": "windows_targets" } ] } }, - "edition": "2021", - "version": "0.9.10" + "edition": "2018", + "version": "0.9.8" }, "build_script_attrs": { "compile_data_glob": [ @@ -47608,14 +47509,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pcre2 0.2.9": { + "pcre2 0.2.6": { "name": "pcre2", - "version": "0.2.9", + "version": "0.2.6", "package_url": "https://github.com/BurntSushi/rust-pcre2", "repository": { "Http": { - "url": "https://static.crates.io/crates/pcre2/0.2.9/download", - "sha256": "3be55c43ac18044541d58d897e8f4c55157218428953ebd39d86df3ba0286b2b" + "url": "https://static.crates.io/crates/pcre2/0.2.6/download", + "sha256": "4c9d53a8ea5fc3d3568d3de4bebc12606fd0eb8234c602576f1f1ee4880488a7" } }, "targets": [ @@ -47640,22 +47541,22 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "pcre2-sys 0.2.9", + "id": "pcre2-sys 0.2.8", "target": "pcre2_sys" } ], "selects": {} }, "edition": "2021", - "version": "0.2.9" + "version": "0.2.6" }, "license": "Unlicense OR MIT", "license_ids": [ @@ -47664,14 +47565,14 @@ ], "license_file": "LICENSE-MIT" }, - "pcre2-sys 0.2.9": { + "pcre2-sys 0.2.8": { "name": "pcre2-sys", - "version": "0.2.9", + "version": "0.2.8", "package_url": "https://github.com/BurntSushi/rust-pcre2", "repository": { "Http": { - "url": "https://static.crates.io/crates/pcre2-sys/0.2.9/download", - "sha256": "550f5d18fb1b90c20b87e161852c10cde77858c3900c5059b5ad2a1449f11d8a" + "url": "https://static.crates.io/crates/pcre2-sys/0.2.8/download", + "sha256": "25b8a7b5253a4465b873a21ee7e8d6ec561a57eed5d319621bec36bea35c86ae" } }, "targets": [ @@ -47708,18 +47609,18 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "pcre2-sys 0.2.9", + "id": "pcre2-sys 0.2.8", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.2.9" + "version": "0.2.8" }, "build_script_attrs": { "compile_data_glob": [ @@ -47731,11 +47632,11 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" } ], @@ -47990,14 +47891,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pest 2.7.15": { + "pest 2.7.4": { "name": "pest", - "version": "2.7.15", + "version": "2.7.4", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest/2.7.15/download", - "sha256": "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc" + "url": "https://static.crates.io/crates/pest/2.7.4/download", + "sha256": "c022f1e7b65d6a24c0dbbd5fb344c66881bc01f3e5ae74a1c8100f2f985d98a4" } }, "targets": [ @@ -48030,22 +47931,22 @@ "deps": { "common": [ { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "ucd-trie 0.1.7", + "id": "ucd-trie 0.1.6", "target": "ucd_trie" } ], "selects": {} }, "edition": "2021", - "version": "2.7.15" + "version": "2.7.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -48054,14 +47955,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pest_derive 2.7.15": { + "pest_derive 2.7.4": { "name": "pest_derive", - "version": "2.7.15", + "version": "2.7.4", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_derive/2.7.15/download", - "sha256": "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e" + "url": "https://static.crates.io/crates/pest_derive/2.7.4/download", + "sha256": "35513f630d46400a977c4cb58f78e1bfbe01434316e60c37d27b9ad6139c66d8" } }, "targets": [ @@ -48093,18 +47994,18 @@ "deps": { "common": [ { - "id": "pest 2.7.15", + "id": "pest 2.7.4", "target": "pest" }, { - "id": "pest_generator 2.7.15", + "id": "pest_generator 2.7.4", "target": "pest_generator" } ], "selects": {} }, "edition": "2021", - "version": "2.7.15" + "version": "2.7.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -48113,14 +48014,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pest_generator 2.7.15": { + "pest_generator 2.7.4": { "name": "pest_generator", - "version": "2.7.15", + "version": "2.7.4", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_generator/2.7.15/download", - "sha256": "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b" + "url": "https://static.crates.io/crates/pest_generator/2.7.4/download", + "sha256": "bc9fc1b9e7057baba189b5c626e2d6f40681ae5b6eb064dc7c7834101ec8123a" } }, "targets": [ @@ -48151,30 +48052,30 @@ "deps": { "common": [ { - "id": "pest 2.7.15", + "id": "pest 2.7.4", "target": "pest" }, { - "id": "pest_meta 2.7.15", + "id": "pest_meta 2.7.4", "target": "pest_meta" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.7.15" + "version": "2.7.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -48183,14 +48084,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pest_meta 2.7.15": { + "pest_meta 2.7.4": { "name": "pest_meta", - "version": "2.7.15", + "version": "2.7.4", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_meta/2.7.15/download", - "sha256": "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea" + "url": "https://static.crates.io/crates/pest_meta/2.7.4/download", + "sha256": "1df74e9e7ec4053ceb980e7c0c8bd3594e977fde1af91daba9c928e8e8c6708d" } }, "targets": [ @@ -48221,18 +48122,18 @@ "deps": { "common": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "pest 2.7.15", + "id": "pest 2.7.4", "target": "pest" } ], "selects": {} }, "edition": "2021", - "version": "2.7.15" + "version": "2.7.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -48241,14 +48142,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pest_vm 2.7.15": { + "pest_vm 2.7.4": { "name": "pest_vm", - "version": "2.7.15", + "version": "2.7.4", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_vm/2.7.15/download", - "sha256": "a8151168a80801131f6e0e79d6c84fa337ccd2493c99e59de027354c3e6fca0b" + "url": "https://static.crates.io/crates/pest_vm/2.7.4/download", + "sha256": "e42d84ab5b383273ab842bdc50249b5fea1cec928bcf3338e7749113f25bab7a" } }, "targets": [ @@ -48273,18 +48174,18 @@ "deps": { "common": [ { - "id": "pest 2.7.15", + "id": "pest 2.7.4", "target": "pest" }, { - "id": "pest_meta 2.7.15", + "id": "pest_meta 2.7.4", "target": "pest_meta" } ], "selects": {} }, "edition": "2021", - "version": "2.7.15" + "version": "2.7.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -48293,14 +48194,14 @@ ], "license_file": null }, - "petgraph 0.6.5": { + "petgraph 0.6.4": { "name": "petgraph", - "version": "0.6.5", + "version": "0.6.4", "package_url": "https://github.com/petgraph/petgraph", "repository": { "Http": { - "url": "https://static.crates.io/crates/petgraph/0.6.5/download", - "sha256": "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" + "url": "https://static.crates.io/crates/petgraph/0.6.4/download", + "sha256": "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" } }, "targets": [ @@ -48329,14 +48230,14 @@ "target": "fixedbitset" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" } ], "selects": {} }, "edition": "2018", - "version": "0.6.5" + "version": "0.6.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -48399,14 +48300,14 @@ ], "license_file": null }, - "phf 0.11.3": { + "phf 0.11.2": { "name": "phf", - "version": "0.11.3", + "version": "0.11.2", "package_url": "https://github.com/rust-phf/rust-phf", "repository": { "Http": { - "url": "https://static.crates.io/crates/phf/0.11.3/download", - "sha256": "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" + "url": "https://static.crates.io/crates/phf/0.11.2/download", + "sha256": "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" } }, "targets": [ @@ -48440,7 +48341,7 @@ "deps": { "common": [ { - "id": "phf_shared 0.11.3", + "id": "phf_shared 0.11.2", "target": "phf_shared" } ], @@ -48450,13 +48351,13 @@ "proc_macro_deps": { "common": [ { - "id": "phf_macros 0.11.3", + "id": "phf_macros 0.11.2", "target": "phf_macros" } ], "selects": {} }, - "version": "0.11.3" + "version": "0.11.2" }, "license": "MIT", "license_ids": [ @@ -48566,14 +48467,14 @@ ], "license_file": null }, - "phf_generator 0.11.3": { + "phf_generator 0.11.2": { "name": "phf_generator", - "version": "0.11.3", + "version": "0.11.2", "package_url": "https://github.com/rust-phf/rust-phf", "repository": { "Http": { - "url": "https://static.crates.io/crates/phf_generator/0.11.3/download", - "sha256": "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" + "url": "https://static.crates.io/crates/phf_generator/0.11.2/download", + "sha256": "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" } }, "targets": [ @@ -48598,7 +48499,7 @@ "deps": { "common": [ { - "id": "phf_shared 0.11.3", + "id": "phf_shared 0.11.2", "target": "phf_shared" }, { @@ -48609,7 +48510,7 @@ "selects": {} }, "edition": "2021", - "version": "0.11.3" + "version": "0.11.2" }, "license": "MIT", "license_ids": [ @@ -48617,14 +48518,14 @@ ], "license_file": "LICENSE" }, - "phf_macros 0.11.3": { + "phf_macros 0.11.2": { "name": "phf_macros", - "version": "0.11.3", + "version": "0.11.2", "package_url": "https://github.com/rust-phf/rust-phf", "repository": { "Http": { - "url": "https://static.crates.io/crates/phf_macros/0.11.3/download", - "sha256": "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" + "url": "https://static.crates.io/crates/phf_macros/0.11.2/download", + "sha256": "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" } }, "targets": [ @@ -48649,36 +48550,36 @@ "deps": { "common": [ { - "id": "phf_generator 0.11.3", + "id": "phf_generator 0.11.2", "target": "phf_generator" }, { - "id": "phf_shared 0.11.3", + "id": "phf_shared 0.11.2", "target": "phf_shared" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.11.3" + "version": "0.11.2" }, "license": "MIT", "license_ids": [ "MIT" ], - "license_file": "LICENSE" + "license_file": null }, "phf_shared 0.10.0": { "name": "phf_shared", @@ -48734,14 +48635,14 @@ ], "license_file": null }, - "phf_shared 0.11.3": { + "phf_shared 0.11.2": { "name": "phf_shared", - "version": "0.11.3", + "version": "0.11.2", "package_url": "https://github.com/rust-phf/rust-phf", "repository": { "Http": { - "url": "https://static.crates.io/crates/phf_shared/0.11.3/download", - "sha256": "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" + "url": "https://static.crates.io/crates/phf_shared/0.11.2/download", + "sha256": "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" } }, "targets": [ @@ -48772,14 +48673,14 @@ "deps": { "common": [ { - "id": "siphasher 1.0.1", + "id": "siphasher 0.3.11", "target": "siphasher" } ], "selects": {} }, "edition": "2021", - "version": "0.11.3" + "version": "0.11.2" }, "license": "MIT", "license_ids": [ @@ -48825,14 +48726,14 @@ ], "license_file": "LICENSE" }, - "pin-project 1.1.8": { + "pin-project 1.1.3": { "name": "pin-project", - "version": "1.1.8", + "version": "1.1.3", "package_url": "https://github.com/taiki-e/pin-project", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project/1.1.8/download", - "sha256": "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916" + "url": "https://static.crates.io/crates/pin-project/1.1.3/download", + "sha256": "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" } }, "targets": [ @@ -48858,13 +48759,13 @@ "proc_macro_deps": { "common": [ { - "id": "pin-project-internal 1.1.8", + "id": "pin-project-internal 1.1.3", "target": "pin_project_internal" } ], "selects": {} }, - "version": "1.1.8" + "version": "1.1.3" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -48873,14 +48774,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pin-project-internal 1.1.8": { + "pin-project-internal 1.1.3": { "name": "pin-project-internal", - "version": "1.1.8", + "version": "1.1.3", "package_url": "https://github.com/taiki-e/pin-project", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project-internal/1.1.8/download", - "sha256": "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb" + "url": "https://static.crates.io/crates/pin-project-internal/1.1.3/download", + "sha256": "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" } }, "targets": [ @@ -48905,22 +48806,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.1.8" + "version": "1.1.3" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -48929,14 +48830,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pin-project-lite 0.2.16": { + "pin-project-lite 0.2.13": { "name": "pin-project-lite", - "version": "0.2.16", + "version": "0.2.13", "package_url": "https://github.com/taiki-e/pin-project-lite", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project-lite/0.2.16/download", - "sha256": "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" + "url": "https://static.crates.io/crates/pin-project-lite/0.2.13/download", + "sha256": "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" } }, "targets": [ @@ -48959,7 +48860,7 @@ "**" ], "edition": "2018", - "version": "0.2.16" + "version": "0.2.13" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -49007,14 +48908,14 @@ ], "license_file": "LICENSE-APACHE" }, - "ping 0.5.2": { + "ping 0.5.0": { "name": "ping", - "version": "0.5.2", + "version": "0.5.0", "package_url": "https://github.com/aisk/rust-ping", "repository": { "Http": { - "url": "https://static.crates.io/crates/ping/0.5.2/download", - "sha256": "122ee1f5a6843bec84fcbd5c6ba3622115337a6b8965b93a61aad347648f4e8d" + "url": "https://static.crates.io/crates/ping/0.5.0/download", + "sha256": "985c8af0584bf35ecfb95a65b74a457782966e1ab8f2c94c01697a36432a5814" } }, "targets": [ @@ -49043,18 +48944,18 @@ "target": "rand" }, { - "id": "socket2 0.4.10", + "id": "socket2 0.4.9", "target": "socket2" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], "selects": {} }, "edition": "2018", - "version": "0.5.2" + "version": "0.5.0" }, "license": "MIT", "license_ids": [ @@ -49106,7 +49007,7 @@ "target": "atomic_waker" }, { - "id": "fastrand 2.3.0", + "id": "fastrand 2.2.0", "target": "fastrand" }, { @@ -49168,7 +49069,7 @@ "deps": { "common": [ { - "id": "der 0.7.9", + "id": "der 0.7.8", "target": "der" }, { @@ -49232,7 +49133,7 @@ "deps": { "common": [ { - "id": "der 0.7.9", + "id": "der 0.7.8", "target": "der" }, { @@ -49252,14 +49153,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pkg-config 0.3.31": { + "pkg-config 0.3.27": { "name": "pkg-config", - "version": "0.3.31", + "version": "0.3.27", "package_url": "https://github.com/rust-lang/pkg-config-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/pkg-config/0.3.31/download", - "sha256": "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" + "url": "https://static.crates.io/crates/pkg-config/0.3.27/download", + "sha256": "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" } }, "targets": [ @@ -49281,8 +49182,8 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "0.3.31" + "edition": "2015", + "version": "0.3.27" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -49291,14 +49192,14 @@ ], "license_file": "LICENSE-APACHE" }, - "plotters 0.3.7": { + "plotters 0.3.5": { "name": "plotters", - "version": "0.3.7", + "version": "0.3.5", "package_url": "https://github.com/plotters-rs/plotters", "repository": { "Http": { - "url": "https://static.crates.io/crates/plotters/0.3.7/download", - "sha256": "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747" + "url": "https://static.crates.io/crates/plotters/0.3.5/download", + "sha256": "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" } }, "targets": [ @@ -49336,29 +49237,29 @@ "target": "num_traits" }, { - "id": "plotters-backend 0.3.7", + "id": "plotters-backend 0.3.5", "target": "plotters_backend" }, { - "id": "plotters-svg 0.3.7", + "id": "plotters-svg 0.3.5", "target": "plotters_svg" } ], "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" }, { - "id": "web-sys 0.3.77", + "id": "web-sys 0.3.64", "target": "web_sys" } ] } }, "edition": "2018", - "version": "0.3.7" + "version": "0.3.5" }, "license": "MIT", "license_ids": [ @@ -49366,14 +49267,14 @@ ], "license_file": "LICENSE" }, - "plotters-backend 0.3.7": { + "plotters-backend 0.3.5": { "name": "plotters-backend", - "version": "0.3.7", + "version": "0.3.5", "package_url": "https://github.com/plotters-rs/plotters", "repository": { "Http": { - "url": "https://static.crates.io/crates/plotters-backend/0.3.7/download", - "sha256": "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a" + "url": "https://static.crates.io/crates/plotters-backend/0.3.5/download", + "sha256": "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" } }, "targets": [ @@ -49396,7 +49297,7 @@ "**" ], "edition": "2018", - "version": "0.3.7" + "version": "0.3.5" }, "license": "MIT", "license_ids": [ @@ -49404,14 +49305,14 @@ ], "license_file": "LICENSE" }, - "plotters-svg 0.3.7": { + "plotters-svg 0.3.5": { "name": "plotters-svg", - "version": "0.3.7", + "version": "0.3.5", "package_url": "https://github.com/plotters-rs/plotters.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/plotters-svg/0.3.7/download", - "sha256": "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670" + "url": "https://static.crates.io/crates/plotters-svg/0.3.5/download", + "sha256": "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" } }, "targets": [ @@ -49436,14 +49337,14 @@ "deps": { "common": [ { - "id": "plotters-backend 0.3.7", + "id": "plotters-backend 0.3.5", "target": "plotters_backend" } ], "selects": {} }, "edition": "2018", - "version": "0.3.7" + "version": "0.3.5" }, "license": "MIT", "license_ids": [ @@ -49487,7 +49388,7 @@ "target": "base64" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -49503,11 +49404,11 @@ "target": "ic_transport_types" }, { - "id": "reqwest 0.12.12", + "id": "reqwest 0.12.9", "target": "reqwest" }, { - "id": "schemars 0.8.21", + "id": "schemars 0.8.16", "target": "schemars" }, { @@ -49523,7 +49424,7 @@ "target": "serde_cbor" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -49539,11 +49440,11 @@ "target": "strum" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -49586,14 +49487,14 @@ ], "license_file": "LICENSE" }, - "polling 3.7.4": { + "polling 3.7.3": { "name": "polling", - "version": "3.7.4", + "version": "3.7.3", "package_url": "https://github.com/smol-rs/polling", "repository": { "Http": { - "url": "https://static.crates.io/crates/polling/3.7.4/download", - "sha256": "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f" + "url": "https://static.crates.io/crates/polling/3.7.3/download", + "sha256": "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" } }, "targets": [ @@ -49629,7 +49530,7 @@ "selects": { "cfg(any(unix, target_os = \"fuchsia\", target_os = \"vxworks\"))": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -49645,7 +49546,7 @@ "target": "concurrent_queue" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -49656,7 +49557,7 @@ } }, "edition": "2021", - "version": "3.7.4" + "version": "3.7.3" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -49697,7 +49598,7 @@ "deps": { "common": [ { - "id": "opaque-debug 0.3.1", + "id": "opaque-debug 0.3.0", "target": "opaque_debug" }, { @@ -49708,7 +49609,7 @@ "selects": { "cfg(any(target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.16", + "id": "cpufeatures 0.2.9", "target": "cpufeatures" } ] @@ -49724,14 +49625,14 @@ ], "license_file": "LICENSE-APACHE" }, - "portable-atomic 1.10.0": { + "portable-atomic 1.4.3": { "name": "portable-atomic", - "version": "1.10.0", + "version": "1.4.3", "package_url": "https://github.com/taiki-e/portable-atomic", "repository": { "Http": { - "url": "https://static.crates.io/crates/portable-atomic/1.10.0/download", - "sha256": "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6" + "url": "https://static.crates.io/crates/portable-atomic/1.4.3/download", + "sha256": "31114a898e107c51bb1609ffaf55a0e011cf6a4d7f1170d0015a165082c0338b" } }, "targets": [ @@ -49768,22 +49669,21 @@ "crate_features": { "common": [ "default", - "fallback", - "require-cas" + "fallback" ], "selects": {} }, "deps": { "common": [ { - "id": "portable-atomic 1.10.0", + "id": "portable-atomic 1.4.3", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.10.0" + "version": "1.4.3" }, "build_script_attrs": { "compile_data_glob": [ @@ -49800,14 +49700,14 @@ ], "license_file": "LICENSE-APACHE" }, - "postcard 1.1.1": { + "postcard 1.0.8": { "name": "postcard", - "version": "1.1.1", + "version": "1.0.8", "package_url": "https://github.com/jamesmunns/postcard", "repository": { "Http": { - "url": "https://static.crates.io/crates/postcard/1.1.1/download", - "sha256": "170a2601f67cc9dba8edd8c4870b15f71a6a2dc196daec8c83f72b59dff628a8" + "url": "https://static.crates.io/crates/postcard/1.0.8/download", + "sha256": "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8" } }, "targets": [ @@ -49832,6 +49732,7 @@ "crate_features": { "common": [ "alloc", + "embedded-io", "use-std" ], "selects": {} @@ -49842,6 +49743,10 @@ "id": "cobs 0.2.3", "target": "cobs" }, + { + "id": "embedded-io 0.4.0", + "target": "embedded_io" + }, { "id": "serde 1.0.217", "target": "serde" @@ -49849,15 +49754,15 @@ ], "selects": {} }, - "edition": "2021", - "version": "1.1.1" + "edition": "2018", + "version": "1.0.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null + "license_file": "LICENSE-APACHE" }, "powerfmt 0.2.0": { "name": "powerfmt", @@ -49960,7 +49865,7 @@ "target": "aligned_vec" }, { - "id": "backtrace 0.3.74", + "id": "backtrace 0.3.69", "target": "backtrace" }, { @@ -49976,15 +49881,15 @@ "target": "findshlibs" }, { - "id": "inferno 0.11.21", + "id": "inferno 0.11.19", "target": "inferno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -49992,11 +49897,11 @@ "target": "nix" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { @@ -50004,7 +49909,7 @@ "target": "build_script_build" }, { - "id": "prost 0.12.6", + "id": "prost 0.12.2", "target": "prost" }, { @@ -50012,15 +49917,15 @@ "target": "smallvec" }, { - "id": "symbolic-demangle 12.13.2", + "id": "symbolic-demangle 12.4.1", "target": "symbolic_demangle" }, { - "id": "tempfile 3.15.0", + "id": "tempfile 3.12.0", "target": "tempfile" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -50030,7 +49935,7 @@ "proc_macro_deps": { "common": [ { - "id": "prost-derive 0.12.6", + "id": "prost-derive 0.12.2", "target": "prost_derive" } ], @@ -50054,7 +49959,7 @@ "deps": { "common": [ { - "id": "prost-build 0.12.6", + "id": "prost-build 0.12.2", "target": "prost_build" }, { @@ -50077,14 +49982,14 @@ ], "license_file": "LICENSE" }, - "ppv-lite86 0.2.20": { + "ppv-lite86 0.2.17": { "name": "ppv-lite86", - "version": "0.2.20", + "version": "0.2.17", "package_url": "https://github.com/cryptocorrosion/cryptocorrosion", "repository": { "Http": { - "url": "https://static.crates.io/crates/ppv-lite86/0.2.20/download", - "sha256": "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" + "url": "https://static.crates.io/crates/ppv-lite86/0.2.17/download", + "sha256": "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" } }, "targets": [ @@ -50113,17 +50018,8 @@ ], "selects": {} }, - "deps": { - "common": [ - { - "id": "zerocopy 0.7.35", - "target": "zerocopy" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.20" + "edition": "2018", + "version": "0.2.17" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -50170,14 +50066,14 @@ ], "license_file": "LICENSE" }, - "predicates 3.1.3": { + "predicates 3.1.2": { "name": "predicates", - "version": "3.1.3", + "version": "3.1.2", "package_url": "https://github.com/assert-rs/predicates-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates/3.1.3/download", - "sha256": "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573" + "url": "https://static.crates.io/crates/predicates/3.1.2/download", + "sha256": "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97" } }, "targets": [ @@ -50213,7 +50109,7 @@ "deps": { "common": [ { - "id": "anstyle 1.0.10", + "id": "anstyle 1.0.8", "target": "anstyle" }, { @@ -50221,7 +50117,7 @@ "target": "difflib" }, { - "id": "float-cmp 0.10.0", + "id": "float-cmp 0.9.0", "target": "float_cmp" }, { @@ -50229,18 +50125,18 @@ "target": "normalize_line_endings" }, { - "id": "predicates-core 1.0.9", + "id": "predicates-core 1.0.6", "target": "predicates_core" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "selects": {} }, "edition": "2021", - "version": "3.1.3" + "version": "3.1.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50249,14 +50145,14 @@ ], "license_file": "LICENSE-APACHE" }, - "predicates-core 1.0.9": { + "predicates-core 1.0.6": { "name": "predicates-core", - "version": "1.0.9", + "version": "1.0.6", "package_url": "https://github.com/assert-rs/predicates-rs/tree/master/crates/core", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates-core/1.0.9/download", - "sha256": "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" + "url": "https://static.crates.io/crates/predicates-core/1.0.6/download", + "sha256": "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" } }, "targets": [ @@ -50279,7 +50175,7 @@ "**" ], "edition": "2021", - "version": "1.0.9" + "version": "1.0.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50288,14 +50184,14 @@ ], "license_file": "LICENSE-APACHE" }, - "predicates-tree 1.0.12": { + "predicates-tree 1.0.9": { "name": "predicates-tree", - "version": "1.0.12", + "version": "1.0.9", "package_url": "https://github.com/assert-rs/predicates-rs/tree/master/crates/tree", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates-tree/1.0.12/download", - "sha256": "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" + "url": "https://static.crates.io/crates/predicates-tree/1.0.9/download", + "sha256": "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" } }, "targets": [ @@ -50320,18 +50216,18 @@ "deps": { "common": [ { - "id": "predicates-core 1.0.9", + "id": "predicates-core 1.0.6", "target": "predicates_core" }, { - "id": "termtree 0.5.1", + "id": "termtree 0.4.1", "target": "termtree" } ], "selects": {} }, "edition": "2021", - "version": "1.0.12" + "version": "1.0.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50376,7 +50272,7 @@ "target": "arrayvec" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -50384,7 +50280,7 @@ "target": "typed_arena" }, { - "id": "unicode-segmentation 1.12.0", + "id": "unicode-segmentation 1.10.1", "target": "unicode_segmentation" } ], @@ -50439,7 +50335,7 @@ "target": "typed_arena" }, { - "id": "unicode-width 0.1.14", + "id": "unicode-width 0.1.11", "target": "unicode_width" } ], @@ -50505,14 +50401,14 @@ ], "license_file": null }, - "pretty_assertions 1.4.1": { + "pretty_assertions 1.4.0": { "name": "pretty_assertions", - "version": "1.4.1", + "version": "1.4.0", "package_url": "https://github.com/rust-pretty-assertions/rust-pretty-assertions", "repository": { "Http": { - "url": "https://static.crates.io/crates/pretty_assertions/1.4.1/download", - "sha256": "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" + "url": "https://static.crates.io/crates/pretty_assertions/1.4.0/download", + "sha256": "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" } }, "targets": [ @@ -50548,14 +50444,14 @@ "target": "diff" }, { - "id": "yansi 1.0.1", + "id": "yansi 0.5.1", "target": "yansi" } ], "selects": {} }, "edition": "2018", - "version": "1.4.1" + "version": "1.4.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50564,14 +50460,14 @@ ], "license_file": "LICENSE-APACHE" }, - "prettyplease 0.2.29": { + "prettyplease 0.2.15": { "name": "prettyplease", - "version": "0.2.29", + "version": "0.2.15", "package_url": "https://github.com/dtolnay/prettyplease", "repository": { "Http": { - "url": "https://static.crates.io/crates/prettyplease/0.2.29/download", - "sha256": "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac" + "url": "https://static.crates.io/crates/prettyplease/0.2.15/download", + "sha256": "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" } }, "targets": [ @@ -50608,22 +50504,22 @@ "deps": { "common": [ { - "id": "prettyplease 0.2.29", + "id": "prettyplease 0.2.15", "target": "build_script_build" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.2.29" + "version": "0.2.15" }, "build_script_attrs": { "compile_data_glob": [ @@ -50641,14 +50537,14 @@ ], "license_file": "LICENSE-APACHE" }, - "primeorder 0.13.6": { + "primeorder 0.13.2": { "name": "primeorder", - "version": "0.13.6", + "version": "0.13.2", "package_url": "https://github.com/RustCrypto/elliptic-curves/tree/master/primeorder", "repository": { "Http": { - "url": "https://static.crates.io/crates/primeorder/0.13.6/download", - "sha256": "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" + "url": "https://static.crates.io/crates/primeorder/0.13.2/download", + "sha256": "3c2fcef82c0ec6eefcc179b978446c399b3cdf73c392c35604e399eee6df1ee3" } }, "targets": [ @@ -50680,7 +50576,7 @@ "selects": {} }, "edition": "2021", - "version": "0.13.6" + "version": "0.13.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -50753,7 +50649,7 @@ "target": "impl_serde" }, { - "id": "scale-info 2.11.6", + "id": "scale-info 2.9.0", "target": "scale_info", "alias": "scale_info_crate" }, @@ -50774,14 +50670,14 @@ ], "license_file": null }, - "priority-queue 1.4.0": { + "priority-queue 1.3.2": { "name": "priority-queue", - "version": "1.4.0", + "version": "1.3.2", "package_url": "https://github.com/garro95/priority-queue", "repository": { "Http": { - "url": "https://static.crates.io/crates/priority-queue/1.4.0/download", - "sha256": "a0bda9164fe05bc9225752d54aae413343c36f684380005398a6a8fde95fe785" + "url": "https://static.crates.io/crates/priority-queue/1.3.2/download", + "sha256": "fff39edfcaec0d64e8d0da38564fad195d2d51b680940295fcc307366e101e61" } }, "targets": [ @@ -50828,7 +50724,7 @@ "target": "indexmap" }, { - "id": "priority-queue 1.4.0", + "id": "priority-queue 1.3.2", "target": "build_script_build" }, { @@ -50839,7 +50735,7 @@ "selects": {} }, "edition": "2018", - "version": "1.4.0" + "version": "1.3.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -50851,7 +50747,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -50865,14 +50761,14 @@ ], "license_file": null }, - "proc-macro-crate 3.2.0": { + "proc-macro-crate 1.3.1": { "name": "proc-macro-crate", - "version": "3.2.0", + "version": "1.3.1", "package_url": "https://github.com/bkchr/proc-macro-crate", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro-crate/3.2.0/download", - "sha256": "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" + "url": "https://static.crates.io/crates/proc-macro-crate/1.3.1/download", + "sha256": "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" } }, "targets": [ @@ -50897,14 +50793,18 @@ "deps": { "common": [ { - "id": "toml_edit 0.22.22", + "id": "once_cell 1.19.0", + "target": "once_cell" + }, + { + "id": "toml_edit 0.19.15", "target": "toml_edit" } ], "selects": {} }, "edition": "2021", - "version": "3.2.0" + "version": "1.3.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50913,20 +50813,20 @@ ], "license_file": "LICENSE-APACHE" }, - "proc-macro-error 1.0.4": { - "name": "proc-macro-error", - "version": "1.0.4", - "package_url": "https://gitlab.com/CreepySkeleton/proc-macro-error", + "proc-macro-crate 3.2.0": { + "name": "proc-macro-crate", + "version": "3.2.0", + "package_url": "https://github.com/bkchr/proc-macro-crate", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro-error/1.0.4/download", - "sha256": "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" + "url": "https://static.crates.io/crates/proc-macro-crate/3.2.0/download", + "sha256": "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" } }, "targets": [ { "Library": { - "crate_name": "proc_macro_error", + "crate_name": "proc_macro_crate", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -50935,82 +50835,24 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], - "library_target_name": "proc_macro_error", + "library_target_name": "proc_macro_crate", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "default", - "syn", - "syn-error" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "proc-macro-error 1.0.4", - "target": "build_script_build" - }, - { - "id": "proc-macro2 1.0.93", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.38", - "target": "quote" - }, - { - "id": "syn 1.0.109", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2018", - "proc_macro_deps": { - "common": [ - { - "id": "proc-macro-error-attr 1.0.4", - "target": "proc_macro_error_attr" + "id": "toml_edit 0.22.20", + "target": "toml_edit" } ], "selects": {} }, - "version": "1.0.4" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "version_check 0.9.5", - "target": "version_check" - } - ], - "selects": {} - } + "edition": "2021", + "version": "3.2.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -51019,173 +50861,279 @@ ], "license_file": "LICENSE-APACHE" }, - "proc-macro-error-attr 1.0.4": { - "name": "proc-macro-error-attr", + "proc-macro-error 1.0.4": { + "name": "proc-macro-error", "version": "1.0.4", "package_url": "https://gitlab.com/CreepySkeleton/proc-macro-error", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro-error-attr/1.0.4/download", - "sha256": "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "proc_macro_error_attr", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "proc_macro_error_attr", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro-error-attr 1.0.4", - "target": "build_script_build" - }, - { - "id": "proc-macro2 1.0.93", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.38", - "target": "quote" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.4" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "version_check 0.9.5", - "target": "version_check" - } - ], - "selects": {} - } - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "proc-macro-hack 0.5.20+deprecated": { - "name": "proc-macro-hack", - "version": "0.5.20+deprecated", - "package_url": "https://github.com/dtolnay/proc-macro-hack", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/proc-macro-hack/0.5.20+deprecated/download", - "sha256": "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "proc_macro_hack", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "proc_macro_hack", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro-hack 0.5.20+deprecated", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.5.20+deprecated" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "proc-macro2 1.0.93": { - "name": "proc-macro2", - "version": "1.0.93", - "package_url": "https://github.com/dtolnay/proc-macro2", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/proc-macro2/1.0.93/download", - "sha256": "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" + "url": "https://static.crates.io/crates/proc-macro-error/1.0.4/download", + "sha256": "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" } }, "targets": [ { "Library": { - "crate_name": "proc_macro2", + "crate_name": "proc_macro_error", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "proc_macro_error", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "syn", + "syn-error" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "proc-macro-error 1.0.4", + "target": "build_script_build" + }, + { + "id": "proc-macro2 1.0.89", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.37", + "target": "quote" + }, + { + "id": "syn 1.0.109", + "target": "syn" + } + ], + "selects": {} + }, + "edition": "2018", + "proc_macro_deps": { + "common": [ + { + "id": "proc-macro-error-attr 1.0.4", + "target": "proc_macro_error_attr" + } + ], + "selects": {} + }, + "version": "1.0.4" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "version_check 0.9.4", + "target": "version_check" + } + ], + "selects": {} + } + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "proc-macro-error-attr 1.0.4": { + "name": "proc-macro-error-attr", + "version": "1.0.4", + "package_url": "https://gitlab.com/CreepySkeleton/proc-macro-error", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/proc-macro-error-attr/1.0.4/download", + "sha256": "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "proc_macro_error_attr", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "proc_macro_error_attr", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "proc-macro-error-attr 1.0.4", + "target": "build_script_build" + }, + { + "id": "proc-macro2 1.0.89", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.37", + "target": "quote" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "1.0.4" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "version_check 0.9.4", + "target": "version_check" + } + ], + "selects": {} + } + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "proc-macro-hack 0.5.20+deprecated": { + "name": "proc-macro-hack", + "version": "0.5.20+deprecated", + "package_url": "https://github.com/dtolnay/proc-macro-hack", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/proc-macro-hack/0.5.20+deprecated/download", + "sha256": "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "proc_macro_hack", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "proc_macro_hack", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "proc-macro-hack 0.5.20+deprecated", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.5.20+deprecated" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "proc-macro2 1.0.89": { + "name": "proc-macro2", + "version": "1.0.89", + "package_url": "https://github.com/dtolnay/proc-macro2", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/proc-macro2/1.0.89/download", + "sha256": "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" + } + }, + "targets": [ + { + "Library": { + "crate_name": "proc_macro2", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -51223,18 +51171,18 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "build_script_build" }, { - "id": "unicode-ident 1.0.14", + "id": "unicode-ident 1.0.12", "target": "unicode_ident" } ], "selects": {} }, "edition": "2021", - "version": "1.0.93" + "version": "1.0.89" }, "build_script_attrs": { "compile_data_glob": [ @@ -51291,7 +51239,7 @@ "target": "byteorder" }, { - "id": "flate2 1.0.35", + "id": "flate2 1.0.31", "target": "flate2" }, { @@ -51299,11 +51247,11 @@ "target": "hex" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -51363,7 +51311,7 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -51371,7 +51319,7 @@ "target": "hex" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -51383,7 +51331,7 @@ "target": "procfs_core" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -51439,7 +51387,7 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -51521,19 +51469,19 @@ "target": "fnv" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { @@ -51545,7 +51493,7 @@ "target": "protobuf" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -51623,14 +51571,14 @@ ], "license_file": "LICENSE" }, - "prometheus-parse 0.2.5": { + "prometheus-parse 0.2.4": { "name": "prometheus-parse", - "version": "0.2.5", + "version": "0.2.4", "package_url": "https://github.com/ccakes/prometheus-parse-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/prometheus-parse/0.2.5/download", - "sha256": "811031bea65e5a401fb2e1f37d802cca6601e204ac463809a3189352d13b78a5" + "url": "https://static.crates.io/crates/prometheus-parse/0.2.4/download", + "sha256": "0c2aa5feb83bf4b2c8919eaf563f51dbab41183de73ba2353c0e03cd7b6bd892" } }, "targets": [ @@ -51655,26 +51603,26 @@ "deps": { "common": [ { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.10.5", "target": "itertools" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "selects": {} }, "edition": "2018", - "version": "0.2.5" + "version": "0.2.4" }, "license": "Apache-2.0", "license_ids": [ @@ -51682,14 +51630,14 @@ ], "license_file": "LICENSE" }, - "proptest 1.6.0": { + "proptest 1.5.0": { "name": "proptest", - "version": "1.6.0", + "version": "1.5.0", "package_url": "https://github.com/proptest-rs/proptest", "repository": { "Http": { - "url": "https://static.crates.io/crates/proptest/1.6.0/download", - "sha256": "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" + "url": "https://static.crates.io/crates/proptest/1.5.0/download", + "sha256": "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" } }, "targets": [ @@ -51728,19 +51676,19 @@ "deps": { "common": [ { - "id": "bit-set 0.8.0", + "id": "bit-set 0.5.3", "target": "bit_set" }, { - "id": "bit-vec 0.8.0", + "id": "bit-vec 0.6.3", "target": "bit_vec" }, { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -51768,7 +51716,7 @@ "target": "rusty_fork" }, { - "id": "tempfile 3.15.0", + "id": "tempfile 3.12.0", "target": "tempfile" }, { @@ -51779,7 +51727,7 @@ "selects": {} }, "edition": "2018", - "version": "1.6.0" + "version": "1.5.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -51788,14 +51736,14 @@ ], "license_file": "LICENSE-APACHE" }, - "proptest-derive 0.5.1": { + "proptest-derive 0.5.0": { "name": "proptest-derive", - "version": "0.5.1", + "version": "0.5.0", "package_url": "https://github.com/proptest-rs/proptest", "repository": { "Http": { - "url": "https://static.crates.io/crates/proptest-derive/0.5.1/download", - "sha256": "4ee1c9ac207483d5e7db4940700de86a9aae46ef90c48b57f99fe7edb8345e49" + "url": "https://static.crates.io/crates/proptest-derive/0.5.0/download", + "sha256": "6ff7ff745a347b87471d859a377a9a404361e7efc2a971d73424a6d183c0fc77" } }, "targets": [ @@ -51820,22 +51768,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.5.1" + "version": "0.5.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -51844,14 +51792,14 @@ ], "license_file": "LICENSE-APACHE" }, - "prost 0.12.6": { + "prost 0.12.2": { "name": "prost", - "version": "0.12.6", + "version": "0.12.2", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost/0.12.6/download", - "sha256": "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29" + "url": "https://static.crates.io/crates/prost/0.12.2/download", + "sha256": "5a5a410fc7882af66deb8d01d01737353cf3ad6204c408177ba494291a626312" } }, "targets": [ @@ -51876,53 +51824,10 @@ "crate_features": { "common": [ "default", - "derive", + "prost-derive", "std" ], - "selects": { - "aarch64-apple-darwin": [ - "prost-derive" - ], - "aarch64-pc-windows-msvc": [ - "prost-derive" - ], - "aarch64-unknown-linux-gnu": [ - "prost-derive" - ], - "aarch64-unknown-nixos-gnu": [ - "prost-derive" - ], - "arm-unknown-linux-gnueabi": [ - "prost-derive" - ], - "i686-pc-windows-msvc": [ - "prost-derive" - ], - "i686-unknown-linux-gnu": [ - "prost-derive" - ], - "powerpc-unknown-linux-gnu": [ - "prost-derive" - ], - "s390x-unknown-linux-gnu": [ - "prost-derive" - ], - "x86_64-apple-darwin": [ - "prost-derive" - ], - "x86_64-pc-windows-msvc": [ - "prost-derive" - ], - "x86_64-unknown-freebsd": [ - "prost-derive" - ], - "x86_64-unknown-linux-gnu": [ - "prost-derive" - ], - "x86_64-unknown-nixos-gnu": [ - "prost-derive" - ] - } + "selects": {} }, "deps": { "common": [ @@ -51937,28 +51842,28 @@ "proc_macro_deps": { "common": [ { - "id": "prost-derive 0.12.6", + "id": "prost-derive 0.12.2", "target": "prost_derive" } ], "selects": {} }, - "version": "0.12.6" + "version": "0.12.2" }, "license": "Apache-2.0", "license_ids": [ "Apache-2.0" ], - "license_file": null + "license_file": "LICENSE" }, - "prost 0.13.4": { + "prost 0.13.3": { "name": "prost", - "version": "0.13.4", + "version": "0.13.3", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost/0.13.4/download", - "sha256": "2c0fef6c4230e4ccf618a35c59d7ede15dea37de8427500f50aff708806e42ec" + "url": "https://static.crates.io/crates/prost/0.13.3/download", + "sha256": "7b0487d90e047de87f984913713b85c601c05609aad5b0df4b4573fbf69aa13f" } }, "targets": [ @@ -52002,13 +51907,13 @@ "proc_macro_deps": { "common": [ { - "id": "prost-derive 0.13.4", + "id": "prost-derive 0.13.3", "target": "prost_derive" } ], "selects": {} }, - "version": "0.13.4" + "version": "0.13.3" }, "license": "Apache-2.0", "license_ids": [ @@ -52016,14 +51921,14 @@ ], "license_file": "LICENSE" }, - "prost-build 0.12.6": { + "prost-build 0.12.2": { "name": "prost-build", - "version": "0.12.6", + "version": "0.12.2", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-build/0.12.6/download", - "sha256": "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4" + "url": "https://static.crates.io/crates/prost-build/0.12.2/download", + "sha256": "1fa3d084c8704911bfefb2771be2f9b6c5c0da7343a71e0021ee3c665cada738" } }, "targets": [ @@ -52048,7 +51953,9 @@ "crate_features": { "common": [ "default", - "format" + "format", + "prettyplease", + "syn" ], "selects": {} }, @@ -52059,58 +51966,62 @@ "target": "bytes" }, { - "id": "heck 0.5.0", + "id": "heck 0.4.1", "target": "heck" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.11.0", "target": "itertools" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "multimap 0.10.0", + "id": "multimap 0.8.3", "target": "multimap" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "petgraph 0.6.5", + "id": "petgraph 0.6.4", "target": "petgraph" }, { - "id": "prettyplease 0.2.29", + "id": "prettyplease 0.2.15", "target": "prettyplease" }, { - "id": "prost 0.12.6", + "id": "prost 0.12.2", "target": "prost" }, { - "id": "prost-types 0.12.6", + "id": "prost-types 0.12.2", "target": "prost_types" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" }, { - "id": "tempfile 3.15.0", + "id": "tempfile 3.12.0", "target": "tempfile" + }, + { + "id": "which 4.4.2", + "target": "which" } ], "selects": {} }, "edition": "2021", - "version": "0.12.6" + "version": "0.12.2" }, "license": "Apache-2.0", "license_ids": [ @@ -52118,14 +52029,14 @@ ], "license_file": "LICENSE" }, - "prost-build 0.13.4": { + "prost-build 0.13.3": { "name": "prost-build", - "version": "0.13.4", + "version": "0.13.3", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-build/0.13.4/download", - "sha256": "d0f3e5beed80eb580c68e2c600937ac2c4eedabdfd5ef1e5b7ea4f3fba84497b" + "url": "https://static.crates.io/crates/prost-build/0.13.3/download", + "sha256": "0c1318b19085f08681016926435853bbf7858f9c082d0999b80550ff5d9abe15" } }, "targets": [ @@ -52156,59 +52067,63 @@ }, "deps": { "common": [ + { + "id": "bytes 1.9.0", + "target": "bytes" + }, { "id": "heck 0.5.0", "target": "heck" }, { - "id": "itertools 0.13.0", + "id": "itertools 0.12.0", "target": "itertools" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "multimap 0.10.0", + "id": "multimap 0.8.3", "target": "multimap" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "petgraph 0.6.5", + "id": "petgraph 0.6.4", "target": "petgraph" }, { - "id": "prettyplease 0.2.29", + "id": "prettyplease 0.2.15", "target": "prettyplease" }, { - "id": "prost 0.13.4", + "id": "prost 0.13.3", "target": "prost" }, { - "id": "prost-types 0.13.4", + "id": "prost-types 0.13.3", "target": "prost_types" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" }, { - "id": "tempfile 3.15.0", + "id": "tempfile 3.12.0", "target": "tempfile" } ], "selects": {} }, "edition": "2021", - "version": "0.13.4" + "version": "0.13.3" }, "license": "Apache-2.0", "license_ids": [ @@ -52216,14 +52131,14 @@ ], "license_file": "LICENSE" }, - "prost-derive 0.12.6": { + "prost-derive 0.12.2": { "name": "prost-derive", - "version": "0.12.6", + "version": "0.12.2", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-derive/0.12.6/download", - "sha256": "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" + "url": "https://static.crates.io/crates/prost-derive/0.12.2/download", + "sha256": "065717a5dfaca4a83d2fe57db3487b311365200000551d7a364e715dbf4346bc" } }, "targets": [ @@ -52248,30 +52163,30 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.11.0", "target": "itertools" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.12.6" + "version": "0.12.2" }, "license": "Apache-2.0", "license_ids": [ @@ -52279,14 +52194,14 @@ ], "license_file": "LICENSE" }, - "prost-derive 0.13.4": { + "prost-derive 0.13.3": { "name": "prost-derive", - "version": "0.13.4", + "version": "0.13.3", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-derive/0.13.4/download", - "sha256": "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3" + "url": "https://static.crates.io/crates/prost-derive/0.13.3/download", + "sha256": "e9552f850d5f0964a4e4d0bf306459ac29323ddfbae05e35a7c0d35cb0803cc5" } }, "targets": [ @@ -52311,30 +52226,30 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "itertools 0.13.0", + "id": "itertools 0.12.0", "target": "itertools" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.13.4" + "version": "0.13.3" }, "license": "Apache-2.0", "license_ids": [ @@ -52342,14 +52257,14 @@ ], "license_file": "LICENSE" }, - "prost-types 0.12.6": { + "prost-types 0.12.2": { "name": "prost-types", - "version": "0.12.6", + "version": "0.12.2", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-types/0.12.6/download", - "sha256": "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0" + "url": "https://static.crates.io/crates/prost-types/0.12.2/download", + "sha256": "8339f32236f590281e2f6368276441394fcd1b2133b549cc895d0ae80f2f9a52" } }, "targets": [ @@ -52374,14 +52289,14 @@ "deps": { "common": [ { - "id": "prost 0.12.6", + "id": "prost 0.12.2", "target": "prost" } ], "selects": {} }, "edition": "2021", - "version": "0.12.6" + "version": "0.12.2" }, "license": "Apache-2.0", "license_ids": [ @@ -52389,14 +52304,14 @@ ], "license_file": "LICENSE" }, - "prost-types 0.13.4": { + "prost-types 0.13.3": { "name": "prost-types", - "version": "0.13.4", + "version": "0.13.3", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-types/0.13.4/download", - "sha256": "cc2f1e56baa61e93533aebc21af4d2134b70f66275e0fcdf3cbe43d77ff7e8fc" + "url": "https://static.crates.io/crates/prost-types/0.13.3/download", + "sha256": "4759aa0d3a6232fb8dbdb97b61de2c20047c68aca932c7ed76da9d788508d670" } }, "targets": [ @@ -52428,14 +52343,14 @@ "deps": { "common": [ { - "id": "prost 0.13.4", + "id": "prost 0.13.3", "target": "prost" } ], "selects": {} }, "edition": "2021", - "version": "0.13.4" + "version": "0.13.3" }, "license": "Apache-2.0", "license_ids": [ @@ -52549,14 +52464,14 @@ ], "license_file": "LICENSE" }, - "psm 0.1.24": { + "psm 0.1.21": { "name": "psm", - "version": "0.1.24", + "version": "0.1.21", "package_url": "https://github.com/rust-lang/stacker/", "repository": { "Http": { - "url": "https://static.crates.io/crates/psm/0.1.24/download", - "sha256": "200b9ff220857e53e184257720a14553b2f4aa02577d2ed9842d45d4b9654810" + "url": "https://static.crates.io/crates/psm/0.1.21/download", + "sha256": "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" } }, "targets": [ @@ -52593,14 +52508,14 @@ "deps": { "common": [ { - "id": "psm 0.1.24", + "id": "psm 0.1.21", "target": "build_script_build" } ], "selects": {} }, "edition": "2015", - "version": "0.1.24" + "version": "0.1.21" }, "build_script_attrs": { "compile_data_glob": [ @@ -52612,7 +52527,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -52705,11 +52620,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -52728,14 +52643,14 @@ ], "license_file": "LICENSE" }, - "publicsuffix 2.3.0": { + "publicsuffix 2.2.3": { "name": "publicsuffix", - "version": "2.3.0", + "version": "2.2.3", "package_url": "https://github.com/rushmorem/publicsuffix", "repository": { "Http": { - "url": "https://static.crates.io/crates/publicsuffix/2.3.0/download", - "sha256": "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf" + "url": "https://static.crates.io/crates/publicsuffix/2.2.3/download", + "sha256": "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457" } }, "targets": [ @@ -52768,7 +52683,7 @@ "deps": { "common": [ { - "id": "idna 1.0.3", + "id": "idna 0.3.0", "target": "idna" }, { @@ -52779,7 +52694,7 @@ "selects": {} }, "edition": "2018", - "version": "2.3.0" + "version": "2.2.3" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -52788,14 +52703,14 @@ ], "license_file": "LICENSE" }, - "pulley-interpreter 28.0.1": { + "pulley-interpreter 28.0.0": { "name": "pulley-interpreter", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime/tree/main/pulley", "repository": { "Http": { - "url": "https://static.crates.io/crates/pulley-interpreter/28.0.1/download", - "sha256": "8324e531de91a3c25021a30fb7862d39cc516b61fbb801176acb5ff279ea887b" + "url": "https://static.crates.io/crates/pulley-interpreter/28.0.0/download", + "sha256": "403a1a95f4c18a45c86c7bff13df00347afd0abcbf2e54af273c837339ffcf77" } }, "targets": [ @@ -52820,11 +52735,11 @@ "deps": { "common": [ { - "id": "cranelift-bitset 0.115.1", + "id": "cranelift-bitset 0.115.0", "target": "cranelift_bitset" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -52835,7 +52750,7 @@ "selects": {} }, "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -52843,14 +52758,14 @@ ], "license_file": null }, - "quanta 0.12.5": { + "quanta 0.11.1": { "name": "quanta", - "version": "0.12.5", + "version": "0.11.1", "package_url": "https://github.com/metrics-rs/quanta", "repository": { "Http": { - "url": "https://static.crates.io/crates/quanta/0.12.5/download", - "sha256": "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e" + "url": "https://static.crates.io/crates/quanta/0.11.1/download", + "sha256": "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab" } }, "targets": [ @@ -52882,18 +52797,125 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "selects": { "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [ { - "id": "web-sys 0.3.77", + "id": "web-sys 0.3.64", + "target": "web_sys" + } + ], + "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\"))": [ + { + "id": "wasi 0.11.0+wasi-snapshot-preview1", + "target": "wasi" + } + ], + "cfg(not(any(target_os = \"macos\", target_os = \"ios\", target_os = \"windows\", target_arch = \"wasm32\")))": [ + { + "id": "libc 0.2.158", + "target": "libc" + } + ], + "cfg(target_arch = \"x86\")": [ + { + "id": "raw-cpuid 10.7.0", + "target": "raw_cpuid" + } + ], + "cfg(target_arch = \"x86_64\")": [ + { + "id": "raw-cpuid 10.7.0", + "target": "raw_cpuid" + } + ], + "cfg(target_os = \"ios\")": [ + { + "id": "mach2 0.4.2", + "target": "mach2" + } + ], + "cfg(target_os = \"macos\")": [ + { + "id": "mach2 0.4.2", + "target": "mach2" + } + ], + "cfg(target_os = \"windows\")": [ + { + "id": "winapi 0.3.9", + "target": "winapi" + } + ] + } + }, + "edition": "2021", + "version": "0.11.1" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, + "quanta 0.12.3": { + "name": "quanta", + "version": "0.12.3", + "package_url": "https://github.com/metrics-rs/quanta", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/quanta/0.12.3/download", + "sha256": "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5" + } + }, + "targets": [ + { + "Library": { + "crate_name": "quanta", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "quanta", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "flaky_tests" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "crossbeam-utils 0.8.19", + "target": "crossbeam_utils" + }, + { + "id": "once_cell 1.19.0", + "target": "once_cell" + } + ], + "selects": { + "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [ + { + "id": "web-sys 0.3.64", "target": "web_sys" } ], @@ -52905,19 +52927,19 @@ ], "cfg(not(any(target_os = \"windows\", target_arch = \"wasm32\")))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(target_arch = \"x86\")": [ { - "id": "raw-cpuid 11.3.0", + "id": "raw-cpuid 11.1.0", "target": "raw_cpuid" } ], "cfg(target_arch = \"x86_64\")": [ { - "id": "raw-cpuid 11.3.0", + "id": "raw-cpuid 11.1.0", "target": "raw_cpuid" } ], @@ -52930,7 +52952,7 @@ } }, "edition": "2021", - "version": "0.12.5" + "version": "0.12.3" }, "license": "MIT", "license_ids": [ @@ -53009,7 +53031,7 @@ "deps": { "common": [ { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" } ], @@ -53024,14 +53046,14 @@ ], "license_file": "LICENSE-MIT.md" }, - "quick-xml 0.37.2": { + "quick-xml 0.37.1": { "name": "quick-xml", - "version": "0.37.2", + "version": "0.37.1", "package_url": "https://github.com/tafia/quick-xml", "repository": { "Http": { - "url": "https://static.crates.io/crates/quick-xml/0.37.2/download", - "sha256": "165859e9e55f79d67b96c5d96f4e88b6f2695a1972849c15a6a3f5c59fc2c003" + "url": "https://static.crates.io/crates/quick-xml/0.37.1/download", + "sha256": "f22f29bdff3987b4d8632ef95fd6424ec7e4e0a57e2f4fc63e489e75357f6a03" } }, "targets": [ @@ -53056,14 +53078,14 @@ "deps": { "common": [ { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" } ], "selects": {} }, "edition": "2021", - "version": "0.37.2" + "version": "0.37.1" }, "license": "MIT", "license_ids": [ @@ -53117,7 +53139,7 @@ "target": "env_logger" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -53137,14 +53159,14 @@ ], "license_file": "LICENSE-MIT" }, - "quinn 0.11.6": { + "quinn 0.11.5": { "name": "quinn", - "version": "0.11.6", + "version": "0.11.5", "package_url": "https://github.com/quinn-rs/quinn", "repository": { "Http": { - "url": "https://static.crates.io/crates/quinn/0.11.6/download", - "sha256": "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef" + "url": "https://static.crates.io/crates/quinn/0.11.5/download", + "sha256": "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684" } }, "targets": [ @@ -53171,8 +53193,7 @@ "log", "ring", "runtime-tokio", - "rustls", - "rustls-ring" + "rustls" ], "selects": {} }, @@ -53183,37 +53204,37 @@ "target": "bytes" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "quinn-proto 0.11.9", + "id": "quinn-proto 0.11.7", "target": "quinn_proto", "alias": "proto" }, { - "id": "quinn-udp 0.5.9", + "id": "quinn-udp 0.5.5", "target": "quinn_udp", "alias": "udp" }, { - "id": "rustc-hash 2.1.0", + "id": "rustc-hash 2.0.0", "target": "rustc_hash" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -53224,7 +53245,7 @@ "selects": {} }, "edition": "2021", - "version": "0.11.6" + "version": "0.11.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53233,14 +53254,14 @@ ], "license_file": "LICENSE-APACHE" }, - "quinn-proto 0.11.9": { + "quinn-proto 0.11.7": { "name": "quinn-proto", - "version": "0.11.9", + "version": "0.11.7", "package_url": "https://github.com/quinn-rs/quinn", "repository": { "Http": { - "url": "https://static.crates.io/crates/quinn-proto/0.11.9/download", - "sha256": "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d" + "url": "https://static.crates.io/crates/quinn-proto/0.11.7/download", + "sha256": "ea0a9b3a42929fad8a7c3de7f86ce0814cfa893328157672680e9fb1145549c5" } }, "targets": [ @@ -53266,7 +53287,7 @@ "common": [ "log", "ring", - "rustls-ring" + "rustls" ], "selects": {} }, @@ -53281,15 +53302,15 @@ "target": "rand" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { - "id": "rustc-hash 2.1.0", + "id": "rustc-hash 2.0.0", "target": "rustc_hash" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { @@ -53297,11 +53318,11 @@ "target": "slab" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tinyvec 1.8.1", + "id": "tinyvec 1.6.0", "target": "tinyvec" }, { @@ -53309,25 +53330,10 @@ "target": "tracing" } ], - "selects": { - "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - }, - { - "id": "rustls-pki-types 1.10.1", - "target": "rustls_pki_types" - }, - { - "id": "web-time 1.1.0", - "target": "web_time" - } - ] - } + "selects": {} }, "edition": "2021", - "version": "0.11.9" + "version": "0.11.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53336,14 +53342,14 @@ ], "license_file": "LICENSE-APACHE" }, - "quinn-udp 0.5.9": { + "quinn-udp 0.5.5": { "name": "quinn-udp", - "version": "0.5.9", + "version": "0.5.5", "package_url": "https://github.com/quinn-rs/quinn", "repository": { "Http": { - "url": "https://static.crates.io/crates/quinn-udp/0.5.9/download", - "sha256": "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904" + "url": "https://static.crates.io/crates/quinn-udp/0.5.5/download", + "sha256": "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b" } }, "targets": [ @@ -53358,18 +53364,6 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], "library_target_name": "quinn_udp", @@ -53388,15 +53382,11 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "quinn-udp 0.5.9", - "target": "build_script_build" - }, - { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { @@ -53407,7 +53397,7 @@ "selects": { "cfg(windows)": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -53418,24 +53408,7 @@ } }, "edition": "2021", - "version": "0.5.9" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cfg_aliases 0.2.1", - "target": "cfg_aliases" - } - ], - "selects": {} - } + "version": "0.5.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53444,14 +53417,14 @@ ], "license_file": "LICENSE-APACHE" }, - "quote 1.0.38": { + "quote 1.0.37": { "name": "quote", - "version": "1.0.38", + "version": "1.0.37", "package_url": "https://github.com/dtolnay/quote", "repository": { "Http": { - "url": "https://static.crates.io/crates/quote/1.0.38/download", - "sha256": "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" + "url": "https://static.crates.io/crates/quote/1.0.37/download", + "sha256": "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" } }, "targets": [ @@ -53483,14 +53456,14 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" } ], "selects": {} }, "edition": "2018", - "version": "1.0.38" + "version": "1.0.37" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53657,7 +53630,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -53752,145 +53725,145 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-apple-ios": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-apple-ios-sim": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-unknown-fuchsia": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "arm-unknown-linux-gnueabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "armv7-linux-androideabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-unknown-freebsd": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "powerpc-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "s390x-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-apple-ios": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-unknown-freebsd": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-unknown-fuchsia": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] @@ -54026,7 +53999,7 @@ "deps": { "common": [ { - "id": "ppv-lite86 0.2.20", + "id": "ppv-lite86 0.2.17", "target": "ppv_lite86" }, { @@ -54180,7 +54153,7 @@ "deps": { "common": [ { - "id": "getrandom 0.2.15", + "id": "getrandom 0.2.10", "target": "getrandom" } ], @@ -54397,7 +54370,7 @@ "selects": { "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -54476,7 +54449,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -54723,14 +54696,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rangemap 1.5.1": { + "rangemap 1.4.0": { "name": "rangemap", - "version": "1.5.1", + "version": "1.4.0", "package_url": "https://github.com/jeffparsons/rangemap", "repository": { "Http": { - "url": "https://static.crates.io/crates/rangemap/1.5.1/download", - "sha256": "f60fcc7d6849342eff22c4350c8b9a989ee8ceabc4b481253e8946b9fe83d684" + "url": "https://static.crates.io/crates/rangemap/1.4.0/download", + "sha256": "977b1e897f9d764566891689e642653e5ed90c6895106acd005eb4c1d0203991" } }, "targets": [ @@ -54753,7 +54726,7 @@ "**" ], "edition": "2018", - "version": "1.5.1" + "version": "1.4.0" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -54798,11 +54771,11 @@ "target": "clocksource" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -54818,14 +54791,61 @@ ], "license_file": "LICENSE-APACHE" }, - "raw-cpuid 11.3.0": { + "raw-cpuid 10.7.0": { + "name": "raw-cpuid", + "version": "10.7.0", + "package_url": "https://github.com/gz/rust-cpuid", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/raw-cpuid/10.7.0/download", + "sha256": "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" + } + }, + "targets": [ + { + "Library": { + "crate_name": "raw_cpuid", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "raw_cpuid", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "bitflags 1.3.2", + "target": "bitflags" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "10.7.0" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE.md" + }, + "raw-cpuid 11.1.0": { "name": "raw-cpuid", - "version": "11.3.0", + "version": "11.1.0", "package_url": "https://github.com/gz/rust-cpuid", "repository": { "Http": { - "url": "https://static.crates.io/crates/raw-cpuid/11.3.0/download", - "sha256": "c6928fa44c097620b706542d428957635951bade7143269085389d42c8a4927e" + "url": "https://static.crates.io/crates/raw-cpuid/11.1.0/download", + "sha256": "cb9ee317cfe3fbd54b36a511efc1edd42e216903c9cd575e686dd68a2ba90d8d" } }, "targets": [ @@ -54850,14 +54870,14 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" } ], "selects": {} }, "edition": "2018", - "version": "11.3.0" + "version": "11.1.0" }, "license": "MIT", "license_ids": [ @@ -54897,7 +54917,7 @@ "deps": { "common": [ { - "id": "either 1.13.0", + "id": "either 1.9.0", "target": "either" }, { @@ -54961,11 +54981,11 @@ "deps": { "common": [ { - "id": "crossbeam-deque 0.8.6", + "id": "crossbeam-deque 0.8.5", "target": "crossbeam_deque" }, { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" }, { @@ -54994,14 +55014,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rcgen 0.13.2": { + "rcgen 0.13.1": { "name": "rcgen", - "version": "0.13.2", + "version": "0.13.1", "package_url": "https://github.com/rustls/rcgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/rcgen/0.13.2/download", - "sha256": "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" + "url": "https://static.crates.io/crates/rcgen/0.13.1/download", + "sha256": "54077e1872c46788540de1ea3d7f4ccb1983d12f9aa909b234468676c1a36779" } }, "targets": [ @@ -55040,16 +55060,16 @@ "target": "pem" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" }, { @@ -55064,7 +55084,7 @@ "selects": {} }, "edition": "2021", - "version": "0.13.2" + "version": "0.13.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -55167,14 +55187,14 @@ ], "license_file": "LICENSE" }, - "redox_syscall 0.5.8": { + "redox_syscall 0.3.5": { "name": "redox_syscall", - "version": "0.5.8", + "version": "0.3.5", "package_url": "https://gitlab.redox-os.org/redox-os/syscall", "repository": { "Http": { - "url": "https://static.crates.io/crates/redox_syscall/0.5.8/download", - "sha256": "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" + "url": "https://static.crates.io/crates/redox_syscall/0.3.5/download", + "sha256": "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" } }, "targets": [ @@ -55199,14 +55219,14 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 1.3.2", "target": "bitflags" } ], "selects": {} }, - "edition": "2021", - "version": "0.5.8" + "edition": "2018", + "version": "0.3.5" }, "license": "MIT", "license_ids": [ @@ -55214,14 +55234,14 @@ ], "license_file": "LICENSE" }, - "redox_users 0.4.6": { + "redox_users 0.4.3": { "name": "redox_users", - "version": "0.4.6", + "version": "0.4.3", "package_url": "https://gitlab.redox-os.org/redox-os/users", "repository": { "Http": { - "url": "https://static.crates.io/crates/redox_users/0.4.6/download", - "sha256": "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" + "url": "https://static.crates.io/crates/redox_users/0.4.3/download", + "sha256": "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" } }, "targets": [ @@ -55246,22 +55266,22 @@ "deps": { "common": [ { - "id": "getrandom 0.2.15", + "id": "getrandom 0.2.10", "target": "getrandom" }, { - "id": "libredox 0.1.3", - "target": "libredox" + "id": "redox_syscall 0.2.16", + "target": "syscall" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], "selects": {} }, - "edition": "2021", - "version": "0.4.6" + "edition": "2018", + "version": "0.4.3" }, "license": "MIT", "license_ids": [ @@ -55321,11 +55341,11 @@ "target": "hashbrown" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "rustc-hash 2.1.0", + "id": "rustc-hash 2.0.0", "target": "rustc_hash" }, { @@ -55344,14 +55364,14 @@ ], "license_file": "LICENSE" }, - "regex 1.11.1": { + "regex 1.11.0": { "name": "regex", - "version": "1.11.1", + "version": "1.11.0", "package_url": "https://github.com/rust-lang/regex", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex/1.11.1/download", - "sha256": "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" + "url": "https://static.crates.io/crates/regex/1.11.0/download", + "sha256": "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" } }, "targets": [ @@ -55398,15 +55418,15 @@ "deps": { "common": [ { - "id": "aho-corasick 1.1.3", + "id": "aho-corasick 1.1.2", "target": "aho_corasick" }, { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" }, { - "id": "regex-automata 0.4.9", + "id": "regex-automata 0.4.8", "target": "regex_automata" }, { @@ -55417,7 +55437,7 @@ "selects": {} }, "edition": "2021", - "version": "1.11.1" + "version": "1.11.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -55482,14 +55502,14 @@ ], "license_file": "LICENSE-MIT" }, - "regex-automata 0.4.9": { + "regex-automata 0.4.8": { "name": "regex-automata", - "version": "0.4.9", + "version": "0.4.8", "package_url": "https://github.com/rust-lang/regex/tree/master/regex-automata", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex-automata/0.4.9/download", - "sha256": "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" + "url": "https://static.crates.io/crates/regex-automata/0.4.8/download", + "sha256": "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" } }, "targets": [ @@ -55537,59 +55557,16 @@ "unicode-segment", "unicode-word-boundary" ], - "selects": { - "aarch64-apple-darwin": [ - "perf" - ], - "aarch64-pc-windows-msvc": [ - "perf" - ], - "aarch64-unknown-linux-gnu": [ - "perf" - ], - "aarch64-unknown-nixos-gnu": [ - "perf" - ], - "arm-unknown-linux-gnueabi": [ - "perf" - ], - "i686-pc-windows-msvc": [ - "perf" - ], - "i686-unknown-linux-gnu": [ - "perf" - ], - "powerpc-unknown-linux-gnu": [ - "perf" - ], - "s390x-unknown-linux-gnu": [ - "perf" - ], - "x86_64-apple-darwin": [ - "perf" - ], - "x86_64-pc-windows-msvc": [ - "perf" - ], - "x86_64-unknown-freebsd": [ - "perf" - ], - "x86_64-unknown-linux-gnu": [ - "perf" - ], - "x86_64-unknown-nixos-gnu": [ - "perf" - ] - } + "selects": {} }, "deps": { "common": [ { - "id": "aho-corasick 1.1.3", + "id": "aho-corasick 1.1.2", "target": "aho_corasick" }, { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" }, { @@ -55600,7 +55577,7 @@ "selects": {} }, "edition": "2021", - "version": "0.4.9" + "version": "0.4.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -55862,14 +55839,14 @@ ], "license_file": null }, - "rend 0.4.2": { + "rend 0.4.1": { "name": "rend", - "version": "0.4.2", + "version": "0.4.1", "package_url": "https://github.com/djkoloski/rend", "repository": { "Http": { - "url": "https://static.crates.io/crates/rend/0.4.2/download", - "sha256": "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" + "url": "https://static.crates.io/crates/rend/0.4.1/download", + "sha256": "a2571463863a6bd50c32f94402933f03457a3fbaf697a707c5be741e459f08fd" } }, "targets": [ @@ -55906,14 +55883,14 @@ "deps": { "common": [ { - "id": "rend 0.4.2", + "id": "rend 0.4.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.4.2" + "version": "0.4.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -55982,7 +55959,7 @@ "deps": { "common": [ { - "id": "base64 0.21.7", + "id": "base64 0.21.4", "target": "base64" }, { @@ -56006,7 +55983,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -56022,14 +55999,14 @@ "target": "tower_service" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56041,7 +56018,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56053,13 +56030,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "aarch64-apple-ios": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56071,7 +56048,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56083,13 +56060,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "aarch64-apple-ios-sim": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56101,7 +56078,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56113,13 +56090,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "aarch64-linux-android": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56131,7 +56108,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56143,13 +56120,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "aarch64-pc-windows-msvc": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56161,7 +56138,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56173,13 +56150,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "aarch64-unknown-fuchsia": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56191,7 +56168,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56203,13 +56180,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "aarch64-unknown-linux-gnu": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56221,7 +56198,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56233,13 +56210,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56251,7 +56228,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56263,13 +56240,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56281,7 +56258,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56293,13 +56270,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "arm-unknown-linux-gnueabi": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56311,7 +56288,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56323,13 +56300,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "armv7-linux-androideabi": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56341,7 +56318,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56353,13 +56330,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56371,7 +56348,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56383,13 +56360,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "cfg(not(target_arch = \"wasm32\"))": [ { - "id": "encoding_rs 0.8.35", + "id": "encoding_rs 0.8.33", "target": "encoding_rs" }, { @@ -56401,7 +56378,7 @@ "target": "http_body" }, { - "id": "hyper 0.14.32", + "id": "hyper 0.14.27", "target": "hyper" }, { @@ -56409,7 +56386,7 @@ "target": "ipnet" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -56417,7 +56394,7 @@ "target": "mime" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -56425,29 +56402,29 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" }, { - "id": "wasm-bindgen-futures 0.4.50", + "id": "wasm-bindgen-futures 0.4.37", "target": "wasm_bindgen_futures" }, { - "id": "web-sys 0.3.77", + "id": "web-sys 0.3.64", "target": "web_sys" } ], @@ -56465,7 +56442,7 @@ ], "i686-apple-darwin": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56477,7 +56454,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56489,13 +56466,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "i686-linux-android": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56507,7 +56484,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56519,13 +56496,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "i686-pc-windows-msvc": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56537,7 +56514,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56549,13 +56526,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "i686-unknown-freebsd": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56567,7 +56544,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56579,13 +56556,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "i686-unknown-linux-gnu": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56597,7 +56574,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56609,13 +56586,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "powerpc-unknown-linux-gnu": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56627,7 +56604,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56639,13 +56616,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "riscv32imc-unknown-none-elf": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56657,7 +56634,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56669,13 +56646,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "riscv64gc-unknown-none-elf": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56687,7 +56664,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56699,13 +56676,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "s390x-unknown-linux-gnu": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56717,7 +56694,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56729,13 +56706,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "thumbv7em-none-eabi": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56747,7 +56724,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56759,13 +56736,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "thumbv8m.main-none-eabi": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56777,7 +56754,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56789,13 +56766,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-apple-darwin": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56807,7 +56784,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56819,13 +56796,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-apple-ios": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56837,7 +56814,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56849,13 +56826,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-linux-android": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56867,7 +56844,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56879,13 +56856,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-pc-windows-msvc": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56897,7 +56874,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56909,13 +56886,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-unknown-freebsd": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56927,7 +56904,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56939,13 +56916,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-unknown-fuchsia": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56957,7 +56934,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56969,13 +56946,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-unknown-linux-gnu": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -56987,7 +56964,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56999,13 +56976,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -57017,7 +56994,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -57029,13 +57006,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-unknown-none": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { @@ -57047,7 +57024,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -57059,7 +57036,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ] @@ -57075,14 +57052,14 @@ ], "license_file": "LICENSE-APACHE" }, - "reqwest 0.12.12": { + "reqwest 0.12.9": { "name": "reqwest", - "version": "0.12.12", + "version": "0.12.9", "package_url": "https://github.com/seanmonstar/reqwest", "repository": { "Http": { - "url": "https://static.crates.io/crates/reqwest/0.12.12/download", - "sha256": "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" + "url": "https://static.crates.io/crates/reqwest/0.12.9/download", + "sha256": "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" } }, "targets": [ @@ -57148,7 +57125,7 @@ "target": "http" }, { - "id": "mime_guess 2.0.5", + "id": "mime_guess 2.0.4", "target": "mime_guess" }, { @@ -57156,7 +57133,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -57164,7 +57141,7 @@ "target": "serde_urlencoded" }, { - "id": "sync_wrapper 1.0.2", + "id": "sync_wrapper 1.0.1", "target": "sync_wrapper" }, { @@ -57172,7 +57149,7 @@ "target": "tower_service" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" } ], @@ -57183,23 +57160,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57207,11 +57184,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57223,7 +57200,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57233,23 +57210,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57257,11 +57234,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57273,7 +57250,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57283,23 +57260,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57307,11 +57284,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57323,7 +57300,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57333,23 +57310,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57357,11 +57334,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57373,7 +57350,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57383,23 +57360,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57407,11 +57384,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57423,7 +57400,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57433,23 +57410,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57457,11 +57434,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57473,7 +57450,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57483,23 +57460,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57507,11 +57484,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57523,7 +57500,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57533,23 +57510,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57557,11 +57534,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57573,7 +57550,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57583,23 +57560,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57607,11 +57584,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57623,7 +57600,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57633,23 +57610,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57657,11 +57634,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57673,7 +57650,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57683,23 +57660,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57707,11 +57684,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57723,7 +57700,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57733,23 +57710,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57757,11 +57734,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57773,7 +57750,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57787,7 +57764,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -57799,7 +57776,7 @@ "target": "ipnet" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -57807,7 +57784,7 @@ "target": "mime" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -57815,33 +57792,29 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" - }, - { - "id": "tower 0.5.2", - "target": "tower" } ], "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" }, { - "id": "wasm-bindgen-futures 0.4.50", + "id": "wasm-bindgen-futures 0.4.37", "target": "wasm_bindgen_futures" }, { - "id": "web-sys 0.3.77", + "id": "web-sys 0.3.64", "target": "web_sys" } ], @@ -57857,23 +57830,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57881,11 +57854,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57897,7 +57870,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57907,23 +57880,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57931,11 +57904,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57947,7 +57920,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57957,23 +57930,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57981,11 +57954,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57997,7 +57970,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58007,23 +57980,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58031,11 +58004,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58047,7 +58020,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58057,23 +58030,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58081,11 +58054,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58097,7 +58070,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58107,23 +58080,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58131,11 +58104,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58147,7 +58120,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58157,23 +58130,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58181,11 +58154,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58197,7 +58170,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58207,23 +58180,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58231,11 +58204,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58247,7 +58220,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58257,23 +58230,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58281,11 +58254,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58297,7 +58270,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58307,23 +58280,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58331,11 +58304,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58347,7 +58320,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58357,23 +58330,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58381,11 +58354,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58397,19 +58370,19 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "wasm32-unknown-unknown": [ { - "id": "wasm-streams 0.4.2", + "id": "wasm-streams 0.4.0", "target": "wasm_streams" } ], "wasm32-wasip1": [ { - "id": "wasm-streams 0.4.2", + "id": "wasm-streams 0.4.0", "target": "wasm_streams" } ], @@ -58419,23 +58392,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58443,11 +58416,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58459,7 +58432,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58469,23 +58442,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58493,11 +58466,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58509,7 +58482,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58519,23 +58492,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58543,11 +58516,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58559,7 +58532,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58569,23 +58542,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58593,11 +58566,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58609,7 +58582,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58619,23 +58592,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58643,11 +58616,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58659,7 +58632,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58669,23 +58642,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58693,11 +58666,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58709,7 +58682,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58719,23 +58692,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58743,11 +58716,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58759,7 +58732,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58769,23 +58742,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58793,11 +58766,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58809,7 +58782,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58819,23 +58792,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58843,11 +58816,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58859,14 +58832,14 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ] } }, "edition": "2021", - "version": "0.12.12" + "version": "0.12.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -58986,14 +58959,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rgb 0.8.50": { + "rgb 0.8.37": { "name": "rgb", - "version": "0.8.50", + "version": "0.8.37", "package_url": "https://github.com/kornelski/rust-rgb", "repository": { "Http": { - "url": "https://static.crates.io/crates/rgb/0.8.50/download", - "sha256": "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a" + "url": "https://static.crates.io/crates/rgb/0.8.37/download", + "sha256": "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8" } }, "targets": [ @@ -59017,25 +58990,23 @@ ], "crate_features": { "common": [ - "argb", "as-bytes", "bytemuck", - "default", - "grb" + "default" ], "selects": {} }, "deps": { "common": [ { - "id": "bytemuck 1.21.0", + "id": "bytemuck 1.14.0", "target": "bytemuck" } ], "selects": {} }, - "edition": "2021", - "version": "0.8.50" + "edition": "2018", + "version": "0.8.37" }, "license": "MIT", "license_ids": [ @@ -59108,43 +59079,43 @@ "selects": { "aarch64-linux-android": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "aarch64-unknown-linux-gnu": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "arm-unknown-linux-gnueabi": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "armv7-linux-androideabi": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\", target_env = \"\"))": [ { - "id": "web-sys 0.3.77", + "id": "web-sys 0.3.64", "target": "web_sys" } ], @@ -59156,13 +59127,13 @@ ], "cfg(any(target_os = \"android\", target_os = \"linux\"))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"illumos\", target_os = \"netbsd\", target_os = \"openbsd\", target_os = \"solaris\"))": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], @@ -59174,55 +59145,55 @@ ], "i686-linux-android": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "i686-unknown-freebsd": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "i686-unknown-linux-gnu": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "powerpc-unknown-linux-gnu": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "s390x-unknown-linux-gnu": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "x86_64-linux-android": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "x86_64-unknown-freebsd": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "x86_64-unknown-linux-gnu": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ] @@ -59241,7 +59212,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -59259,14 +59230,14 @@ "license_ids": [], "license_file": "LICENSE" }, - "ring 0.17.8": { + "ring 0.17.7": { "name": "ring", - "version": "0.17.8", + "version": "0.17.7", "package_url": "https://github.com/briansmith/ring", "repository": { "Http": { - "url": "https://static.crates.io/crates/ring/0.17.8/download", - "sha256": "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" + "url": "https://static.crates.io/crates/ring/0.17.7/download", + "sha256": "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" } }, "targets": [ @@ -59307,24 +59278,16 @@ "dev_urandom_fallback", "std" ], - "selects": { - "wasm32-unknown-unknown": [ - "wasm32_unknown_unknown_js" - ] - } + "selects": {} }, "deps": { "common": [ { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "getrandom 0.2.15", + "id": "getrandom 0.2.10", "target": "getrandom" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "build_script_build" }, { @@ -59335,13 +59298,13 @@ "selects": { "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(target_arch = \"aarch64\", target_arch = \"arm\")))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_os = \"windows\"))": [ { - "id": "windows-sys 0.52.0", + "id": "windows-sys 0.48.0", "target": "windows_sys" } ], @@ -59354,7 +59317,7 @@ } }, "edition": "2021", - "version": "0.17.8" + "version": "0.17.7" }, "build_script_attrs": { "compile_data_glob": [ @@ -59366,7 +59329,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -59378,7 +59341,7 @@ }, "selects": {} }, - "links": "ring_core_0_17_8" + "links": "ring_core_0_17_7" }, "license": null, "license_ids": [], @@ -59439,14 +59402,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rkyv 0.7.45": { + "rkyv 0.7.42": { "name": "rkyv", - "version": "0.7.45", + "version": "0.7.42", "package_url": "https://github.com/rkyv/rkyv", "repository": { "Http": { - "url": "https://static.crates.io/crates/rkyv/0.7.45/download", - "sha256": "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" + "url": "https://static.crates.io/crates/rkyv/0.7.42/download", + "sha256": "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58" } }, "targets": [ @@ -59487,7 +59450,7 @@ "target": "ptr_meta" }, { - "id": "rkyv 0.7.45", + "id": "rkyv 0.7.42", "target": "build_script_build" }, { @@ -59501,13 +59464,13 @@ "proc_macro_deps": { "common": [ { - "id": "rkyv_derive 0.7.45", + "id": "rkyv_derive 0.7.42", "target": "rkyv_derive" } ], "selects": {} }, - "version": "0.7.45" + "version": "0.7.42" }, "build_script_attrs": { "compile_data_glob": [ @@ -59523,14 +59486,14 @@ ], "license_file": "LICENSE" }, - "rkyv_derive 0.7.45": { + "rkyv_derive 0.7.42": { "name": "rkyv_derive", - "version": "0.7.45", + "version": "0.7.42", "package_url": "https://github.com/rkyv/rkyv", "repository": { "Http": { - "url": "https://static.crates.io/crates/rkyv_derive/0.7.45/download", - "sha256": "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" + "url": "https://static.crates.io/crates/rkyv_derive/0.7.42/download", + "sha256": "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d" } }, "targets": [ @@ -59555,11 +59518,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -59570,7 +59533,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.45" + "version": "0.7.42" }, "license": "MIT", "license_ids": [ @@ -59719,11 +59682,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -59775,7 +59738,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -59826,7 +59789,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" } ], @@ -59842,14 +59805,14 @@ ], "license_file": "LICENSE" }, - "rsa 0.9.7": { + "rsa 0.9.6": { "name": "rsa", - "version": "0.9.7", + "version": "0.9.6", "package_url": "https://github.com/RustCrypto/RSA", "repository": { "Http": { - "url": "https://static.crates.io/crates/rsa/0.9.7/download", - "sha256": "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519" + "url": "https://static.crates.io/crates/rsa/0.9.6/download", + "sha256": "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" } }, "targets": [ @@ -59884,7 +59847,7 @@ "deps": { "common": [ { - "id": "const-oid 0.9.6", + "id": "const-oid 0.9.5", "target": "const_oid" }, { @@ -59940,7 +59903,7 @@ "selects": {} }, "edition": "2021", - "version": "0.9.7" + "version": "0.9.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -59992,7 +59955,7 @@ "target": "futures" }, { - "id": "futures-timer 3.0.3", + "id": "futures-timer 3.0.2", "target": "futures_timer" } ], @@ -60071,19 +60034,19 @@ "target": "cfg_if" }, { - "id": "glob 0.3.2", + "id": "glob 0.3.1", "target": "glob" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -60095,11 +60058,11 @@ "target": "build_script_build" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" }, { - "id": "unicode-ident 1.0.14", + "id": "unicode-ident 1.0.12", "target": "unicode_ident" } ], @@ -60118,7 +60081,7 @@ "deps": { "common": [ { - "id": "rustc_version 0.4.1", + "id": "rustc_version 0.4.0", "target": "rustc_version" } ], @@ -60132,14 +60095,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rusb 0.9.4": { + "rusb 0.9.3": { "name": "rusb", - "version": "0.9.4", + "version": "0.9.3", "package_url": "https://github.com/a1ien/rusb.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/rusb/0.9.4/download", - "sha256": "ab9f9ff05b63a786553a4c02943b74b34a988448671001e9a27e2f0565cc05a4" + "url": "https://static.crates.io/crates/rusb/0.9.3/download", + "sha256": "45fff149b6033f25e825cbb7b2c625a11ee8e6dac09264d49beb125e39aa97bf" } }, "targets": [ @@ -60176,22 +60139,22 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "libusb1-sys 0.7.0", + "id": "libusb1-sys 0.6.4", "target": "libusb1_sys" }, { - "id": "rusb 0.9.4", + "id": "rusb 0.9.3", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.9.4" + "version": "0.9.3" }, "build_script_attrs": { "compile_data_glob": [ @@ -60203,7 +60166,7 @@ "link_deps": { "common": [ { - "id": "libusb1-sys 0.7.0", + "id": "libusb1-sys 0.6.4", "target": "libusb1_sys" } ], @@ -60342,7 +60305,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.6", + "id": "arrayvec 0.7.4", "target": "arrayvec" }, { @@ -60415,7 +60378,7 @@ "deps": { "common": [ { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -60434,14 +60397,14 @@ ], "license_file": "LICENSE" }, - "rustc-demangle 0.1.24": { + "rustc-demangle 0.1.23": { "name": "rustc-demangle", - "version": "0.1.24", - "package_url": "https://github.com/rust-lang/rustc-demangle", + "version": "0.1.23", + "package_url": "https://github.com/alexcrichton/rustc-demangle", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustc-demangle/0.1.24/download", - "sha256": "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" + "url": "https://static.crates.io/crates/rustc-demangle/0.1.23/download", + "sha256": "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" } }, "targets": [ @@ -60464,7 +60427,7 @@ "**" ], "edition": "2015", - "version": "0.1.24" + "version": "0.1.23" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -60519,14 +60482,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustc-hash 2.1.0": { + "rustc-hash 2.0.0": { "name": "rustc-hash", - "version": "2.1.0", + "version": "2.0.0", "package_url": "https://github.com/rust-lang/rustc-hash", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustc-hash/2.1.0/download", - "sha256": "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497" + "url": "https://static.crates.io/crates/rustc-hash/2.0.0/download", + "sha256": "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" } }, "targets": [ @@ -60556,9 +60519,9 @@ "selects": {} }, "edition": "2021", - "version": "2.1.0" + "version": "2.0.0" }, - "license": "Apache-2.0 OR MIT", + "license": "Apache-2.0/MIT", "license_ids": [ "Apache-2.0", "MIT" @@ -60610,14 +60573,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustc_version 0.4.1": { + "rustc_version 0.4.0": { "name": "rustc_version", - "version": "0.4.1", - "package_url": "https://github.com/djc/rustc-version-rs", + "version": "0.4.0", + "package_url": "https://github.com/Kimundi/rustc-version-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustc_version/0.4.1/download", - "sha256": "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" + "url": "https://static.crates.io/crates/rustc_version/0.4.0/download", + "sha256": "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" } }, "targets": [ @@ -60642,16 +60605,16 @@ "deps": { "common": [ { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" } ], "selects": {} }, "edition": "2018", - "version": "0.4.1" + "version": "0.4.0" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -60706,14 +60669,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustix 0.38.43": { + "rustix 0.38.32": { "name": "rustix", - "version": "0.38.43", + "version": "0.38.32", "package_url": "https://github.com/bytecodealliance/rustix", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustix/0.38.43/download", - "sha256": "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6", + "url": "https://static.crates.io/crates/rustix/0.38.32/download", + "sha256": "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89", "patch_args": [ "-p1" ], @@ -60757,7 +60720,6 @@ "common": [ "alloc", "fs", - "libc-extra-traits", "net", "std" ], @@ -60768,6 +60730,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60777,6 +60740,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60786,6 +60750,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60795,6 +60760,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60804,6 +60770,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60815,6 +60782,7 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" @@ -60827,6 +60795,7 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" @@ -60837,6 +60806,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60848,6 +60818,7 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" @@ -60858,6 +60829,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60869,6 +60841,7 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" @@ -60879,6 +60852,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60888,6 +60862,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60897,6 +60872,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60908,6 +60884,7 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" @@ -60920,10 +60897,21 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" ], + "riscv32imc-unknown-none-elf": [ + "default", + "termios", + "use-libc-auxv" + ], + "riscv64gc-unknown-none-elf": [ + "default", + "termios", + "use-libc-auxv" + ], "s390x-unknown-linux-gnu": [ "default", "event", @@ -60932,12 +60920,24 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" ], + "thumbv7em-none-eabi": [ + "default", + "termios", + "use-libc-auxv" + ], + "thumbv8m.main-none-eabi": [ + "default", + "termios", + "use-libc-auxv" + ], "wasm32-wasip1": [ "default", + "termios", "use-libc-auxv" ], "x86_64-apple-darwin": [ @@ -60946,6 +60946,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60955,6 +60956,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60964,6 +60966,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60973,6 +60976,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60982,6 +60986,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60993,6 +60998,7 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" @@ -61005,347 +61011,353 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" + ], + "x86_64-unknown-none": [ + "default", + "termios", + "use-libc-auxv" ] } }, "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "build_script_build" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-apple-ios": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-apple-ios-sim": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-linux-android": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-pc-windows-msvc": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" } ], "aarch64-unknown-fuchsia": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "armv7-linux-androideabi": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], - "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ { - "id": "linux-raw-sys 0.4.15", + "id": "linux-raw-sys 0.4.13", "target": "linux_raw_sys" } ], - "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ + "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ { - "id": "linux-raw-sys 0.4.15", + "id": "linux-raw-sys 0.4.13", "target": "linux_raw_sys" } ], - "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(windows)": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.52.0", "target": "windows_sys" } ], "i686-apple-darwin": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-linux-android": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-pc-windows-msvc": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" } ], "i686-unknown-freebsd": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "powerpc-unknown-linux-gnu": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "riscv32imc-unknown-none-elf": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "riscv64gc-unknown-none-elf": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "s390x-unknown-linux-gnu": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "thumbv7em-none-eabi": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "thumbv8m.main-none-eabi": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "wasm32-unknown-unknown": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "wasm32-wasip1": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-apple-darwin": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-apple-ios": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-linux-android": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-pc-windows-msvc": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" } ], "x86_64-unknown-freebsd": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-unknown-fuchsia": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-unknown-none": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] } }, "edition": "2021", - "version": "0.38.43" + "version": "0.38.32" }, "build_script_attrs": { "compile_data_glob": [ @@ -61416,11 +61428,11 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { @@ -61432,7 +61444,7 @@ "target": "webpki" }, { - "id": "sct 0.7.1", + "id": "sct 0.7.0", "target": "sct" } ], @@ -61451,7 +61463,7 @@ "link_deps": { "common": [ { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" } ], @@ -61519,11 +61531,11 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { @@ -61531,7 +61543,7 @@ "target": "build_script_build" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" }, @@ -61563,7 +61575,7 @@ "link_deps": { "common": [ { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" } ], @@ -61578,14 +61590,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustls 0.23.21": { + "rustls 0.23.18": { "name": "rustls", - "version": "0.23.21", + "version": "0.23.18", "package_url": "https://github.com/rustls/rustls", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls/0.23.21/download", - "sha256": "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8" + "url": "https://static.crates.io/crates/rustls/0.23.18/download", + "sha256": "9c9cc1d47e243d655ace55ed38201c19ae02c148ae56412ab8750e8f0166ab7f" } }, "targets": [ @@ -61641,23 +61653,23 @@ "target": "brotli_decompressor" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "build_script_build" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" }, @@ -61677,7 +61689,7 @@ "selects": {} }, "edition": "2021", - "version": "0.23.21" + "version": "0.23.18" }, "build_script_attrs": { "compile_data_glob": [ @@ -61689,7 +61701,7 @@ "link_deps": { "common": [ { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" } ], @@ -61743,7 +61755,7 @@ "deps": { "common": [ { - "id": "async-io 2.4.0", + "id": "async-io 2.3.4", "target": "async_io" }, { @@ -61759,7 +61771,7 @@ "target": "blocking" }, { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { @@ -61775,7 +61787,7 @@ "target": "http" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -61783,11 +61795,11 @@ "target": "pem" }, { - "id": "rcgen 0.13.2", + "id": "rcgen 0.13.1", "target": "rcgen" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { @@ -61795,15 +61807,15 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 2.0.3", "target": "thiserror" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" }, { @@ -61817,7 +61829,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -61864,7 +61876,7 @@ "deps": { "common": [ { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" } ], @@ -61883,7 +61895,7 @@ ], "cfg(windows)": [ { - "id": "schannel 0.1.27", + "id": "schannel 0.1.22", "target": "schannel" } ] @@ -61900,14 +61912,14 @@ ], "license_file": "LICENSE" }, - "rustls-native-certs 0.7.3": { + "rustls-native-certs 0.7.0": { "name": "rustls-native-certs", - "version": "0.7.3", + "version": "0.7.0", "package_url": "https://github.com/rustls/rustls-native-certs", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-native-certs/0.7.3/download", - "sha256": "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" + "url": "https://static.crates.io/crates/rustls-native-certs/0.7.0/download", + "sha256": "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" } }, "targets": [ @@ -61936,7 +61948,7 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" } @@ -61956,14 +61968,14 @@ ], "cfg(windows)": [ { - "id": "schannel 0.1.27", + "id": "schannel 0.1.22", "target": "schannel" } ] } }, "edition": "2021", - "version": "0.7.3" + "version": "0.7.0" }, "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ @@ -61973,14 +61985,14 @@ ], "license_file": "LICENSE" }, - "rustls-native-certs 0.8.1": { + "rustls-native-certs 0.8.0": { "name": "rustls-native-certs", - "version": "0.8.1", + "version": "0.8.0", "package_url": "https://github.com/rustls/rustls-native-certs", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-native-certs/0.8.1/download", - "sha256": "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" + "url": "https://static.crates.io/crates/rustls-native-certs/0.8.0/download", + "sha256": "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a" } }, "targets": [ @@ -62005,7 +62017,11 @@ "deps": { "common": [ { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pemfile 2.2.0", + "target": "rustls_pemfile" + }, + { + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" } @@ -62019,20 +62035,20 @@ ], "cfg(target_os = \"macos\")": [ { - "id": "security-framework 3.2.0", + "id": "security-framework 2.11.1", "target": "security_framework" } ], "cfg(windows)": [ { - "id": "schannel 0.1.27", + "id": "schannel 0.1.22", "target": "schannel" } ] } }, "edition": "2021", - "version": "0.8.1" + "version": "0.8.0" }, "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ @@ -62042,14 +62058,14 @@ ], "license_file": "LICENSE" }, - "rustls-pemfile 1.0.4": { + "rustls-pemfile 1.0.3": { "name": "rustls-pemfile", - "version": "1.0.4", + "version": "1.0.3", "package_url": "https://github.com/rustls/pemfile", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-pemfile/1.0.4/download", - "sha256": "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" + "url": "https://static.crates.io/crates/rustls-pemfile/1.0.3/download", + "sha256": "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" } }, "targets": [ @@ -62074,14 +62090,14 @@ "deps": { "common": [ { - "id": "base64 0.21.7", + "id": "base64 0.21.4", "target": "base64" } ], "selects": {} }, "edition": "2018", - "version": "1.0.4" + "version": "1.0.3" }, "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ @@ -62130,7 +62146,7 @@ "deps": { "common": [ { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" } @@ -62148,14 +62164,14 @@ ], "license_file": "LICENSE" }, - "rustls-pki-types 1.10.1": { + "rustls-pki-types 1.10.0": { "name": "rustls-pki-types", - "version": "1.10.1", + "version": "1.10.0", "package_url": "https://github.com/rustls/pki-types", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-pki-types/1.10.1/download", - "sha256": "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37" + "url": "https://static.crates.io/crates/rustls-pki-types/1.10.0/download", + "sha256": "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" } }, "targets": [ @@ -62183,26 +62199,10 @@ "default", "std" ], - "selects": { - "wasm32-unknown-unknown": [ - "web", - "web-time" - ] - } - }, - "deps": { - "common": [], - "selects": { - "wasm32-unknown-unknown": [ - { - "id": "web-time 1.1.0", - "target": "web_time" - } - ] - } + "selects": {} }, "edition": "2021", - "version": "1.10.1" + "version": "1.10.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -62243,22 +62243,22 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" } ], "selects": { "cfg(all(unix, not(target_os = \"android\"), not(target_vendor = \"apple\"), not(target_arch = \"wasm32\")))": [ { - "id": "rustls-native-certs 0.7.3", + "id": "rustls-native-certs 0.7.0", "target": "rustls_native_certs" }, { @@ -62280,7 +62280,7 @@ "target": "security_framework" }, { - "id": "security-framework-sys 2.14.0", + "id": "security-framework-sys 2.12.0", "target": "security_framework_sys" } ], @@ -62290,7 +62290,7 @@ "target": "webpki" }, { - "id": "webpki-root-certs 0.26.7", + "id": "webpki-root-certs 0.26.6", "target": "webpki_root_certs" } ], @@ -62405,7 +62405,7 @@ "deps": { "common": [ { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { @@ -62464,11 +62464,11 @@ "deps": { "common": [ { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" }, @@ -62488,14 +62488,14 @@ ], "license_file": "LICENSE" }, - "rustversion 1.0.19": { + "rustversion 1.0.14": { "name": "rustversion", - "version": "1.0.19", + "version": "1.0.14", "package_url": "https://github.com/dtolnay/rustversion", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustversion/1.0.19/download", - "sha256": "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" + "url": "https://static.crates.io/crates/rustversion/1.0.14/download", + "sha256": "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" } }, "targets": [ @@ -62532,14 +62532,14 @@ "deps": { "common": [ { - "id": "rustversion 1.0.19", + "id": "rustversion 1.0.14", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.0.19" + "version": "1.0.14" }, "build_script_attrs": { "compile_data_glob": [ @@ -62604,7 +62604,7 @@ "target": "quick_error" }, { - "id": "tempfile 3.15.0", + "id": "tempfile 3.12.0", "target": "tempfile" }, { @@ -62624,14 +62624,14 @@ ], "license_file": "LICENSE-APACHE" }, - "ryu 1.0.18": { + "ryu 1.0.15": { "name": "ryu", - "version": "1.0.18", + "version": "1.0.15", "package_url": "https://github.com/dtolnay/ryu", "repository": { "Http": { - "url": "https://static.crates.io/crates/ryu/1.0.18/download", - "sha256": "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" + "url": "https://static.crates.io/crates/ryu/1.0.15/download", + "sha256": "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" } }, "targets": [ @@ -62654,7 +62654,7 @@ "**" ], "edition": "2018", - "version": "1.0.18" + "version": "1.0.15" }, "license": "Apache-2.0 OR BSL-1.0", "license_ids": [ @@ -62697,7 +62697,7 @@ "selects": { "cfg(windows)": [ { - "id": "winapi-util 0.1.9", + "id": "winapi-util 0.1.6", "target": "winapi_util" } ] @@ -62713,14 +62713,14 @@ ], "license_file": "LICENSE-MIT" }, - "scale-info 2.11.6": { + "scale-info 2.9.0": { "name": "scale-info", - "version": "2.11.6", + "version": "2.9.0", "package_url": "https://github.com/paritytech/scale-info", "repository": { "Http": { - "url": "https://static.crates.io/crates/scale-info/2.11.6/download", - "sha256": "346a3b32eba2640d17a9cb5927056b08f3de90f65b72fe09402c2ad07d684d0b" + "url": "https://static.crates.io/crates/scale-info/2.9.0/download", + "sha256": "35c0a159d0c45c12b20c5a844feb1fe4bea86e28f17b92a5f0c42193634d3782" } }, "targets": [ @@ -62756,11 +62756,7 @@ "target": "cfg_if" }, { - "id": "derive_more 1.0.0", - "target": "derive_more" - }, - { - "id": "parity-scale-codec 3.6.12", + "id": "parity-scale-codec 3.6.4", "target": "parity_scale_codec", "alias": "scale" } @@ -62771,13 +62767,17 @@ "proc_macro_deps": { "common": [ { - "id": "scale-info-derive 2.11.6", + "id": "derive_more 0.99.17", + "target": "derive_more" + }, + { + "id": "scale-info-derive 2.9.0", "target": "scale_info_derive" } ], "selects": {} }, - "version": "2.11.6" + "version": "2.9.0" }, "license": "Apache-2.0", "license_ids": [ @@ -62785,14 +62785,14 @@ ], "license_file": "LICENSE" }, - "scale-info-derive 2.11.6": { + "scale-info-derive 2.9.0": { "name": "scale-info-derive", - "version": "2.11.6", + "version": "2.9.0", "package_url": "https://github.com/paritytech/scale-info", "repository": { "Http": { - "url": "https://static.crates.io/crates/scale-info-derive/2.11.6/download", - "sha256": "c6630024bf739e2179b91fb424b28898baf819414262c5d376677dbff1fe7ebf" + "url": "https://static.crates.io/crates/scale-info-derive/2.9.0/download", + "sha256": "912e55f6d20e0e80d63733872b40e1227c0bce1e1ab81ba67d696339bfd7fd29" } }, "targets": [ @@ -62817,26 +62817,26 @@ "deps": { "common": [ { - "id": "proc-macro-crate 3.2.0", + "id": "proc-macro-crate 1.3.1", "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 1.0.109", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.11.6" + "version": "2.9.0" }, "license": "Apache-2.0", "license_ids": [ @@ -62844,14 +62844,14 @@ ], "license_file": null }, - "schannel 0.1.27": { + "schannel 0.1.22": { "name": "schannel", - "version": "0.1.27", + "version": "0.1.22", "package_url": "https://github.com/steffengy/schannel-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/schannel/0.1.27/download", - "sha256": "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" + "url": "https://static.crates.io/crates/schannel/0.1.22/download", + "sha256": "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" } }, "targets": [ @@ -62876,14 +62876,14 @@ "deps": { "common": [ { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.48.0", "target": "windows_sys" } ], "selects": {} }, "edition": "2018", - "version": "0.1.27" + "version": "0.1.22" }, "license": "MIT", "license_ids": [ @@ -62891,14 +62891,14 @@ ], "license_file": "LICENSE.md" }, - "schemars 0.8.21": { + "schemars 0.8.16": { "name": "schemars", - "version": "0.8.21", + "version": "0.8.16", "package_url": "https://github.com/GREsau/schemars", "repository": { "Http": { - "url": "https://static.crates.io/crates/schemars/0.8.21/download", - "sha256": "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92" + "url": "https://static.crates.io/crates/schemars/0.8.16/download", + "sha256": "45a28f4c49489add4ce10783f7911893516f15afe45d015608d41faca6bc4d29" } }, "targets": [ @@ -62945,16 +62945,16 @@ "deps": { "common": [ { - "id": "dyn-clone 1.0.17", + "id": "dyn-clone 1.0.14", "target": "dyn_clone" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap", "alias": "indexmap2" }, { - "id": "schemars 0.8.21", + "id": "schemars 0.8.16", "target": "build_script_build" }, { @@ -62962,7 +62962,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -62972,13 +62972,13 @@ "proc_macro_deps": { "common": [ { - "id": "schemars_derive 0.8.21", + "id": "schemars_derive 0.8.16", "target": "schemars_derive" } ], "selects": {} }, - "version": "0.8.21" + "version": "0.8.16" }, "build_script_attrs": { "compile_data_glob": [ @@ -62994,14 +62994,14 @@ ], "license_file": "LICENSE" }, - "schemars_derive 0.8.21": { + "schemars_derive 0.8.16": { "name": "schemars_derive", - "version": "0.8.21", + "version": "0.8.16", "package_url": "https://github.com/GREsau/schemars", "repository": { "Http": { - "url": "https://static.crates.io/crates/schemars_derive/0.8.21/download", - "sha256": "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e" + "url": "https://static.crates.io/crates/schemars_derive/0.8.16/download", + "sha256": "c767fd6fa65d9ccf9cf026122c1b555f2ef9a4f0cea69da4d7dbc3e258d30967" } }, "targets": [ @@ -63026,26 +63026,26 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "serde_derive_internals 0.29.1", + "id": "serde_derive_internals 0.26.0", "target": "serde_derive_internals" }, { - "id": "syn 2.0.96", + "id": "syn 1.0.109", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.8.21" + "version": "0.8.16" }, "license": "MIT", "license_ids": [ @@ -63225,7 +63225,7 @@ "target": "cssparser" }, { - "id": "ego-tree 0.6.3", + "id": "ego-tree 0.6.2", "target": "ego_tree" }, { @@ -63237,7 +63237,7 @@ "target": "html5ever" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -63264,14 +63264,14 @@ ], "license_file": "LICENSE" }, - "sct 0.7.1": { + "sct 0.7.0": { "name": "sct", - "version": "0.7.1", - "package_url": "https://github.com/rustls/sct.rs", + "version": "0.7.0", + "package_url": "https://github.com/ctz/sct.rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/sct/0.7.1/download", - "sha256": "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" + "url": "https://static.crates.io/crates/sct/0.7.0/download", + "sha256": "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" } }, "targets": [ @@ -63296,20 +63296,20 @@ "deps": { "common": [ { - "id": "ring 0.17.8", + "id": "ring 0.16.20", "target": "ring" }, { - "id": "untrusted 0.9.0", + "id": "untrusted 0.7.1", "target": "untrusted" } ], "selects": {} }, - "edition": "2021", - "version": "0.7.1" + "edition": "2018", + "version": "0.7.0" }, - "license": "Apache-2.0 OR ISC OR MIT", + "license": "Apache-2.0/ISC/MIT", "license_ids": [ "Apache-2.0", "ISC", @@ -63405,7 +63405,7 @@ "target": "base16ct" }, { - "id": "der 0.7.9", + "id": "der 0.7.8", "target": "der" }, { @@ -63575,14 +63575,14 @@ ], "license_file": "LICENSE" }, - "secp256k1 0.29.1": { + "secp256k1 0.29.0": { "name": "secp256k1", - "version": "0.29.1", + "version": "0.29.0", "package_url": "https://github.com/rust-bitcoin/rust-secp256k1/", "repository": { "Http": { - "url": "https://static.crates.io/crates/secp256k1/0.29.1/download", - "sha256": "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113" + "url": "https://static.crates.io/crates/secp256k1/0.29.0/download", + "sha256": "0e0cc0f1cf93f4969faf3ea1c7d8a9faed25918d96affa959720823dfe86d4f3" } }, "targets": [ @@ -63619,14 +63619,14 @@ "alias": "hashes" }, { - "id": "secp256k1-sys 0.10.1", + "id": "secp256k1-sys 0.10.0", "target": "secp256k1_sys" } ], "selects": {} }, "edition": "2021", - "version": "0.29.1" + "version": "0.29.0" }, "license": "CC0-1.0", "license_ids": [ @@ -63704,7 +63704,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -63789,7 +63789,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -63803,14 +63803,14 @@ ], "license_file": "LICENSE" }, - "secp256k1-sys 0.10.1": { + "secp256k1-sys 0.10.0": { "name": "secp256k1-sys", - "version": "0.10.1", + "version": "0.10.0", "package_url": "https://github.com/rust-bitcoin/rust-secp256k1/", "repository": { "Http": { - "url": "https://static.crates.io/crates/secp256k1-sys/0.10.1/download", - "sha256": "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9" + "url": "https://static.crates.io/crates/secp256k1-sys/0.10.0/download", + "sha256": "1433bd67156263443f14d603720b082dd3121779323fce20cba2aa07b874bc1b" } }, "targets": [ @@ -63853,7 +63853,7 @@ "deps": { "common": [ { - "id": "secp256k1-sys 0.10.1", + "id": "secp256k1-sys 0.10.0", "target": "build_script_build" } ], @@ -63866,7 +63866,7 @@ ], "selects": {} }, - "version": "0.10.1" + "version": "0.10.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -63878,7 +63878,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -63999,7 +63999,7 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -64011,7 +64011,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -64019,7 +64019,7 @@ "target": "num_bigint" }, { - "id": "security-framework-sys 2.14.0", + "id": "security-framework-sys 2.12.0", "target": "security_framework_sys" } ], @@ -64035,85 +64035,14 @@ ], "license_file": "LICENSE-APACHE" }, - "security-framework 3.2.0": { - "name": "security-framework", - "version": "3.2.0", - "package_url": "https://github.com/kornelski/rust-security-framework", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/security-framework/3.2.0/download", - "sha256": "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" - } - }, - "targets": [ - { - "Library": { - "crate_name": "security_framework", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "security_framework", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "OSX_10_12", - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bitflags 2.8.0", - "target": "bitflags" - }, - { - "id": "core-foundation 0.10.0", - "target": "core_foundation" - }, - { - "id": "core-foundation-sys 0.8.7", - "target": "core_foundation_sys" - }, - { - "id": "libc 0.2.169", - "target": "libc" - }, - { - "id": "security-framework-sys 2.14.0", - "target": "security_framework_sys" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "3.2.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "security-framework-sys 2.14.0": { + "security-framework-sys 2.12.0": { "name": "security-framework-sys", - "version": "2.14.0", + "version": "2.12.0", "package_url": "https://github.com/kornelski/rust-security-framework", "repository": { "Http": { - "url": "https://static.crates.io/crates/security-framework-sys/2.14.0/download", - "sha256": "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" + "url": "https://static.crates.io/crates/security-framework-sys/2.12.0/download", + "sha256": "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" } }, "targets": [ @@ -64154,14 +64083,14 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "selects": {} }, "edition": "2021", - "version": "2.14.0" + "version": "2.12.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -64214,7 +64143,7 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -64226,11 +64155,11 @@ "target": "fxhash" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "new_debug_unreachable 1.0.6", + "id": "new_debug_unreachable 1.0.4", "target": "debug_unreachable" }, { @@ -64260,7 +64189,7 @@ "proc_macro_deps": { "common": [ { - "id": "derive_more 0.99.18", + "id": "derive_more 0.99.17", "target": "derive_more" } ], @@ -64291,14 +64220,14 @@ ], "license_file": null }, - "semver 1.0.24": { + "semver 1.0.22": { "name": "semver", - "version": "1.0.24", + "version": "1.0.22", "package_url": "https://github.com/dtolnay/semver", "repository": { "Http": { - "url": "https://static.crates.io/crates/semver/1.0.24/download", - "sha256": "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba" + "url": "https://static.crates.io/crates/semver/1.0.22/download", + "sha256": "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" } }, "targets": [ @@ -64343,7 +64272,7 @@ "deps": { "common": [ { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "build_script_build" }, { @@ -64354,7 +64283,7 @@ "selects": {} }, "edition": "2018", - "version": "1.0.24" + "version": "1.0.22" }, "build_script_attrs": { "compile_data_glob": [ @@ -64597,7 +64526,7 @@ "deps": { "common": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { @@ -64605,7 +64534,7 @@ "target": "serde" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], @@ -64714,7 +64643,7 @@ "deps": { "common": [ { - "id": "half 1.8.3", + "id": "half 1.8.2", "target": "half" }, { @@ -64772,15 +64701,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -64796,14 +64725,14 @@ ], "license_file": "LICENSE-APACHE" }, - "serde_derive_internals 0.29.1": { + "serde_derive_internals 0.26.0": { "name": "serde_derive_internals", - "version": "0.29.1", + "version": "0.26.0", "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_derive_internals/0.29.1/download", - "sha256": "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" + "url": "https://static.crates.io/crates/serde_derive_internals/0.26.0/download", + "sha256": "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c" } }, "targets": [ @@ -64828,22 +64757,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 1.0.109", "target": "syn" } ], "selects": {} }, "edition": "2015", - "version": "0.29.1" + "version": "0.26.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -64852,14 +64781,14 @@ ], "license_file": "LICENSE-APACHE" }, - "serde_json 1.0.135": { + "serde_json 1.0.132": { "name": "serde_json", - "version": "1.0.135", + "version": "1.0.132", "package_url": "https://github.com/serde-rs/json", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_json/1.0.135/download", - "sha256": "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" + "url": "https://static.crates.io/crates/serde_json/1.0.132/download", + "sha256": "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" } }, "targets": [ @@ -64896,6 +64825,7 @@ "crate_features": { "common": [ "alloc", + "arbitrary_precision", "default", "raw_value", "std", @@ -64906,15 +64836,15 @@ "deps": { "common": [ { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" }, { - "id": "ryu 1.0.18", + "id": "ryu 1.0.15", "target": "ryu" }, { @@ -64922,14 +64852,14 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "1.0.135" + "version": "1.0.132" }, "build_script_attrs": { "compile_data_glob": [ @@ -64946,14 +64876,14 @@ ], "license_file": "LICENSE-APACHE" }, - "serde_path_to_error 0.1.16": { + "serde_path_to_error 0.1.14": { "name": "serde_path_to_error", - "version": "0.1.16", + "version": "0.1.14", "package_url": "https://github.com/dtolnay/path-to-error", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_path_to_error/0.1.16/download", - "sha256": "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" + "url": "https://static.crates.io/crates/serde_path_to_error/0.1.14/download", + "sha256": "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335" } }, "targets": [ @@ -64978,7 +64908,7 @@ "deps": { "common": [ { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { @@ -64989,7 +64919,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.16" + "version": "0.1.14" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -65038,7 +64968,7 @@ "target": "serde" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -65086,7 +65016,7 @@ "deps": { "common": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -65138,15 +65068,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -65194,7 +65124,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { @@ -65217,14 +65147,14 @@ ], "license_file": "LICENSE" }, - "serde_tokenstream 0.2.2": { + "serde_tokenstream 0.2.1": { "name": "serde_tokenstream", - "version": "0.2.2", + "version": "0.2.1", "package_url": "https://github.com/oxidecomputer/serde_tokenstream", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_tokenstream/0.2.2/download", - "sha256": "64060d864397305347a78851c51588fd283767e7e7589829e8121d65512340f1" + "url": "https://static.crates.io/crates/serde_tokenstream/0.2.1/download", + "sha256": "8790a7c3fe883e443eaa2af6f705952bc5d6e8671a220b9335c8cae92c037e74" } }, "targets": [ @@ -65249,11 +65179,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -65261,14 +65191,14 @@ "target": "serde" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.2.2" + "version": "0.2.1" }, "license": "Apache-2.0", "license_ids": [ @@ -65312,11 +65242,11 @@ "target": "form_urlencoded" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "ryu 1.0.18", + "id": "ryu 1.0.15", "target": "ryu" }, { @@ -65508,11 +65438,11 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -65568,15 +65498,15 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -65628,7 +65558,7 @@ "target": "indexmap" }, { - "id": "ryu 1.0.18", + "id": "ryu 1.0.15", "target": "ryu" }, { @@ -65684,15 +65614,15 @@ "deps": { "common": [ { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "ryu 1.0.18", + "id": "ryu 1.0.15", "target": "ryu" }, { @@ -65814,7 +65744,7 @@ "selects": { "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))": [ { - "id": "cpufeatures 0.2.16", + "id": "cpufeatures 0.2.9", "target": "cpufeatures" } ] @@ -65881,14 +65811,14 @@ "target": "digest" }, { - "id": "opaque-debug 0.3.1", + "id": "opaque-debug 0.3.0", "target": "opaque_debug" } ], "selects": { "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.16", + "id": "cpufeatures 0.2.9", "target": "cpufeatures" } ] @@ -65962,7 +65892,7 @@ "selects": { "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.16", + "id": "cpufeatures 0.2.9", "target": "cpufeatures" } ] @@ -66037,7 +65967,7 @@ "target": "sha2" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -66047,7 +65977,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -66105,7 +66035,7 @@ "target": "digest" }, { - "id": "keccak 0.1.5", + "id": "keccak 0.1.4", "target": "keccak" } ], @@ -66153,7 +66083,7 @@ "deps": { "common": [ { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" } ], @@ -66266,7 +66196,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -66274,7 +66204,7 @@ "target": "build_script_build" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" } ], @@ -66298,14 +66228,14 @@ ], "license_file": "LICENSE-APACHE" }, - "signal-hook-mio 0.2.4": { + "signal-hook-mio 0.2.3": { "name": "signal-hook-mio", - "version": "0.2.4", + "version": "0.2.3", "package_url": "https://github.com/vorner/signal-hook", "repository": { "Http": { - "url": "https://static.crates.io/crates/signal-hook-mio/0.2.4/download", - "sha256": "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd" + "url": "https://static.crates.io/crates/signal-hook-mio/0.2.3/download", + "sha256": "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" } }, "targets": [ @@ -66337,11 +66267,11 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio", "alias": "mio_0_8" }, @@ -66353,7 +66283,7 @@ "selects": {} }, "edition": "2018", - "version": "0.2.4" + "version": "0.2.3" }, "license": "Apache-2.0/MIT", "license_ids": [ @@ -66362,14 +66292,14 @@ ], "license_file": "LICENSE-APACHE" }, - "signal-hook-registry 1.4.2": { + "signal-hook-registry 1.4.1": { "name": "signal-hook-registry", - "version": "1.4.2", + "version": "1.4.1", "package_url": "https://github.com/vorner/signal-hook", "repository": { "Http": { - "url": "https://static.crates.io/crates/signal-hook-registry/1.4.2/download", - "sha256": "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" + "url": "https://static.crates.io/crates/signal-hook-registry/1.4.1/download", + "sha256": "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" } }, "targets": [ @@ -66394,14 +66324,14 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "selects": {} }, "edition": "2015", - "version": "1.4.2" + "version": "1.4.1" }, "license": "Apache-2.0/MIT", "license_ids": [ @@ -66471,14 +66401,14 @@ ], "license_file": "LICENSE-APACHE" }, - "simdutf8 0.1.5": { + "simdutf8 0.1.4": { "name": "simdutf8", - "version": "0.1.5", + "version": "0.1.4", "package_url": "https://github.com/rusticstuff/simdutf8", "repository": { "Http": { - "url": "https://static.crates.io/crates/simdutf8/0.1.5/download", - "sha256": "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" + "url": "https://static.crates.io/crates/simdutf8/0.1.4/download", + "sha256": "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" } }, "targets": [ @@ -66501,7 +66431,7 @@ "**" ], "edition": "2018", - "version": "0.1.5" + "version": "0.1.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -66510,14 +66440,14 @@ ], "license_file": "LICENSE-Apache" }, - "similar 2.6.0": { + "similar 2.3.0": { "name": "similar", - "version": "2.6.0", + "version": "2.3.0", "package_url": "https://github.com/mitsuhiko/similar", "repository": { "Http": { - "url": "https://static.crates.io/crates/similar/2.6.0/download", - "sha256": "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e" + "url": "https://static.crates.io/crates/similar/2.3.0/download", + "sha256": "2aeaf503862c419d66959f5d7ca015337d864e9c49485d771b732e2a20453597" } }, "targets": [ @@ -66548,7 +66478,7 @@ "selects": {} }, "edition": "2018", - "version": "2.6.0" + "version": "2.3.0" }, "license": "Apache-2.0", "license_ids": [ @@ -66556,14 +66486,14 @@ ], "license_file": "LICENSE" }, - "simple_asn1 0.6.3": { + "simple_asn1 0.6.2": { "name": "simple_asn1", - "version": "0.6.3", + "version": "0.6.2", "package_url": "https://github.com/acw/simple_asn1", "repository": { "Http": { - "url": "https://static.crates.io/crates/simple_asn1/0.6.3/download", - "sha256": "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" + "url": "https://static.crates.io/crates/simple_asn1/0.6.2/download", + "sha256": "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" } }, "targets": [ @@ -66596,18 +66526,18 @@ "target": "num_traits" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], "selects": {} }, "edition": "2018", - "version": "0.6.3" + "version": "0.6.2" }, "license": "ISC", "license_ids": [ @@ -66657,15 +66587,15 @@ "deps": { "common": [ { - "id": "colored 2.2.0", + "id": "colored 2.0.4", "target": "colored" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -66774,7 +66704,7 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -66782,7 +66712,7 @@ "target": "termcolor" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -66844,52 +66774,6 @@ ], "license_file": null }, - "siphasher 1.0.1": { - "name": "siphasher", - "version": "1.0.1", - "package_url": "https://github.com/jedisct1/rust-siphash", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/siphasher/1.0.1/download", - "sha256": "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "siphasher", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "siphasher", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.1" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": null - }, "slab 0.4.9": { "name": "slab", "version": "0.4.9", @@ -66960,7 +66844,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -67108,7 +66992,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { @@ -67124,7 +67008,7 @@ "target": "take_mut" }, { - "id": "thread_local 1.1.8", + "id": "thread_local 1.1.7", "target": "thread_local" } ], @@ -67188,11 +67072,11 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -67276,7 +67160,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -67284,7 +67168,7 @@ "target": "slog" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -67337,7 +67221,7 @@ "target": "arc_swap" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -67396,7 +67280,7 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -67453,7 +67337,7 @@ "deps": { "common": [ { - "id": "is-terminal 0.4.13", + "id": "is-terminal 0.4.9", "target": "is_terminal" }, { @@ -67465,11 +67349,11 @@ "target": "term" }, { - "id": "thread_local 1.1.8", + "id": "thread_local 1.1.7", "target": "thread_local" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -67486,14 +67370,14 @@ ], "license_file": "LICENSE-APACHE" }, - "slotmap 1.0.7": { + "slotmap 1.0.6": { "name": "slotmap", - "version": "1.0.7", + "version": "1.0.6", "package_url": "https://github.com/orlp/slotmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/slotmap/1.0.7/download", - "sha256": "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" + "url": "https://static.crates.io/crates/slotmap/1.0.6/download", + "sha256": "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342" } }, "targets": [ @@ -67537,14 +67421,14 @@ "deps": { "common": [ { - "id": "slotmap 1.0.7", + "id": "slotmap 1.0.6", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.0.7" + "version": "1.0.6" }, "build_script_attrs": { "compile_data_glob": [ @@ -67556,7 +67440,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.5", + "id": "version_check 0.9.4", "target": "version_check" } ], @@ -67726,15 +67610,15 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -67750,14 +67634,14 @@ ], "license_file": "LICENSE-APACHE" }, - "socket2 0.4.10": { + "socket2 0.4.9": { "name": "socket2", - "version": "0.4.10", + "version": "0.4.9", "package_url": "https://github.com/rust-lang/socket2", "repository": { "Http": { - "url": "https://static.crates.io/crates/socket2/0.4.10/download", - "sha256": "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" + "url": "https://static.crates.io/crates/socket2/0.4.9/download", + "sha256": "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" } }, "targets": [ @@ -67790,7 +67674,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -67803,7 +67687,7 @@ } }, "edition": "2018", - "version": "0.4.10" + "version": "0.4.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -67812,14 +67696,14 @@ ], "license_file": "LICENSE-APACHE" }, - "socket2 0.5.8": { + "socket2 0.5.7": { "name": "socket2", - "version": "0.5.8", + "version": "0.5.7", "package_url": "https://github.com/rust-lang/socket2", "repository": { "Http": { - "url": "https://static.crates.io/crates/socket2/0.5.8/download", - "sha256": "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8" + "url": "https://static.crates.io/crates/socket2/0.5.7/download", + "sha256": "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" } }, "targets": [ @@ -67852,7 +67736,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -67865,7 +67749,7 @@ } }, "edition": "2021", - "version": "0.5.8" + "version": "0.5.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -67944,10 +67828,94 @@ "crate_features": { "common": [ "mutex", - "once", "spin_mutex" ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + "once" + ], + "aarch64-apple-ios": [ + "once" + ], + "aarch64-apple-ios-sim": [ + "once" + ], + "aarch64-linux-android": [ + "once" + ], + "aarch64-pc-windows-msvc": [ + "once" + ], + "aarch64-unknown-fuchsia": [ + "once" + ], + "aarch64-unknown-linux-gnu": [ + "once" + ], + "aarch64-unknown-nixos-gnu": [ + "once" + ], + "aarch64-unknown-nto-qnx710": [ + "once" + ], + "arm-unknown-linux-gnueabi": [ + "once" + ], + "armv7-linux-androideabi": [ + "once" + ], + "armv7-unknown-linux-gnueabi": [ + "once" + ], + "i686-apple-darwin": [ + "once" + ], + "i686-linux-android": [ + "once" + ], + "i686-pc-windows-msvc": [ + "once" + ], + "i686-unknown-freebsd": [ + "once" + ], + "i686-unknown-linux-gnu": [ + "once" + ], + "thumbv7em-none-eabi": [ + "once" + ], + "thumbv8m.main-none-eabi": [ + "once" + ], + "x86_64-apple-darwin": [ + "once" + ], + "x86_64-apple-ios": [ + "once" + ], + "x86_64-linux-android": [ + "once" + ], + "x86_64-pc-windows-msvc": [ + "once" + ], + "x86_64-unknown-freebsd": [ + "once" + ], + "x86_64-unknown-fuchsia": [ + "once" + ], + "x86_64-unknown-linux-gnu": [ + "once" + ], + "x86_64-unknown-nixos-gnu": [ + "once" + ], + "x86_64-unknown-none": [ + "once" + ] + } }, "edition": "2015", "version": "0.9.8" @@ -67958,54 +67926,6 @@ ], "license_file": "LICENSE" }, - "spinning_top 0.3.0": { - "name": "spinning_top", - "version": "0.3.0", - "package_url": "https://github.com/rust-osdev/spinning_top", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/spinning_top/0.3.0/download", - "sha256": "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" - } - }, - "targets": [ - { - "Library": { - "crate_name": "spinning_top", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "spinning_top", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "lock_api 0.4.12", - "target": "lock_api" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.0" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "spki 0.7.3": { "name": "spki", "version": "0.7.3", @@ -68046,7 +67966,7 @@ "deps": { "common": [ { - "id": "der 0.7.9", + "id": "der 0.7.8", "target": "der" } ], @@ -68143,7 +68063,7 @@ "target": "bitflags" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -68214,14 +68134,14 @@ ], "license_file": "LICENSE-APACHE" }, - "stacker 0.1.17": { + "stacker 0.1.15": { "name": "stacker", - "version": "0.1.17", + "version": "0.1.15", "package_url": "https://github.com/rust-lang/stacker", "repository": { "Http": { - "url": "https://static.crates.io/crates/stacker/0.1.17/download", - "sha256": "799c883d55abdb5e98af1a7b3f23b9b6de8ecada0ecac058672d7635eb48ca7b" + "url": "https://static.crates.io/crates/stacker/0.1.15/download", + "sha256": "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce" } }, "targets": [ @@ -68262,29 +68182,29 @@ "target": "cfg_if" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "psm 0.1.24", + "id": "psm 0.1.21", "target": "psm" }, { - "id": "stacker 0.1.17", + "id": "stacker 0.1.15", "target": "build_script_build" } ], "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.59.0", - "target": "windows_sys" + "id": "winapi 0.3.9", + "target": "winapi" } ] } }, "edition": "2015", - "version": "0.1.17" + "version": "0.1.15" }, "build_script_attrs": { "compile_data_glob": [ @@ -68296,7 +68216,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -68393,7 +68313,7 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], @@ -68488,15 +68408,15 @@ "deps": { "common": [ { - "id": "new_debug_unreachable 1.0.6", + "id": "new_debug_unreachable 1.0.4", "target": "debug_unreachable" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { @@ -68564,11 +68484,11 @@ "target": "phf_shared" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" } ], @@ -68692,15 +68612,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -68757,15 +68677,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -68781,6 +68701,62 @@ ], "license_file": null }, + "strum 0.25.0": { + "name": "strum", + "version": "0.25.0", + "package_url": "https://github.com/Peternator7/strum", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/strum/0.25.0/download", + "sha256": "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" + } + }, + "targets": [ + { + "Library": { + "crate_name": "strum", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "strum", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "derive", + "std", + "strum_macros" + ], + "selects": {} + }, + "edition": "2018", + "proc_macro_deps": { + "common": [ + { + "id": "strum_macros 0.25.3", + "target": "strum_macros" + } + ], + "selects": {} + }, + "version": "0.25.0" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, "strum 0.26.3": { "name": "strum", "version": "0.26.3", @@ -68837,6 +68813,74 @@ ], "license_file": "LICENSE" }, + "strum_macros 0.25.3": { + "name": "strum_macros", + "version": "0.25.3", + "package_url": "https://github.com/Peternator7/strum", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/strum_macros/0.25.3/download", + "sha256": "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "strum_macros", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "strum_macros", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "heck 0.4.1", + "target": "heck" + }, + { + "id": "proc-macro2 1.0.89", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.37", + "target": "quote" + }, + { + "id": "syn 2.0.87", + "target": "syn" + } + ], + "selects": {} + }, + "edition": "2018", + "proc_macro_deps": { + "common": [ + { + "id": "rustversion 1.0.14", + "target": "rustversion" + } + ], + "selects": {} + }, + "version": "0.25.3" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, "strum_macros 0.26.4": { "name": "strum_macros", "version": "0.26.4", @@ -68873,15 +68917,15 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -68891,7 +68935,7 @@ "proc_macro_deps": { "common": [ { - "id": "rustversion 1.0.19", + "id": "rustversion 1.0.14", "target": "rustversion" } ], @@ -68905,14 +68949,14 @@ ], "license_file": "LICENSE" }, - "stubborn-io 0.3.5": { + "stubborn-io 0.3.2": { "name": "stubborn-io", - "version": "0.3.5", + "version": "0.3.2", "package_url": "https://github.com/craftytrickster/stubborn-io", "repository": { "Http": { - "url": "https://static.crates.io/crates/stubborn-io/0.3.5/download", - "sha256": "373a722240991e091384a571e1fd8abde15eca4494a1a2bff95dbf603d15a866" + "url": "https://static.crates.io/crates/stubborn-io/0.3.2/download", + "sha256": "b261fbca19f25e0ac726f6efb3c3f53949e18ba4b126c16f8ca625730daa1a9c" } }, "targets": [ @@ -68934,17 +68978,10 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "default", - "log" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -68952,14 +68989,14 @@ "target": "rand" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "0.3.5" + "version": "0.3.2" }, "license": "MIT", "license_ids": [ @@ -69051,14 +69088,14 @@ ], "license_file": "LICENSE" }, - "symbolic-common 12.13.2": { + "symbolic-common 12.4.1": { "name": "symbolic-common", - "version": "12.13.2", + "version": "12.4.1", "package_url": "https://github.com/getsentry/symbolic", "repository": { "Http": { - "url": "https://static.crates.io/crates/symbolic-common/12.13.2/download", - "sha256": "8150eae9699e3c73a3e6431dc1f80d87748797c0457336af23e94c1de619ed24" + "url": "https://static.crates.io/crates/symbolic-common/12.4.1/download", + "sha256": "fac08504d60cf5bdffeb8a6a028f1a4868a5da1098bb19eb46239440039163fb" } }, "targets": [ @@ -69087,7 +69124,7 @@ "target": "debugid" }, { - "id": "memmap2 0.9.5", + "id": "memmap2 0.5.10", "target": "memmap2" }, { @@ -69095,14 +69132,14 @@ "target": "stable_deref_trait" }, { - "id": "uuid 1.12.0", + "id": "uuid 1.11.0", "target": "uuid" } ], "selects": {} }, "edition": "2021", - "version": "12.13.2" + "version": "12.4.1" }, "license": "MIT", "license_ids": [ @@ -69110,14 +69147,14 @@ ], "license_file": null }, - "symbolic-demangle 12.13.2": { + "symbolic-demangle 12.4.1": { "name": "symbolic-demangle", - "version": "12.13.2", + "version": "12.4.1", "package_url": "https://github.com/getsentry/symbolic", "repository": { "Http": { - "url": "https://static.crates.io/crates/symbolic-demangle/12.13.2/download", - "sha256": "95f4a9846f7a8933b6d198c022faa2c9bd89e1a970bed9d9a98d25708bf8de17" + "url": "https://static.crates.io/crates/symbolic-demangle/12.4.1/download", + "sha256": "8b212728d4f6c527c1d50d6169e715f6e02d849811843c13e366d8ca6d0cf5c4" } }, "targets": [ @@ -69161,22 +69198,22 @@ "deps": { "common": [ { - "id": "rustc-demangle 0.1.24", + "id": "rustc-demangle 0.1.23", "target": "rustc_demangle" }, { - "id": "symbolic-common 12.13.2", + "id": "symbolic-common 12.4.1", "target": "symbolic_common" }, { - "id": "symbolic-demangle 12.13.2", + "id": "symbolic-demangle 12.4.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "12.13.2" + "version": "12.4.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -69248,70 +69285,84 @@ "selects": { "aarch64-apple-darwin": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "aarch64-pc-windows-msvc": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "aarch64-unknown-linux-gnu": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "aarch64-unknown-nixos-gnu": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "arm-unknown-linux-gnueabi": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "i686-pc-windows-msvc": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "i686-unknown-linux-gnu": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "powerpc-unknown-linux-gnu": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "s390x-unknown-linux-gnu": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "x86_64-apple-darwin": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "x86_64-pc-windows-msvc": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "x86_64-unknown-freebsd": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "x86_64-unknown-linux-gnu": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "x86_64-unknown-nixos-gnu": [ "extra-traits", - "visit" + "visit", + "visit-mut" ] } }, "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -69319,7 +69370,7 @@ "target": "build_script_build" }, { - "id": "unicode-ident 1.0.14", + "id": "unicode-ident 1.0.12", "target": "unicode_ident" } ], @@ -69343,14 +69394,14 @@ ], "license_file": "LICENSE-APACHE" }, - "syn 2.0.96": { + "syn 2.0.87": { "name": "syn", - "version": "2.0.96", + "version": "2.0.87", "package_url": "https://github.com/dtolnay/syn", "repository": { "Http": { - "url": "https://static.crates.io/crates/syn/2.0.96/download", - "sha256": "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" + "url": "https://static.crates.io/crates/syn/2.0.87/download", + "sha256": "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" } }, "targets": [ @@ -69446,22 +69497,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "unicode-ident 1.0.14", + "id": "unicode-ident 1.0.12", "target": "unicode_ident" } ], "selects": {} }, "edition": "2021", - "version": "2.0.96" + "version": "2.0.87" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -69508,14 +69559,14 @@ ], "license_file": "LICENSE" }, - "sync_wrapper 1.0.2": { + "sync_wrapper 1.0.1": { "name": "sync_wrapper", - "version": "1.0.2", + "version": "1.0.1", "package_url": "https://github.com/Actyx/sync_wrapper", "repository": { "Http": { - "url": "https://static.crates.io/crates/sync_wrapper/1.0.2/download", - "sha256": "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" + "url": "https://static.crates.io/crates/sync_wrapper/1.0.1/download", + "sha256": "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" } }, "targets": [ @@ -69553,8 +69604,8 @@ ], "selects": {} }, - "edition": "2021", - "version": "1.0.2" + "edition": "2018", + "version": "1.0.1" }, "license": "Apache-2.0", "license_ids": [ @@ -69601,15 +69652,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -69728,7 +69779,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -69756,14 +69807,14 @@ ], "license_file": null }, - "systemstat 0.2.4": { + "systemstat 0.2.3": { "name": "systemstat", - "version": "0.2.4", + "version": "0.2.3", "package_url": "https://github.com/valpackett/systemstat", "repository": { "Http": { - "url": "https://static.crates.io/crates/systemstat/0.2.4/download", - "sha256": "668a4db78b439df482c238f559e4ea869017f9e62ef0a059c8bfcd841a4df544" + "url": "https://static.crates.io/crates/systemstat/0.2.3/download", + "sha256": "a24aec24a9312c83999a28e3ef9db7e2afd5c64bf47725b758cdc1cafd5b0bd2" } }, "targets": [ @@ -69792,15 +69843,15 @@ "target": "bytesize" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -69820,7 +69871,7 @@ } }, "edition": "2018", - "version": "0.2.4" + "version": "0.2.3" }, "license": "Unlicense", "license_ids": [ @@ -69943,14 +69994,14 @@ ], "license_file": "LICENSE.txt" }, - "tar 0.4.43": { + "tar 0.4.39": { "name": "tar", - "version": "0.4.43", + "version": "0.4.39", "package_url": "https://github.com/alexcrichton/tar-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/tar/0.4.43/download", - "sha256": "c65998313f8e17d0d553d28f91a0df93e4dbbbf770279c7bc21ca0f09ea1a1f6" + "url": "https://static.crates.io/crates/tar/0.4.39/download", + "sha256": "ec96d2ffad078296368d46ff1cb309be1c23c513b4ab0e22a45de0185275ac96" } }, "targets": [ @@ -69982,167 +70033,167 @@ "deps": { "common": [ { - "id": "filetime 0.2.25", + "id": "filetime 0.2.22", "target": "filetime" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "aarch64-apple-ios": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "aarch64-apple-ios-sim": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "aarch64-linux-android": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "aarch64-unknown-fuchsia": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "aarch64-unknown-linux-gnu": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "arm-unknown-linux-gnueabi": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "armv7-linux-androideabi": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-apple-darwin": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "i686-linux-android": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "i686-unknown-freebsd": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "i686-unknown-linux-gnu": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "powerpc-unknown-linux-gnu": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "s390x-unknown-linux-gnu": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "x86_64-apple-darwin": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "x86_64-apple-ios": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "x86_64-linux-android": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "x86_64-unknown-freebsd": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "x86_64-unknown-fuchsia": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "x86_64-unknown-linux-gnu": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ] } }, - "edition": "2021", - "version": "0.4.43" + "edition": "2018", + "version": "0.4.39" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -70270,7 +70321,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -70290,7 +70341,7 @@ "target": "opentelemetry" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.3", "target": "pin_project" }, { @@ -70306,11 +70357,11 @@ "target": "static_assertions" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -70388,11 +70439,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -70411,14 +70462,14 @@ ], "license_file": "LICENSE" }, - "tempfile 3.15.0": { + "tempfile 3.12.0": { "name": "tempfile", - "version": "3.15.0", + "version": "3.12.0", "package_url": "https://github.com/Stebalien/tempfile", "repository": { "Http": { - "url": "https://static.crates.io/crates/tempfile/3.15.0/download", - "sha256": "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" + "url": "https://static.crates.io/crates/tempfile/3.12.0/download", + "sha256": "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" } }, "targets": [ @@ -70440,13 +70491,6 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "default", - "getrandom" - ], - "selects": {} - }, "deps": { "common": [ { @@ -70454,90 +70498,18 @@ "target": "cfg_if" }, { - "id": "fastrand 2.3.0", + "id": "fastrand 2.2.0", "target": "fastrand" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "selects": { - "aarch64-apple-darwin": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "aarch64-apple-ios": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "aarch64-apple-ios-sim": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "aarch64-linux-android": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "aarch64-pc-windows-msvc": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "aarch64-unknown-fuchsia": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "aarch64-unknown-linux-gnu": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "aarch64-unknown-nixos-gnu": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "aarch64-unknown-nto-qnx710": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "arm-unknown-linux-gnueabi": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "armv7-linux-androideabi": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "armv7-unknown-linux-gnueabi": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], "cfg(any(unix, target_os = \"wasi\"))": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -70546,107 +70518,11 @@ "id": "windows-sys 0.59.0", "target": "windows_sys" } - ], - "i686-apple-darwin": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "i686-linux-android": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "i686-pc-windows-msvc": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "i686-unknown-freebsd": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "i686-unknown-linux-gnu": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "powerpc-unknown-linux-gnu": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "s390x-unknown-linux-gnu": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "wasm32-wasip1": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "x86_64-apple-darwin": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "x86_64-apple-ios": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "x86_64-linux-android": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "x86_64-pc-windows-msvc": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "x86_64-unknown-freebsd": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "x86_64-unknown-fuchsia": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "x86_64-unknown-linux-gnu": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } ] } }, "edition": "2021", - "version": "3.15.0" + "version": "3.12.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -70829,7 +70705,7 @@ "selects": { "cfg(windows)": [ { - "id": "rustversion 1.0.19", + "id": "rustversion 1.0.14", "target": "rustversion" } ] @@ -70878,7 +70754,7 @@ "selects": { "cfg(windows)": [ { - "id": "winapi-util 0.1.9", + "id": "winapi-util 0.1.6", "target": "winapi_util" } ] @@ -70928,7 +70804,7 @@ "selects": { "cfg(not(windows))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -70982,7 +70858,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -70997,14 +70873,14 @@ ], "license_file": "LICENSE" }, - "termtree 0.5.1": { + "termtree 0.4.1": { "name": "termtree", - "version": "0.5.1", + "version": "0.4.1", "package_url": "https://github.com/rust-cli/termtree", "repository": { "Http": { - "url": "https://static.crates.io/crates/termtree/0.5.1/download", - "sha256": "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683" + "url": "https://static.crates.io/crates/termtree/0.4.1/download", + "sha256": "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" } }, "targets": [ @@ -71026,14 +70902,14 @@ "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "0.5.1" + "edition": "2018", + "version": "0.4.1" }, "license": "MIT", "license_ids": [ "MIT" ], - "license_file": "LICENSE-MIT" + "license_file": "LICENSE" }, "test-strategy 0.3.1": { "name": "test-strategy", @@ -71067,11 +70943,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -71079,7 +70955,7 @@ "target": "structmeta" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -71131,7 +71007,7 @@ "target": "getopts" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -71151,14 +71027,14 @@ ], "license_file": null }, - "textplots 0.8.6": { + "textplots 0.8.4": { "name": "textplots", - "version": "0.8.6", + "version": "0.8.4", "package_url": "https://github.com/loony-bean/textplots-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/textplots/0.8.6/download", - "sha256": "f59b64803118dbff62f92842b3154a2c802dfd8e18660132bbcbfb141c637ae3" + "url": "https://static.crates.io/crates/textplots/0.8.4/download", + "sha256": "2171116bd71c738068fe42091b1509d70135a768443c9afd6c179b83dc6cdc79" } }, "targets": [ @@ -71187,14 +71063,14 @@ "target": "drawille" }, { - "id": "rgb 0.8.50", + "id": "rgb 0.8.37", "target": "rgb" } ], "selects": {} }, "edition": "2021", - "version": "0.8.6" + "version": "0.8.4" }, "license": "MIT", "license_ids": [ @@ -71202,14 +71078,14 @@ ], "license_file": null }, - "textwrap 0.16.1": { + "textwrap 0.16.0": { "name": "textwrap", - "version": "0.16.1", + "version": "0.16.0", "package_url": "https://github.com/mgeisler/textwrap", "repository": { "Http": { - "url": "https://static.crates.io/crates/textwrap/0.16.1/download", - "sha256": "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" + "url": "https://static.crates.io/crates/textwrap/0.16.0/download", + "sha256": "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" } }, "targets": [ @@ -71232,7 +71108,7 @@ "**" ], "edition": "2021", - "version": "0.16.1" + "version": "0.16.0" }, "license": "MIT", "license_ids": [ @@ -71240,14 +71116,14 @@ ], "license_file": "LICENSE" }, - "thiserror 1.0.69": { + "thiserror 1.0.68": { "name": "thiserror", - "version": "1.0.69", + "version": "1.0.68", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror/1.0.69/download", - "sha256": "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" + "url": "https://static.crates.io/crates/thiserror/1.0.68/download", + "sha256": "02dd99dc800bbb97186339685293e1cc5d9df1f8fae2d0aecd9ff1c77efea892" } }, "targets": [ @@ -71284,7 +71160,7 @@ "deps": { "common": [ { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "build_script_build" } ], @@ -71294,13 +71170,13 @@ "proc_macro_deps": { "common": [ { - "id": "thiserror-impl 1.0.69", + "id": "thiserror-impl 1.0.68", "target": "thiserror_impl" } ], "selects": {} }, - "version": "1.0.69" + "version": "1.0.68" }, "build_script_attrs": { "compile_data_glob": [ @@ -71317,14 +71193,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thiserror 2.0.11": { + "thiserror 2.0.3": { "name": "thiserror", - "version": "2.0.11", + "version": "2.0.3", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror/2.0.11/download", - "sha256": "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" + "url": "https://static.crates.io/crates/thiserror/2.0.3/download", + "sha256": "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa" } }, "targets": [ @@ -71368,7 +71244,7 @@ "deps": { "common": [ { - "id": "thiserror 2.0.11", + "id": "thiserror 2.0.3", "target": "build_script_build" } ], @@ -71378,13 +71254,13 @@ "proc_macro_deps": { "common": [ { - "id": "thiserror-impl 2.0.11", + "id": "thiserror-impl 2.0.3", "target": "thiserror_impl" } ], "selects": {} }, - "version": "2.0.11" + "version": "2.0.3" }, "build_script_attrs": { "compile_data_glob": [ @@ -71401,14 +71277,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thiserror-impl 1.0.69": { + "thiserror-impl 1.0.68": { "name": "thiserror-impl", - "version": "1.0.69", + "version": "1.0.68", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror-impl/1.0.69/download", - "sha256": "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" + "url": "https://static.crates.io/crates/thiserror-impl/1.0.68/download", + "sha256": "a7c61ec9a6f64d2793d8a45faba21efbe3ced62a886d44c36a009b2b519b4c7e" } }, "targets": [ @@ -71433,22 +71309,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.0.69" + "version": "1.0.68" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -71457,14 +71333,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thiserror-impl 2.0.11": { + "thiserror-impl 2.0.3": { "name": "thiserror-impl", - "version": "2.0.11", + "version": "2.0.3", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror-impl/2.0.11/download", - "sha256": "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" + "url": "https://static.crates.io/crates/thiserror-impl/2.0.3/download", + "sha256": "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568" } }, "targets": [ @@ -71489,22 +71365,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.0.11" + "version": "2.0.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -71552,14 +71428,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thread_local 1.1.8": { + "thread_local 1.1.7": { "name": "thread_local", - "version": "1.1.8", + "version": "1.1.7", "package_url": "https://github.com/Amanieu/thread_local-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/thread_local/1.1.8/download", - "sha256": "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" + "url": "https://static.crates.io/crates/thread_local/1.1.7/download", + "sha256": "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" } }, "targets": [ @@ -71588,14 +71464,14 @@ "target": "cfg_if" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "selects": {} }, "edition": "2021", - "version": "1.1.8" + "version": "1.1.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -71690,7 +71566,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -71770,7 +71646,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -71801,7 +71677,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -71863,7 +71739,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -71883,14 +71759,14 @@ ], "license_file": "LICENSE-APACHE" }, - "time 0.3.37": { + "time 0.3.36": { "name": "time", - "version": "0.3.37", + "version": "0.3.36", "package_url": "https://github.com/time-rs/time", "repository": { "Http": { - "url": "https://static.crates.io/crates/time/0.3.37/download", - "sha256": "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" + "url": "https://static.crates.io/crates/time/0.3.36/download", + "sha256": "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" } }, "targets": [ @@ -71927,11 +71803,11 @@ "deps": { "common": [ { - "id": "deranged 0.3.11", + "id": "deranged 0.3.9", "target": "deranged" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { @@ -71950,241 +71826,241 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "aarch64-apple-ios": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "aarch64-apple-ios-sim": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "aarch64-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "aarch64-unknown-fuchsia": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "aarch64-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "arm-unknown-linux-gnueabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "armv7-linux-androideabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "i686-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "i686-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "i686-unknown-freebsd": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "i686-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "powerpc-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "s390x-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "x86_64-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "x86_64-apple-ios": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "x86_64-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "x86_64-unknown-freebsd": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "x86_64-unknown-fuchsia": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "x86_64-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ] @@ -72194,13 +72070,13 @@ "proc_macro_deps": { "common": [ { - "id": "time-macros 0.2.19", + "id": "time-macros 0.2.18", "target": "time_macros" } ], "selects": {} }, - "version": "0.3.37" + "version": "0.3.36" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -72248,14 +72124,14 @@ ], "license_file": "LICENSE-Apache" }, - "time-macros 0.2.19": { + "time-macros 0.2.18": { "name": "time-macros", - "version": "0.2.19", + "version": "0.2.18", "package_url": "https://github.com/time-rs/time", "repository": { "Http": { - "url": "https://static.crates.io/crates/time-macros/0.2.19/download", - "sha256": "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" + "url": "https://static.crates.io/crates/time-macros/0.2.18/download", + "sha256": "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" } }, "targets": [ @@ -72298,7 +72174,7 @@ "selects": {} }, "edition": "2021", - "version": "0.2.19" + "version": "0.2.18" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -72477,7 +72353,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], @@ -72527,7 +72403,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -72543,14 +72419,14 @@ ], "license_file": "LICENSE-APACHE" }, - "tinyvec 1.8.1": { + "tinyvec 1.6.0": { "name": "tinyvec", - "version": "1.8.1", + "version": "1.6.0", "package_url": "https://github.com/Lokathor/tinyvec", "repository": { "Http": { - "url": "https://static.crates.io/crates/tinyvec/1.8.1/download", - "sha256": "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" + "url": "https://static.crates.io/crates/tinyvec/1.6.0/download", + "sha256": "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" } }, "targets": [ @@ -72590,7 +72466,7 @@ "selects": {} }, "edition": "2018", - "version": "1.8.1" + "version": "1.6.0" }, "license": "Zlib OR Apache-2.0 OR MIT", "license_ids": [ @@ -72720,15 +72596,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -72744,14 +72620,14 @@ ], "license_file": null }, - "tokio 1.43.0": { + "tokio 1.42.0": { "name": "tokio", - "version": "1.43.0", + "version": "1.42.0", "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio/1.43.0/download", - "sha256": "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" + "url": "https://static.crates.io/crates/tokio/1.42.0/download", + "sha256": "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" } }, "targets": [ @@ -72816,78 +72692,78 @@ "target": "bytes" }, { - "id": "mio 1.0.3", + "id": "mio 1.0.2", "target": "mio" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "aarch64-apple-ios": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "aarch64-apple-ios-sim": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "aarch64-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "aarch64-pc-windows-msvc": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { @@ -72897,139 +72773,139 @@ ], "aarch64-unknown-fuchsia": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "aarch64-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "arm-unknown-linux-gnueabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "armv7-linux-androideabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "cfg(tokio_taskdump)": [ { - "id": "backtrace 0.3.74", + "id": "backtrace 0.3.69", "target": "backtrace" } ], "i686-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "i686-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "i686-pc-windows-msvc": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { @@ -73039,129 +72915,129 @@ ], "i686-unknown-freebsd": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "i686-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "powerpc-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "riscv32imc-unknown-none-elf": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "riscv64gc-unknown-none-elf": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "s390x-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "thumbv7em-none-eabi": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "thumbv8m.main-none-eabi": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "x86_64-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "x86_64-apple-ios": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "x86_64-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "x86_64-pc-windows-msvc": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { @@ -73171,63 +73047,63 @@ ], "x86_64-unknown-freebsd": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "x86_64-unknown-fuchsia": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "x86_64-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "x86_64-unknown-none": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ] @@ -73237,13 +73113,13 @@ "proc_macro_deps": { "common": [ { - "id": "tokio-macros 2.5.0", + "id": "tokio-macros 2.4.0", "target": "tokio_macros" } ], "selects": {} }, - "version": "1.43.0" + "version": "1.42.0" }, "license": "MIT", "license_ids": [ @@ -73283,11 +73159,11 @@ "deps": { "common": [ { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -73303,14 +73179,14 @@ ], "license_file": "LICENSE-APACHE" }, - "tokio-macros 2.5.0": { + "tokio-macros 2.4.0": { "name": "tokio-macros", - "version": "2.5.0", + "version": "2.4.0", "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio-macros/2.5.0/download", - "sha256": "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" + "url": "https://static.crates.io/crates/tokio-macros/2.4.0/download", + "sha256": "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" } }, "targets": [ @@ -73335,22 +73211,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.5.0" + "version": "2.4.0" }, "license": "MIT", "license_ids": [ @@ -73402,11 +73278,11 @@ "target": "futures_util" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -73470,7 +73346,7 @@ "target": "rustls" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -73531,12 +73407,12 @@ "target": "rustls" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -73552,14 +73428,14 @@ ], "license_file": "LICENSE-APACHE" }, - "tokio-rustls 0.26.1": { + "tokio-rustls 0.26.0": { "name": "tokio-rustls", - "version": "0.26.1", + "version": "0.26.0", "package_url": "https://github.com/rustls/tokio-rustls", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio-rustls/0.26.1/download", - "sha256": "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37" + "url": "https://static.crates.io/crates/tokio-rustls/0.26.0/download", + "sha256": "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" } }, "targets": [ @@ -73592,20 +73468,25 @@ "deps": { "common": [ { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "tokio 1.43.0", + "id": "rustls-pki-types 1.10.0", + "target": "rustls_pki_types", + "alias": "pki_types" + }, + { + "id": "tokio 1.42.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "0.26.1" + "version": "0.26.0" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -73672,7 +73553,7 @@ "target": "futures_sink" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.3", "target": "pin_project" }, { @@ -73680,7 +73561,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -73744,7 +73625,7 @@ "deps": { "common": [ { - "id": "either 1.13.0", + "id": "either 1.9.0", "target": "either" }, { @@ -73752,11 +73633,11 @@ "target": "futures_util" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -73815,11 +73696,11 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -73878,7 +73759,7 @@ "target": "futures_core" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -73942,11 +73823,11 @@ "target": "futures_util" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -74035,7 +73916,7 @@ "target": "futures_util" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -74043,7 +73924,7 @@ "target": "slab" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -74151,14 +74032,76 @@ ], "license_file": "LICENSE-APACHE" }, - "toml_edit 0.22.22": { + "toml_edit 0.19.15": { + "name": "toml_edit", + "version": "0.19.15", + "package_url": "https://github.com/toml-rs/toml", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/toml_edit/0.19.15/download", + "sha256": "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" + } + }, + "targets": [ + { + "Library": { + "crate_name": "toml_edit", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "toml_edit", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "indexmap 2.2.6", + "target": "indexmap" + }, + { + "id": "toml_datetime 0.6.8", + "target": "toml_datetime" + }, + { + "id": "winnow 0.5.17", + "target": "winnow" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.19.15" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "toml_edit 0.22.20": { "name": "toml_edit", - "version": "0.22.22", + "version": "0.22.20", "package_url": "https://github.com/toml-rs/toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml_edit/0.22.22/download", - "sha256": "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" + "url": "https://static.crates.io/crates/toml_edit/0.22.20/download", + "sha256": "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d" } }, "targets": [ @@ -74191,7 +74134,7 @@ "deps": { "common": [ { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { @@ -74199,14 +74142,14 @@ "target": "toml_datetime" }, { - "id": "winnow 0.6.24", + "id": "winnow 0.6.20", "target": "winnow" } ], "selects": {} }, "edition": "2021", - "version": "0.22.22" + "version": "0.22.20" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -74275,7 +74218,7 @@ "target": "bytes" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { @@ -74291,11 +74234,11 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { - "id": "hyper-timeout 0.5.2", + "id": "hyper-timeout 0.5.1", "target": "hyper_timeout" }, { @@ -74307,19 +74250,19 @@ "target": "percent_encoding" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.3", "target": "pin_project" }, { - "id": "prost 0.13.4", + "id": "prost 0.13.3", "target": "prost" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -74349,7 +74292,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -74404,27 +74347,27 @@ "deps": { "common": [ { - "id": "prettyplease 0.2.29", + "id": "prettyplease 0.2.15", "target": "prettyplease" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "prost-build 0.13.4", + "id": "prost-build 0.13.3", "target": "prost_build" }, { - "id": "prost-types 0.13.4", + "id": "prost-types 0.13.3", "target": "prost_types" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -74511,11 +74454,11 @@ "target": "indexmap" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.3", "target": "pin_project" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -74527,7 +74470,7 @@ "target": "slab" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -74558,14 +74501,14 @@ ], "license_file": "LICENSE" }, - "tower 0.5.2": { + "tower 0.5.1": { "name": "tower", - "version": "0.5.2", + "version": "0.5.1", "package_url": "https://github.com/tower-rs/tower", "repository": { "Http": { - "url": "https://static.crates.io/crates/tower/0.5.2/download", - "sha256": "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" + "url": "https://static.crates.io/crates/tower/0.5.1/download", + "sha256": "2873938d487c3cfb9aed7546dc9f2711d867c9f90c46b889989a2cb84eba6b4f" } }, "targets": [ @@ -74632,15 +74575,15 @@ "target": "futures_util" }, { - "id": "hdrhistogram 7.5.4", + "id": "hdrhistogram 7.5.2", "target": "hdrhistogram" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -74648,11 +74591,11 @@ "target": "slab" }, { - "id": "sync_wrapper 1.0.2", + "id": "sync_wrapper 0.1.2", "target": "sync_wrapper" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -74675,7 +74618,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.2" + "version": "0.5.1" }, "license": "MIT", "license_ids": [ @@ -74730,11 +74673,11 @@ "deps": { "common": [ { - "id": "base64 0.21.7", + "id": "base64 0.21.4", "target": "base64" }, { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -74758,11 +74701,11 @@ "target": "mime" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -74844,11 +74787,11 @@ "deps": { "common": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.4", "target": "async_compression" }, { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -74872,11 +74815,11 @@ "target": "http_body_util" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -74884,7 +74827,7 @@ "target": "tokio_util" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.1", "target": "tower" }, { @@ -74900,7 +74843,7 @@ "target": "tracing" }, { - "id": "uuid 1.12.0", + "id": "uuid 1.11.0", "target": "uuid" } ], @@ -74997,7 +74940,7 @@ "target": "tower_service" }, { - "id": "ulid 1.1.4", + "id": "ulid 1.1.0", "target": "ulid" } ], @@ -75086,11 +75029,11 @@ "target": "futures_util" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.3", "target": "pin_project" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -75117,14 +75060,14 @@ ], "license_file": "LICENSE" }, - "tower_governor 0.4.3": { + "tower_governor 0.4.2": { "name": "tower_governor", - "version": "0.4.3", + "version": "0.4.2", "package_url": "https://github.com/benwis/tower-governor", "repository": { "Http": { - "url": "https://static.crates.io/crates/tower_governor/0.4.3/download", - "sha256": "aea939ea6cfa7c4880f3e7422616624f97a567c16df67b53b11f0d03917a8e46" + "url": "https://static.crates.io/crates/tower_governor/0.4.2/download", + "sha256": "313fa625fea5790ed56360a30ea980e41229cf482b4835801a67ef1922bf63b9" } }, "targets": [ @@ -75164,7 +75107,7 @@ "target": "forwarded_header_value" }, { - "id": "governor 0.6.3", + "id": "governor 0.6.0", "target": "governor" }, { @@ -75172,15 +75115,15 @@ "target": "http" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.3", "target": "pin_project" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tower 0.5.2", + "id": "tower 0.4.13", "target": "tower" }, { @@ -75191,14 +75134,14 @@ "selects": {} }, "edition": "2021", - "version": "0.4.3" + "version": "0.4.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE" + "license_file": null }, "tracing 0.1.41": { "name": "tracing", @@ -75242,11 +75185,11 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -75306,15 +75249,15 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" }, { @@ -75365,15 +75308,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -75428,7 +75371,7 @@ "deps": { "common": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], @@ -75482,7 +75425,7 @@ "deps": { "common": [ { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -75544,11 +75487,11 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -75599,7 +75542,7 @@ "deps": { "common": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -75671,11 +75614,11 @@ "deps": { "common": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "opentelemetry 0.27.1", + "id": "opentelemetry 0.27.0", "target": "opentelemetry" }, { @@ -75706,7 +75649,7 @@ "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { @@ -75866,7 +75809,7 @@ "deps": { "common": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -75955,11 +75898,11 @@ "target": "nu_ansi_term" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -75967,7 +75910,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -75979,11 +75922,11 @@ "target": "smallvec" }, { - "id": "thread_local 1.1.8", + "id": "thread_local 1.1.7", "target": "thread_local" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" }, { @@ -76053,7 +75996,7 @@ "deps": { "common": [ { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -76069,6 +76012,45 @@ ], "license_file": null }, + "triomphe 0.1.9": { + "name": "triomphe", + "version": "0.1.9", + "package_url": "https://github.com/Manishearth/triomphe", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/triomphe/0.1.9/download", + "sha256": "0eee8098afad3fb0c54a9007aab6804558410503ad676d4633f9c2559a00ac0f" + } + }, + "targets": [ + { + "Library": { + "crate_name": "triomphe", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "triomphe", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2015", + "version": "0.1.9" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "trust-dns-proto 0.22.0": { "name": "trust-dns-proto", "version": "0.22.0", @@ -76112,7 +76094,7 @@ "target": "cfg_if" }, { - "id": "data-encoding 2.7.0", + "id": "data-encoding 2.4.0", "target": "data_encoding" }, { @@ -76136,7 +76118,7 @@ "target": "ipnet" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -76148,15 +76130,15 @@ "target": "smallvec" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tinyvec 1.8.1", + "id": "tinyvec 1.6.0", "target": "tinyvec" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -76164,7 +76146,7 @@ "target": "tracing" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" } ], @@ -76174,7 +76156,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" }, { @@ -76244,7 +76226,7 @@ "target": "futures_util" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -76252,7 +76234,7 @@ "target": "lru_cache" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { @@ -76264,11 +76246,11 @@ "target": "smallvec" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -76311,14 +76293,14 @@ ], "license_file": "LICENSE-APACHE" }, - "try-lock 0.2.5": { + "try-lock 0.2.4": { "name": "try-lock", - "version": "0.2.5", + "version": "0.2.4", "package_url": "https://github.com/seanmonstar/try-lock", "repository": { "Http": { - "url": "https://static.crates.io/crates/try-lock/0.2.5/download", - "sha256": "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + "url": "https://static.crates.io/crates/try-lock/0.2.4/download", + "sha256": "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" } }, "targets": [ @@ -76341,7 +76323,7 @@ "**" ], "edition": "2015", - "version": "0.2.5" + "version": "0.2.4" }, "license": "MIT", "license_ids": [ @@ -76400,7 +76382,7 @@ "target": "bytes" }, { - "id": "data-encoding 2.7.0", + "id": "data-encoding 2.4.0", "target": "data_encoding" }, { @@ -76408,11 +76390,11 @@ "target": "http" }, { - "id": "httparse 1.9.5", + "id": "httparse 1.8.0", "target": "httparse" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -76424,11 +76406,11 @@ "target": "sha1" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" }, { @@ -76510,7 +76492,7 @@ "target": "scoped_tls" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -76658,14 +76640,14 @@ ], "license_file": "LICENSE" }, - "ucd-trie 0.1.7": { + "ucd-trie 0.1.6": { "name": "ucd-trie", - "version": "0.1.7", + "version": "0.1.6", "package_url": "https://github.com/BurntSushi/ucd-generate", "repository": { "Http": { - "url": "https://static.crates.io/crates/ucd-trie/0.1.7/download", - "sha256": "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971" + "url": "https://static.crates.io/crates/ucd-trie/0.1.6/download", + "sha256": "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" } }, "targets": [ @@ -76694,7 +76676,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.7" + "version": "0.1.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -76769,14 +76751,14 @@ ], "license_file": null }, - "ulid 1.1.4": { + "ulid 1.1.0": { "name": "ulid", - "version": "1.1.4", + "version": "1.1.0", "package_url": "https://github.com/dylanhart/ulid-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ulid/1.1.4/download", - "sha256": "f294bff79170ed1c5633812aff1e565c35d993a36e757f9bc0accf5eec4e6045" + "url": "https://static.crates.io/crates/ulid/1.1.0/download", + "sha256": "7e37c4b6cbcc59a8dcd09a6429fbc7890286bcbb79215cea7b38a3c4c0921d93" } }, "targets": [ @@ -76813,17 +76795,10 @@ "target": "rand" } ], - "selects": { - "wasm32-unknown-unknown": [ - { - "id": "web-time 1.1.0", - "target": "web_time" - } - ] - } + "selects": {} }, "edition": "2018", - "version": "1.1.4" + "version": "1.1.0" }, "license": "MIT", "license_ids": [ @@ -76870,14 +76845,14 @@ ], "license_file": "LICENSE-APACHE" }, - "unicase 2.8.1": { + "unicase 2.7.0": { "name": "unicase", - "version": "2.8.1", + "version": "2.7.0", "package_url": "https://github.com/seanmonstar/unicase", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicase/2.8.1/download", - "sha256": "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" + "url": "https://static.crates.io/crates/unicase/2.7.0/download", + "sha256": "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" } }, "targets": [ @@ -76892,6 +76867,18 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], "library_target_name": "unicase", @@ -76899,24 +76886,50 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "2.8.1" + "deps": { + "common": [ + { + "id": "unicase 2.7.0", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2015", + "version": "2.7.0" }, - "license": "MIT OR Apache-2.0", + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "version_check 0.9.4", + "target": "version_check" + } + ], + "selects": {} + } + }, + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "unicode-bidi 0.3.18": { + "unicode-bidi 0.3.13": { "name": "unicode-bidi", - "version": "0.3.18", + "version": "0.3.13", "package_url": "https://github.com/servo/unicode-bidi", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-bidi/0.3.18/download", - "sha256": "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" + "url": "https://static.crates.io/crates/unicode-bidi/0.3.13/download", + "sha256": "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" } }, "targets": [ @@ -76947,7 +76960,7 @@ "selects": {} }, "edition": "2018", - "version": "0.3.18" + "version": "0.3.13" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -76956,14 +76969,14 @@ ], "license_file": "LICENSE-APACHE" }, - "unicode-ident 1.0.14": { + "unicode-ident 1.0.12": { "name": "unicode-ident", - "version": "1.0.14", + "version": "1.0.12", "package_url": "https://github.com/dtolnay/unicode-ident", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-ident/1.0.14/download", - "sha256": "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" + "url": "https://static.crates.io/crates/unicode-ident/1.0.12/download", + "sha256": "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" } }, "targets": [ @@ -76986,24 +76999,24 @@ "**" ], "edition": "2018", - "version": "1.0.14" + "version": "1.0.12" }, - "license": "(MIT OR Apache-2.0) AND Unicode-3.0", + "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", "license_ids": [ "Apache-2.0", "MIT", - "Unicode-3.0" + "Unicode-DFS-2016" ], "license_file": "LICENSE-APACHE" }, - "unicode-normalization 0.1.24": { + "unicode-normalization 0.1.22": { "name": "unicode-normalization", - "version": "0.1.24", + "version": "0.1.22", "package_url": "https://github.com/unicode-rs/unicode-normalization", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-normalization/0.1.24/download", - "sha256": "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" + "url": "https://static.crates.io/crates/unicode-normalization/0.1.22/download", + "sha256": "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" } }, "targets": [ @@ -77035,14 +77048,14 @@ "deps": { "common": [ { - "id": "tinyvec 1.8.1", + "id": "tinyvec 1.6.0", "target": "tinyvec" } ], "selects": {} }, "edition": "2018", - "version": "0.1.24" + "version": "0.1.22" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -77051,14 +77064,14 @@ ], "license_file": "LICENSE-APACHE" }, - "unicode-segmentation 1.12.0": { + "unicode-segmentation 1.10.1": { "name": "unicode-segmentation", - "version": "1.12.0", + "version": "1.10.1", "package_url": "https://github.com/unicode-rs/unicode-segmentation", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-segmentation/1.12.0/download", - "sha256": "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" + "url": "https://static.crates.io/crates/unicode-segmentation/1.10.1/download", + "sha256": "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" } }, "targets": [ @@ -77081,69 +77094,23 @@ "**" ], "edition": "2018", - "version": "1.12.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "unicode-width 0.1.14": { - "name": "unicode-width", - "version": "0.1.14", - "package_url": "https://github.com/unicode-rs/unicode-width", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/unicode-width/0.1.14/download", - "sha256": "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" - } - }, - "targets": [ - { - "Library": { - "crate_name": "unicode_width", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "unicode_width", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "cjk", - "default" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.14" + "version": "1.10.1" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "unicode-width 0.2.0": { + "unicode-width 0.1.11": { "name": "unicode-width", - "version": "0.2.0", + "version": "0.1.11", "package_url": "https://github.com/unicode-rs/unicode-width", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-width/0.2.0/download", - "sha256": "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" + "url": "https://static.crates.io/crates/unicode-width/0.1.11/download", + "sha256": "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" } }, "targets": [ @@ -77167,29 +77134,28 @@ ], "crate_features": { "common": [ - "cjk", "default" ], "selects": {} }, - "edition": "2021", - "version": "0.2.0" + "edition": "2015", + "version": "0.1.11" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "unicode-xid 0.2.6": { + "unicode-xid 0.2.4": { "name": "unicode-xid", - "version": "0.2.6", + "version": "0.2.4", "package_url": "https://github.com/unicode-rs/unicode-xid", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-xid/0.2.6/download", - "sha256": "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" + "url": "https://static.crates.io/crates/unicode-xid/0.2.4/download", + "sha256": "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" } }, "targets": [ @@ -77218,7 +77184,7 @@ "selects": {} }, "edition": "2015", - "version": "0.2.6" + "version": "0.2.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -77435,7 +77401,7 @@ "target": "fnv" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" } ], @@ -77450,14 +77416,14 @@ ], "license_file": "LICENSE" }, - "url 2.5.4": { + "url 2.5.3": { "name": "url", - "version": "2.5.4", + "version": "2.5.3", "package_url": "https://github.com/servo/rust-url", "repository": { "Http": { - "url": "https://static.crates.io/crates/url/2.5.4/download", - "sha256": "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" + "url": "https://static.crates.io/crates/url/2.5.3/download", + "sha256": "8d157f1b96d14500ffdc1f10ba712e780825526c03d9a49b4d0324b0d9113ada" } }, "targets": [ @@ -77509,7 +77475,7 @@ "selects": {} }, "edition": "2018", - "version": "2.5.4" + "version": "2.5.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -77634,14 +77600,14 @@ ], "license_file": "LICENSE-APACHE" }, - "utf8-width 0.1.7": { + "utf8-width 0.1.6": { "name": "utf8-width", - "version": "0.1.7", + "version": "0.1.6", "package_url": "https://github.com/magiclen/utf8-width", "repository": { "Http": { - "url": "https://static.crates.io/crates/utf8-width/0.1.7/download", - "sha256": "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" + "url": "https://static.crates.io/crates/utf8-width/0.1.6/download", + "sha256": "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1" } }, "targets": [ @@ -77664,7 +77630,7 @@ "**" ], "edition": "2021", - "version": "0.1.7" + "version": "0.1.6" }, "license": "MIT", "license_ids": [ @@ -77711,14 +77677,14 @@ ], "license_file": "LICENSE-APACHE" }, - "utf8parse 0.2.2": { + "utf8parse 0.2.1": { "name": "utf8parse", - "version": "0.2.2", + "version": "0.2.1", "package_url": "https://github.com/alacritty/vte", "repository": { "Http": { - "url": "https://static.crates.io/crates/utf8parse/0.2.2/download", - "sha256": "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" + "url": "https://static.crates.io/crates/utf8parse/0.2.1/download", + "sha256": "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" } }, "targets": [ @@ -77747,7 +77713,7 @@ "selects": {} }, "edition": "2018", - "version": "0.2.2" + "version": "0.2.1" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -77756,14 +77722,14 @@ ], "license_file": "LICENSE-APACHE" }, - "uuid 1.12.0": { + "uuid 1.11.0": { "name": "uuid", - "version": "1.12.0", + "version": "1.11.0", "package_url": "https://github.com/uuid-rs/uuid", "repository": { "Http": { - "url": "https://static.crates.io/crates/uuid/1.12.0/download", - "sha256": "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4" + "url": "https://static.crates.io/crates/uuid/1.11.0/download", + "sha256": "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" } }, "targets": [ @@ -77799,7 +77765,7 @@ "deps": { "common": [ { - "id": "getrandom 0.2.15", + "id": "getrandom 0.2.10", "target": "getrandom" }, { @@ -77810,7 +77776,7 @@ "selects": {} }, "edition": "2018", - "version": "1.12.0" + "version": "1.11.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -77925,14 +77891,14 @@ ], "license_file": "LICENSE-APACHE" }, - "version_check 0.9.5": { + "version_check 0.9.4": { "name": "version_check", - "version": "0.9.5", + "version": "0.9.4", "package_url": "https://github.com/SergioBenitez/version_check", "repository": { "Http": { - "url": "https://static.crates.io/crates/version_check/0.9.5/download", - "sha256": "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + "url": "https://static.crates.io/crates/version_check/0.9.4/download", + "sha256": "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" } }, "targets": [ @@ -77955,7 +77921,7 @@ "**" ], "edition": "2015", - "version": "0.9.5" + "version": "0.9.4" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -78023,19 +77989,19 @@ "target": "cfg_if" }, { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "ordered-float 4.6.0", + "id": "ordered-float 4.2.0", "target": "ordered_float" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -78043,7 +78009,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -78074,7 +78040,7 @@ "deps": { "common": [ { - "id": "lalrpop 0.20.2", + "id": "lalrpop 0.20.0", "target": "lalrpop" } ], @@ -78119,7 +78085,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -78172,7 +78138,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] @@ -78188,14 +78154,53 @@ ], "license_file": "LICENSE-APACHE" }, - "walkdir 2.5.0": { + "waker-fn 1.1.1": { + "name": "waker-fn", + "version": "1.1.1", + "package_url": "https://github.com/smol-rs/waker-fn", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/waker-fn/1.1.1/download", + "sha256": "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" + } + }, + "targets": [ + { + "Library": { + "crate_name": "waker_fn", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "waker_fn", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2018", + "version": "1.1.1" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "walkdir 2.3.3": { "name": "walkdir", - "version": "2.5.0", + "version": "2.3.3", "package_url": "https://github.com/BurntSushi/walkdir", "repository": { "Http": { - "url": "https://static.crates.io/crates/walkdir/2.5.0/download", - "sha256": "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" + "url": "https://static.crates.io/crates/walkdir/2.3.3/download", + "sha256": "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" } }, "targets": [ @@ -78227,14 +78232,14 @@ "selects": { "cfg(windows)": [ { - "id": "winapi-util 0.1.9", + "id": "winapi-util 0.1.6", "target": "winapi_util" } ] } }, "edition": "2018", - "version": "2.5.0" + "version": "2.3.3" }, "license": "Unlicense/MIT", "license_ids": [ @@ -78243,14 +78248,14 @@ ], "license_file": "LICENSE-MIT" }, - "walrus 0.21.3": { + "walrus 0.21.1": { "name": "walrus", - "version": "0.21.3", + "version": "0.21.1", "package_url": "https://github.com/rustwasm/walrus", "repository": { "Http": { - "url": "https://static.crates.io/crates/walrus/0.21.3/download", - "sha256": "501ace8ec3492754a9b3c4b59eac7159ceff8414f9e43a05029fe8ef43b9218f" + "url": "https://static.crates.io/crates/walrus/0.21.1/download", + "sha256": "467611cafbc8a84834b77d2b4bb191fd2f5769752def8340407e924390c6883b" } }, "targets": [ @@ -78275,7 +78280,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -78291,7 +78296,7 @@ "target": "leb128" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -78315,7 +78320,7 @@ ], "selects": {} }, - "version": "0.21.3" + "version": "0.21.1" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -78360,11 +78365,11 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -78416,7 +78421,7 @@ "deps": { "common": [ { - "id": "try-lock 0.2.5", + "id": "try-lock 0.2.4", "target": "try_lock" } ], @@ -78496,11 +78501,11 @@ "target": "http" }, { - "id": "hyper 0.14.32", + "id": "hyper 0.14.27", "target": "hyper" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -78508,7 +78513,7 @@ "target": "mime" }, { - "id": "mime_guess 2.0.5", + "id": "mime_guess 2.0.4", "target": "mime_guess" }, { @@ -78520,7 +78525,7 @@ "target": "percent_encoding" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.3", "target": "pin_project" }, { @@ -78536,7 +78541,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -78544,7 +78549,7 @@ "target": "serde_urlencoded" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -78625,14 +78630,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen 0.2.100": { + "wasm-bindgen 0.2.95": { "name": "wasm-bindgen", - "version": "0.2.100", + "version": "0.2.95", "package_url": "https://github.com/rustwasm/wasm-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen/0.2.100/download", - "sha256": "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" + "url": "https://static.crates.io/crates/wasm-bindgen/0.2.95/download", + "sha256": "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e" } }, "targets": [ @@ -78669,8 +78674,7 @@ "crate_features": { "common": [ "default", - "msrv", - "rustversion", + "spans", "std" ], "selects": {} @@ -78682,11 +78686,11 @@ "target": "cfg_if" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "build_script_build" } ], @@ -78696,17 +78700,13 @@ "proc_macro_deps": { "common": [ { - "id": "rustversion 1.0.19", - "target": "rustversion" - }, - { - "id": "wasm-bindgen-macro 0.2.100", + "id": "wasm-bindgen-macro 0.2.95", "target": "wasm_bindgen_macro" } ], "selects": {} }, - "version": "0.2.100" + "version": "0.2.95" }, "build_script_attrs": { "compile_data_glob": [ @@ -78723,14 +78723,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-backend 0.2.100": { + "wasm-bindgen-backend 0.2.95": { "name": "wasm-bindgen-backend", - "version": "0.2.100", + "version": "0.2.95", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-backend/0.2.100/download", - "sha256": "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" + "url": "https://static.crates.io/crates/wasm-bindgen-backend/0.2.95/download", + "sha256": "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358" } }, "targets": [ @@ -78752,6 +78752,12 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "spans" + ], + "selects": {} + }, "deps": { "common": [ { @@ -78759,30 +78765,34 @@ "target": "bumpalo" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "proc-macro2 1.0.93", + "id": "once_cell 1.19.0", + "target": "once_cell" + }, + { + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" }, { - "id": "wasm-bindgen-shared 0.2.100", + "id": "wasm-bindgen-shared 0.2.95", "target": "wasm_bindgen_shared" } ], "selects": {} }, "edition": "2021", - "version": "0.2.100" + "version": "0.2.95" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -78791,14 +78801,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-futures 0.4.50": { + "wasm-bindgen-futures 0.4.37": { "name": "wasm-bindgen-futures", - "version": "0.4.50", + "version": "0.4.37", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-futures/0.4.50/download", - "sha256": "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" + "url": "https://static.crates.io/crates/wasm-bindgen-futures/0.4.37/download", + "sha256": "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" } }, "targets": [ @@ -78820,13 +78830,6 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, "deps": { "common": [ { @@ -78834,45 +78837,41 @@ "target": "cfg_if" }, { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { - "id": "once_cell 1.20.2", - "target": "once_cell" - }, - { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], "selects": { "cfg(target_feature = \"atomics\")": [ { - "id": "web-sys 0.3.77", + "id": "web-sys 0.3.64", "target": "web_sys" } ] } }, - "edition": "2021", - "version": "0.4.50" + "edition": "2018", + "version": "0.4.37" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-macro 0.2.100": { + "wasm-bindgen-macro 0.2.95": { "name": "wasm-bindgen-macro", - "version": "0.2.100", + "version": "0.2.95", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-macro/0.2.100/download", - "sha256": "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" + "url": "https://static.crates.io/crates/wasm-bindgen-macro/0.2.95/download", + "sha256": "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56" } }, "targets": [ @@ -78894,21 +78893,27 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "spans" + ], + "selects": {} + }, "deps": { "common": [ { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "wasm-bindgen-macro-support 0.2.100", + "id": "wasm-bindgen-macro-support 0.2.95", "target": "wasm_bindgen_macro_support" } ], "selects": {} }, "edition": "2021", - "version": "0.2.100" + "version": "0.2.95" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -78917,14 +78922,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-macro-support 0.2.100": { + "wasm-bindgen-macro-support 0.2.95": { "name": "wasm-bindgen-macro-support", - "version": "0.2.100", + "version": "0.2.95", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.100/download", - "sha256": "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" + "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.95/download", + "sha256": "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68" } }, "targets": [ @@ -78946,33 +78951,39 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "spans" + ], + "selects": {} + }, "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" }, { - "id": "wasm-bindgen-backend 0.2.100", + "id": "wasm-bindgen-backend 0.2.95", "target": "wasm_bindgen_backend" }, { - "id": "wasm-bindgen-shared 0.2.100", + "id": "wasm-bindgen-shared 0.2.95", "target": "wasm_bindgen_shared" } ], "selects": {} }, "edition": "2021", - "version": "0.2.100" + "version": "0.2.95" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -78981,14 +78992,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-shared 0.2.100": { + "wasm-bindgen-shared 0.2.95": { "name": "wasm-bindgen-shared", - "version": "0.2.100", + "version": "0.2.95", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-shared/0.2.100/download", - "sha256": "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" + "url": "https://static.crates.io/crates/wasm-bindgen-shared/0.2.95/download", + "sha256": "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" } }, "targets": [ @@ -79025,18 +79036,14 @@ "deps": { "common": [ { - "id": "unicode-ident 1.0.14", - "target": "unicode_ident" - }, - { - "id": "wasm-bindgen-shared 0.2.100", + "id": "wasm-bindgen-shared 0.2.95", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.2.100" + "version": "0.2.95" }, "build_script_attrs": { "compile_data_glob": [ @@ -79224,85 +79231,6 @@ ], "license_file": null }, - "wasm-encoder 0.223.0": { - "name": "wasm-encoder", - "version": "0.223.0", - "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-encoder", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wasm-encoder/0.223.0/download", - "sha256": "7e636076193fa68103e937ac951b5f2f587624097017d764b8984d9c0f149464" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wasm_encoder", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wasm_encoder", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "component-model", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "leb128 0.2.5", - "target": "leb128" - }, - { - "id": "wasm-encoder 0.223.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.223.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": null - }, "wasm-smith 0.212.0": { "name": "wasm-smith", "version": "0.212.0", @@ -79341,19 +79269,19 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "arbitrary 1.4.1", + "id": "arbitrary 1.3.2", "target": "arbitrary" }, { - "id": "flagset 0.4.6", + "id": "flagset 0.4.4", "target": "flagset" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { @@ -79380,14 +79308,14 @@ ], "license_file": "LICENSE" }, - "wasm-streams 0.4.2": { + "wasm-streams 0.4.0": { "name": "wasm-streams", - "version": "0.4.2", + "version": "0.4.0", "package_url": "https://github.com/MattiasBuelens/wasm-streams/", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-streams/0.4.2/download", - "sha256": "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" + "url": "https://static.crates.io/crates/wasm-streams/0.4.0/download", + "sha256": "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" } }, "targets": [ @@ -79416,26 +79344,26 @@ "target": "futures_util" }, { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" }, { - "id": "wasm-bindgen-futures 0.4.50", + "id": "wasm-bindgen-futures 0.4.37", "target": "wasm_bindgen_futures" }, { - "id": "web-sys 0.3.77", + "id": "web-sys 0.3.64", "target": "web_sys" } ], "selects": {} }, "edition": "2021", - "version": "0.4.2" + "version": "0.4.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -79476,15 +79404,15 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" } ], @@ -79544,7 +79472,7 @@ "target": "ahash" }, { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -79552,11 +79480,11 @@ "target": "hashbrown" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -79621,7 +79549,7 @@ "target": "ahash" }, { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -79629,11 +79557,11 @@ "target": "hashbrown" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -79708,11 +79636,11 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -79744,78 +79672,6 @@ ], "license_file": null }, - "wasmparser 0.223.0": { - "name": "wasmparser", - "version": "0.223.0", - "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wasmparser/0.223.0/download", - "sha256": "d5a99faceb1a5a84dd6084ec4bfa4b2ab153b5793b43fd8f58b89232634afc35" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wasmparser", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wasmparser", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bitflags 2.8.0", - "target": "bitflags" - }, - { - "id": "wasmparser 0.223.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.223.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": null - }, "wasmprinter 0.217.0": { "name": "wasmprinter", "version": "0.217.0", @@ -79848,7 +79704,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -79911,7 +79767,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -79935,14 +79791,14 @@ ], "license_file": null }, - "wasmtime 28.0.1": { + "wasmtime 28.0.0": { "name": "wasmtime", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime/28.0.1/download", - "sha256": "edd30973c65eceb0f37dfcc430d83abd5eb24015fdfcab6912f52949287e04f0" + "url": "https://static.crates.io/crates/wasmtime/28.0.0/download", + "sha256": "f639ecae347b9a2227e453a7b7671e84370a0b61f47a15e0390fe9b7725e47b3" } }, "targets": [ @@ -79992,11 +79848,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -80012,19 +79868,19 @@ "target": "hashbrown" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "libm 0.2.11", + "id": "libm 0.2.8", "target": "libm" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -80032,11 +79888,11 @@ "target": "object" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "postcard 1.1.1", + "id": "postcard 1.0.8", "target": "postcard" }, { @@ -80064,27 +79920,27 @@ "target": "wasmparser" }, { - "id": "wasmtime 28.0.1", + "id": "wasmtime 28.0.0", "target": "build_script_build" }, { - "id": "wasmtime-asm-macros 28.0.1", + "id": "wasmtime-asm-macros 28.0.0", "target": "wasmtime_asm_macros" }, { - "id": "wasmtime-cranelift 28.0.1", + "id": "wasmtime-cranelift 28.0.0", "target": "wasmtime_cranelift" }, { - "id": "wasmtime-environ 28.0.1", + "id": "wasmtime-environ 28.0.0", "target": "wasmtime_environ" }, { - "id": "wasmtime-jit-icache-coherence 28.0.1", + "id": "wasmtime-jit-icache-coherence 28.0.0", "target": "wasmtime_jit_icache_coherence" }, { - "id": "wasmtime-slab 28.0.1", + "id": "wasmtime-slab 28.0.0", "target": "wasmtime_slab" } ], @@ -80095,25 +79951,25 @@ "target": "mach2" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "aarch64-apple-ios": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "aarch64-apple-ios-sim": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "aarch64-linux-android": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80125,7 +79981,7 @@ ], "aarch64-unknown-fuchsia": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80135,7 +79991,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80145,13 +80001,13 @@ "target": "memfd" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80161,13 +80017,13 @@ "target": "memfd" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "armv7-linux-androideabi": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80177,7 +80033,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80187,13 +80043,13 @@ "target": "mach2" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "i686-linux-android": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80205,7 +80061,7 @@ ], "i686-unknown-freebsd": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80215,7 +80071,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80225,7 +80081,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80235,11 +80091,11 @@ "target": "memfd" }, { - "id": "psm 0.1.24", + "id": "psm 0.1.21", "target": "psm" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80249,19 +80105,19 @@ "target": "mach2" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "x86_64-apple-ios": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "x86_64-linux-android": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80273,13 +80129,13 @@ ], "x86_64-unknown-freebsd": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "x86_64-unknown-fuchsia": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80289,7 +80145,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80299,7 +80155,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ] @@ -80317,7 +80173,7 @@ "target": "serde_derive" }, { - "id": "wasmtime-versioned-export-macros 28.0.1", + "id": "wasmtime-versioned-export-macros 28.0.0", "target": "wasmtime_versioned_export_macros" } ], @@ -80344,7 +80200,7 @@ ], "selects": {} }, - "version": "28.0.1" + "version": "28.0.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -80356,7 +80212,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -80365,7 +80221,7 @@ "proc_macro_deps": { "common": [ { - "id": "wasmtime-versioned-export-macros 28.0.1", + "id": "wasmtime-versioned-export-macros 28.0.0", "target": "wasmtime_versioned_export_macros" } ], @@ -80378,14 +80234,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-asm-macros 28.0.1": { + "wasmtime-asm-macros 28.0.0": { "name": "wasmtime-asm-macros", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-asm-macros/28.0.1/download", - "sha256": "c6c21dd30d1f3f93ee390ac1a7ec304ecdbfdab6390e1add41a1f52727b0992b" + "url": "https://static.crates.io/crates/wasmtime-asm-macros/28.0.0/download", + "sha256": "882a18800471cfc063c8b3ccf75723784acc3fd534009ac09421f2fac2fcdcec" } }, "targets": [ @@ -80417,7 +80273,7 @@ "selects": {} }, "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80425,14 +80281,14 @@ ], "license_file": null }, - "wasmtime-component-macro 28.0.1": { + "wasmtime-component-macro 28.0.0": { "name": "wasmtime-component-macro", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-component-macro/28.0.1/download", - "sha256": "9f948a6ef3119d52c9f12936970de28ddf3f9bea04bc65571f4a92d2e5ab38f4" + "url": "https://static.crates.io/crates/wasmtime-component-macro/28.0.0/download", + "sha256": "eb5c0a77c9e1927c3d471f53cc13767c3d3438e5d5ffd394e3eb31c86445fd60" } }, "targets": [ @@ -80469,31 +80325,31 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" }, { - "id": "wasmtime-component-macro 28.0.1", + "id": "wasmtime-component-macro 28.0.0", "target": "build_script_build" }, { - "id": "wasmtime-component-util 28.0.1", + "id": "wasmtime-component-util 28.0.0", "target": "wasmtime_component_util" }, { - "id": "wasmtime-wit-bindgen 28.0.1", + "id": "wasmtime-wit-bindgen 28.0.0", "target": "wasmtime_wit_bindgen" }, { @@ -80504,7 +80360,7 @@ "selects": {} }, "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -80520,14 +80376,14 @@ ], "license_file": null }, - "wasmtime-component-util 28.0.1": { + "wasmtime-component-util 28.0.0": { "name": "wasmtime-component-util", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-component-util/28.0.1/download", - "sha256": "b9275aa01ceaaa2fa6c0ecaa5267518d80b9d6e9ae7c7ea42f4c6e073e6a69ef" + "url": "https://static.crates.io/crates/wasmtime-component-util/28.0.0/download", + "sha256": "43702ca98bf5162eca0573db691ed9ecd36d716f8c6688410fe26ec16b6f9bcb" } }, "targets": [ @@ -80550,7 +80406,7 @@ "**" ], "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80558,14 +80414,14 @@ ], "license_file": null }, - "wasmtime-cranelift 28.0.1": { + "wasmtime-cranelift 28.0.0": { "name": "wasmtime-cranelift", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-cranelift/28.0.1/download", - "sha256": "0701a44a323267aae4499672dae422b266cee3135a23b640972ec8c0e10a44a2" + "url": "https://static.crates.io/crates/wasmtime-cranelift/28.0.0/download", + "sha256": "20070aa5b75080a8932ec328419faf841df2bc6ceb16b55b0df2b952098392a2" } }, "targets": [ @@ -80597,7 +80453,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -80605,23 +80461,23 @@ "target": "cfg_if" }, { - "id": "cranelift-codegen 0.115.1", + "id": "cranelift-codegen 0.115.0", "target": "cranelift_codegen" }, { - "id": "cranelift-control 0.115.1", + "id": "cranelift-control 0.115.0", "target": "cranelift_control" }, { - "id": "cranelift-entity 0.115.1", + "id": "cranelift-entity 0.115.0", "target": "cranelift_entity" }, { - "id": "cranelift-frontend 0.115.1", + "id": "cranelift-frontend 0.115.0", "target": "cranelift_frontend" }, { - "id": "cranelift-native 0.115.1", + "id": "cranelift-native 0.115.0", "target": "cranelift_native" }, { @@ -80629,11 +80485,11 @@ "target": "gimli" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.12.0", "target": "itertools" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -80649,7 +80505,7 @@ "target": "target_lexicon" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -80657,7 +80513,7 @@ "target": "wasmparser" }, { - "id": "wasmtime-environ 28.0.1", + "id": "wasmtime-environ 28.0.0", "target": "wasmtime_environ" } ], @@ -80667,13 +80523,13 @@ "proc_macro_deps": { "common": [ { - "id": "wasmtime-versioned-export-macros 28.0.1", + "id": "wasmtime-versioned-export-macros 28.0.0", "target": "wasmtime_versioned_export_macros" } ], "selects": {} }, - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80681,14 +80537,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-environ 28.0.1": { + "wasmtime-environ 28.0.0": { "name": "wasmtime-environ", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-environ/28.0.1/download", - "sha256": "264c968c1b81d340355ece2be0bc31a10f567ccb6ce08512c3b7d10e26f3cbe5" + "url": "https://static.crates.io/crates/wasmtime-environ/28.0.0/download", + "sha256": "2604ddb24879d4dc1dedcb7081d7a8e017259bce916fdae097a97db52cbaab80" } }, "targets": [ @@ -80722,15 +80578,15 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "cranelift-bitset 0.115.1", + "id": "cranelift-bitset 0.115.0", "target": "cranelift_bitset" }, { - "id": "cranelift-entity 0.115.1", + "id": "cranelift-entity 0.115.0", "target": "cranelift_entity" }, { @@ -80738,11 +80594,11 @@ "target": "gimli" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -80750,7 +80606,7 @@ "target": "object" }, { - "id": "postcard 1.1.1", + "id": "postcard 1.0.8", "target": "postcard" }, { @@ -80790,7 +80646,7 @@ ], "selects": {} }, - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80798,14 +80654,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-fiber 28.0.1": { + "wasmtime-fiber 28.0.0": { "name": "wasmtime-fiber", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-fiber/28.0.1/download", - "sha256": "78505221fd5bd7b07b4e1fa2804edea49dc231e626ad6861adc8f531812973e6" + "url": "https://static.crates.io/crates/wasmtime-fiber/28.0.0/download", + "sha256": "98593412d2b167ebe2b59d4a17a184978a72f976b53b3a0ec05629451079ac1d" } }, "targets": [ @@ -80842,7 +80698,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -80850,18 +80706,18 @@ "target": "cfg_if" }, { - "id": "wasmtime-asm-macros 28.0.1", + "id": "wasmtime-asm-macros 28.0.0", "target": "wasmtime_asm_macros" }, { - "id": "wasmtime-fiber 28.0.1", + "id": "wasmtime-fiber 28.0.0", "target": "build_script_build" } ], "selects": { "cfg(unix)": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80877,13 +80733,13 @@ "proc_macro_deps": { "common": [ { - "id": "wasmtime-versioned-export-macros 28.0.1", + "id": "wasmtime-versioned-export-macros 28.0.0", "target": "wasmtime_versioned_export_macros" } ], "selects": {} }, - "version": "28.0.1" + "version": "28.0.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -80895,7 +80751,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -80904,7 +80760,7 @@ "proc_macro_deps": { "common": [ { - "id": "wasmtime-versioned-export-macros 28.0.1", + "id": "wasmtime-versioned-export-macros 28.0.0", "target": "wasmtime_versioned_export_macros" } ], @@ -80917,14 +80773,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-jit-icache-coherence 28.0.1": { + "wasmtime-jit-icache-coherence 28.0.0": { "name": "wasmtime-jit-icache-coherence", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-jit-icache-coherence/28.0.1/download", - "sha256": "9bedb677ca1b549d98f95e9e1f9251b460090d99a2c196a0614228c064bf2e59" + "url": "https://static.crates.io/crates/wasmtime-jit-icache-coherence/28.0.0/download", + "sha256": "d40d7722b9e1fbeae135715710a8a2570b1e6cf72b74dd653962d89831c6c70d" } }, "targets": [ @@ -80949,7 +80805,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -80960,7 +80816,7 @@ "selects": { "cfg(any(target_os = \"linux\", target_os = \"macos\", target_os = \"freebsd\", target_os = \"android\"))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -80973,7 +80829,7 @@ } }, "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80981,14 +80837,14 @@ ], "license_file": null }, - "wasmtime-slab 28.0.1": { + "wasmtime-slab 28.0.0": { "name": "wasmtime-slab", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-slab/28.0.1/download", - "sha256": "564905638c132c275d365c1fa074f0b499790568f43148d29de84ccecfb5cb31" + "url": "https://static.crates.io/crates/wasmtime-slab/28.0.0/download", + "sha256": "8579c335220b4ece9aa490a0e8b46de78cd342b195ab21ff981d095e14b52383" } }, "targets": [ @@ -81011,7 +80867,7 @@ "**" ], "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -81019,14 +80875,14 @@ ], "license_file": null }, - "wasmtime-versioned-export-macros 28.0.1": { + "wasmtime-versioned-export-macros 28.0.0": { "name": "wasmtime-versioned-export-macros", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-versioned-export-macros/28.0.1/download", - "sha256": "1e91092e6cf77390eeccee273846a9327f3e8f91c3c6280f60f37809f0e62d29" + "url": "https://static.crates.io/crates/wasmtime-versioned-export-macros/28.0.0/download", + "sha256": "d7de0a56fb0a69b185968f2d7a9ba54750920a806470dff7ad8de91ac06d277e" } }, "targets": [ @@ -81051,22 +80907,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -81074,14 +80930,14 @@ ], "license_file": null }, - "wasmtime-winch 28.0.1": { + "wasmtime-winch 28.0.0": { "name": "wasmtime-winch", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-winch/28.0.1/download", - "sha256": "b111d909dc604c741bd8ac2f4af373eaa5c68c34b5717271bcb687688212cef8" + "url": "https://static.crates.io/crates/wasmtime-winch/28.0.0/download", + "sha256": "abd309943c443f5590d12f9aba9ba63c481091c955a0a14de0c2a9e0e3aaeca9" } }, "targets": [ @@ -81106,11 +80962,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "cranelift-codegen 0.115.1", + "id": "cranelift-codegen 0.115.0", "target": "cranelift_codegen" }, { @@ -81130,22 +80986,22 @@ "target": "wasmparser" }, { - "id": "wasmtime-cranelift 28.0.1", + "id": "wasmtime-cranelift 28.0.0", "target": "wasmtime_cranelift" }, { - "id": "wasmtime-environ 28.0.1", + "id": "wasmtime-environ 28.0.0", "target": "wasmtime_environ" }, { - "id": "winch-codegen 28.0.1", + "id": "winch-codegen 28.0.0", "target": "winch_codegen" } ], "selects": {} }, "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -81153,14 +81009,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-wit-bindgen 28.0.1": { + "wasmtime-wit-bindgen 28.0.0": { "name": "wasmtime-wit-bindgen", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-wit-bindgen/28.0.1/download", - "sha256": "5f38f7a5eb2f06f53fe943e7fb8bf4197f7cf279f1bc52c0ce56e9d3ffd750a4" + "url": "https://static.crates.io/crates/wasmtime-wit-bindgen/28.0.0/download", + "sha256": "969f83022dac3435d6469edb582ceed04cfe32aa44dc3ef16e5cb55574633df8" } }, "targets": [ @@ -81185,7 +81041,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -81193,7 +81049,7 @@ "target": "heck" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { @@ -81204,7 +81060,7 @@ "selects": {} }, "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -81259,11 +81115,11 @@ "target": "leb128" }, { - "id": "memchr 2.7.4", + "id": "memchr 2.6.4", "target": "memchr" }, { - "id": "unicode-width 0.1.14", + "id": "unicode-width 0.1.11", "target": "unicode_width" }, { @@ -81282,85 +81138,14 @@ ], "license_file": "LICENSE" }, - "wast 223.0.0": { - "name": "wast", - "version": "223.0.0", - "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wast", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wast/223.0.0/download", - "sha256": "d59b2ba8a2ff9f06194b7be9524f92e45e70149f4dacc0d0c7ad92b59ac875e4" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wast", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wast", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "component-model", - "wasm-module" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bumpalo 3.16.0", - "target": "bumpalo" - }, - { - "id": "leb128 0.2.5", - "target": "leb128" - }, - { - "id": "memchr 2.7.4", - "target": "memchr" - }, - { - "id": "unicode-width 0.2.0", - "target": "unicode_width" - }, - { - "id": "wasm-encoder 0.223.0", - "target": "wasm_encoder" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "223.0.0" - }, - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": null - }, - "wat 1.223.0": { + "wat 1.212.0": { "name": "wat", - "version": "1.223.0", + "version": "1.212.0", "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wat", "repository": { "Http": { - "url": "https://static.crates.io/crates/wat/1.223.0/download", - "sha256": "662786915c427e4918ff01eabb3c4756d4d947cd8f635761526b4cc9da2eaaad" + "url": "https://static.crates.io/crates/wat/1.212.0/download", + "sha256": "c74ca7f93f11a5d6eed8499f2a8daaad6e225cab0151bc25a091fff3b987532f" } }, "targets": [ @@ -81382,40 +81167,32 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "component-model", - "default" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "wast 223.0.0", + "id": "wast 212.0.0", "target": "wast" } ], "selects": {} }, "edition": "2021", - "version": "1.223.0" + "version": "1.212.0" }, - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ - "Apache-2.0", - "MIT" + "Apache-2.0" ], - "license_file": null + "license_file": "LICENSE" }, - "web-sys 0.3.77": { + "web-sys 0.3.64": { "name": "web-sys", - "version": "0.3.77", + "version": "0.3.64", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/web-sys/0.3.77/download", - "sha256": "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" + "url": "https://static.crates.io/crates/web-sys/0.3.64/download", + "sha256": "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" } }, "targets": [ @@ -81475,9 +81252,7 @@ "WorkerGlobalScope", "WritableStream", "WritableStreamDefaultController", - "WritableStreamDefaultWriter", - "default", - "std" + "WritableStreamDefaultWriter" ], "selects": { "wasm32-unknown-unknown": [ @@ -81497,20 +81272,20 @@ "deps": { "common": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], "selects": {} }, - "edition": "2021", - "version": "0.3.77" + "edition": "2018", + "version": "0.3.64" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -81551,11 +81326,11 @@ "selects": { "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ] @@ -81571,14 +81346,14 @@ ], "license_file": "LICENSE-APACHE" }, - "webpki-root-certs 0.26.7": { + "webpki-root-certs 0.26.6": { "name": "webpki-root-certs", - "version": "0.26.7", + "version": "0.26.6", "package_url": "https://github.com/rustls/webpki-roots", "repository": { "Http": { - "url": "https://static.crates.io/crates/webpki-root-certs/0.26.7/download", - "sha256": "9cd5da49bdf1f30054cfe0b8ce2958b8fbeb67c4d82c8967a598af481bef255c" + "url": "https://static.crates.io/crates/webpki-root-certs/0.26.6/download", + "sha256": "e8c6dfa3ac045bc517de14c7b1384298de1dbd229d38e08e169d9ae8c170937c" } }, "targets": [ @@ -81603,7 +81378,7 @@ "deps": { "common": [ { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" } @@ -81611,7 +81386,7 @@ "selects": {} }, "edition": "2018", - "version": "0.26.7" + "version": "0.26.6" }, "license": "MPL-2.0", "license_ids": [ @@ -81619,14 +81394,14 @@ ], "license_file": "LICENSE" }, - "webpki-roots 0.25.4": { + "webpki-roots 0.25.2": { "name": "webpki-roots", - "version": "0.25.4", + "version": "0.25.2", "package_url": "https://github.com/rustls/webpki-roots", "repository": { "Http": { - "url": "https://static.crates.io/crates/webpki-roots/0.25.4/download", - "sha256": "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" + "url": "https://static.crates.io/crates/webpki-roots/0.25.2/download", + "sha256": "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" } }, "targets": [ @@ -81649,7 +81424,7 @@ "**" ], "edition": "2018", - "version": "0.25.4" + "version": "0.25.2" }, "license": "MPL-2.0", "license_ids": [ @@ -81657,14 +81432,14 @@ ], "license_file": "LICENSE" }, - "webpki-roots 0.26.7": { + "webpki-roots 0.26.1": { "name": "webpki-roots", - "version": "0.26.7", + "version": "0.26.1", "package_url": "https://github.com/rustls/webpki-roots", "repository": { "Http": { - "url": "https://static.crates.io/crates/webpki-roots/0.26.7/download", - "sha256": "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e" + "url": "https://static.crates.io/crates/webpki-roots/0.26.1/download", + "sha256": "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" } }, "targets": [ @@ -81689,7 +81464,7 @@ "deps": { "common": [ { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" } @@ -81697,7 +81472,7 @@ "selects": {} }, "edition": "2018", - "version": "0.26.7" + "version": "0.26.1" }, "license": "MPL-2.0", "license_ids": [ @@ -81771,7 +81546,7 @@ "selects": { "cfg(all(unix, not(target_arch = \"wasm32\")))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -81832,24 +81607,24 @@ "deps": { "common": [ { - "id": "either 1.13.0", + "id": "either 1.9.0", "target": "either" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "selects": { "cfg(any(windows, unix, target_os = \"redox\"))": [ { - "id": "home 0.5.11", + "id": "home 0.5.5", "target": "home" } ], "cfg(windows)": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ] @@ -81864,14 +81639,14 @@ ], "license_file": "LICENSE.txt" }, - "widestring 1.1.0": { + "widestring 1.0.2": { "name": "widestring", - "version": "1.1.0", + "version": "1.0.2", "package_url": "https://github.com/starkat99/widestring-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/widestring/1.1.0/download", - "sha256": "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" + "url": "https://static.crates.io/crates/widestring/1.0.2/download", + "sha256": "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" } }, "targets": [ @@ -81902,7 +81677,7 @@ "selects": {} }, "edition": "2021", - "version": "1.1.0" + "version": "1.0.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -81994,6 +81769,7 @@ "common": [ "consoleapi", "errhandlingapi", + "fibersapi", "fileapi", "handleapi", "impl-default", @@ -82012,6 +81788,7 @@ "profileapi", "psapi", "shlobj", + "std", "synchapi", "sysinfoapi", "winbase", @@ -82134,14 +81911,14 @@ ], "license_file": null }, - "winapi-util 0.1.9": { + "winapi-util 0.1.6": { "name": "winapi-util", - "version": "0.1.9", + "version": "0.1.6", "package_url": "https://github.com/BurntSushi/winapi-util", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi-util/0.1.9/download", - "sha256": "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" + "url": "https://static.crates.io/crates/winapi-util/0.1.6/download", + "sha256": "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" } }, "targets": [ @@ -82168,16 +81945,16 @@ "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.59.0", - "target": "windows_sys" + "id": "winapi 0.3.9", + "target": "winapi" } ] } }, "edition": "2021", - "version": "0.1.9" + "version": "0.1.6" }, - "license": "Unlicense OR MIT", + "license": "Unlicense/MIT", "license_ids": [ "MIT", "Unlicense" @@ -82252,14 +82029,14 @@ ], "license_file": null }, - "winch-codegen 28.0.1": { + "winch-codegen 28.0.0": { "name": "winch-codegen", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/winch-codegen/28.0.1/download", - "sha256": "6232f40a795be2ce10fc761ed3b403825126a60d12491ac556ea104a932fd18a" + "url": "https://static.crates.io/crates/winch-codegen/28.0.0/download", + "sha256": "9110decc2983ed94de904804dcd979ba59cbabc78a94fec6b1d8468ec513d0f6" } }, "targets": [ @@ -82296,11 +82073,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "cranelift-codegen 0.115.1", + "id": "cranelift-codegen 0.115.0", "target": "cranelift_codegen" }, { @@ -82324,22 +82101,22 @@ "target": "wasmparser" }, { - "id": "wasmtime-cranelift 28.0.1", + "id": "wasmtime-cranelift 28.0.0", "target": "wasmtime_cranelift" }, { - "id": "wasmtime-environ 28.0.1", + "id": "wasmtime-environ 28.0.0", "target": "wasmtime_environ" }, { - "id": "winch-codegen 28.0.1", + "id": "winch-codegen 28.0.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -82355,58 +82132,6 @@ ], "license_file": "LICENSE" }, - "windows 0.58.0": { - "name": "windows", - "version": "0.58.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows/0.58.0/download", - "sha256": "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows-core 0.58.0", - "target": "windows_core" - }, - { - "id": "windows-targets 0.52.6", - "target": "windows_targets" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.58.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, "windows-core 0.52.0": { "name": "windows-core", "version": "0.52.0", @@ -82455,20 +82180,20 @@ ], "license_file": "license-apache-2.0" }, - "windows-core 0.58.0": { - "name": "windows-core", - "version": "0.58.0", + "windows-registry 0.2.0": { + "name": "windows-registry", + "version": "0.2.0", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-core/0.58.0/download", - "sha256": "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" + "url": "https://static.crates.io/crates/windows-registry/0.2.0/download", + "sha256": "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" } }, "targets": [ { "Library": { - "crate_name": "windows_core", + "crate_name": "windows_registry", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -82479,7 +82204,7 @@ } } ], - "library_target_name": "windows_core", + "library_target_name": "windows_registry", "common_attrs": { "compile_data_glob": [ "**" @@ -82502,76 +82227,7 @@ "selects": {} }, "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "windows-implement 0.58.0", - "target": "windows_implement" - }, - { - "id": "windows-interface 0.58.0", - "target": "windows_interface" - } - ], - "selects": {} - }, - "version": "0.58.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-implement 0.58.0": { - "name": "windows-implement", - "version": "0.58.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-implement/0.58.0/download", - "sha256": "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "windows_implement", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_implement", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.93", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.38", - "target": "quote" - }, - { - "id": "syn 2.0.96", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.58.0" + "version": "0.2.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -82580,20 +82236,20 @@ ], "license_file": "license-apache-2.0" }, - "windows-interface 0.58.0": { - "name": "windows-interface", - "version": "0.58.0", + "windows-result 0.2.0": { + "name": "windows-result", + "version": "0.2.0", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-interface/0.58.0/download", - "sha256": "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" + "url": "https://static.crates.io/crates/windows-result/0.2.0/download", + "sha256": "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" } }, "targets": [ { - "ProcMacro": { - "crate_name": "windows_interface", + "Library": { + "crate_name": "windows_result", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -82604,77 +82260,20 @@ } } ], - "library_target_name": "windows_interface", + "library_target_name": "windows_result", "common_attrs": { "compile_data_glob": [ "**" ], - "deps": { + "crate_features": { "common": [ - { - "id": "proc-macro2 1.0.93", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.38", - "target": "quote" - }, - { - "id": "syn 2.0.96", - "target": "syn" - } + "default", + "std" ], "selects": {} }, - "edition": "2021", - "version": "0.58.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-registry 0.2.0": { - "name": "windows-registry", - "version": "0.2.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-registry/0.2.0/download", - "sha256": "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_registry", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_registry", - "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [ - { - "id": "windows-result 0.2.0", - "target": "windows_result" - }, - { - "id": "windows-strings 0.1.0", - "target": "windows_strings" - }, { "id": "windows-targets 0.52.6", "target": "windows_targets" @@ -82692,20 +82291,20 @@ ], "license_file": "license-apache-2.0" }, - "windows-result 0.2.0": { - "name": "windows-result", - "version": "0.2.0", + "windows-strings 0.1.0": { + "name": "windows-strings", + "version": "0.1.0", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-result/0.2.0/download", - "sha256": "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" + "url": "https://static.crates.io/crates/windows-strings/0.1.0/download", + "sha256": "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" } }, "targets": [ { "Library": { - "crate_name": "windows_result", + "crate_name": "windows_strings", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -82716,7 +82315,7 @@ } } ], - "library_target_name": "windows_result", + "library_target_name": "windows_strings", "common_attrs": { "compile_data_glob": [ "**" @@ -82730,6 +82329,10 @@ }, "deps": { "common": [ + { + "id": "windows-result 0.2.0", + "target": "windows_result" + }, { "id": "windows-targets 0.52.6", "target": "windows_targets" @@ -82738,7 +82341,7 @@ "selects": {} }, "edition": "2021", - "version": "0.2.0" + "version": "0.1.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -82747,20 +82350,20 @@ ], "license_file": "license-apache-2.0" }, - "windows-strings 0.1.0": { - "name": "windows-strings", - "version": "0.1.0", + "windows-sys 0.45.0": { + "name": "windows-sys", + "version": "0.45.0", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-strings/0.1.0/download", - "sha256": "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" + "url": "https://static.crates.io/crates/windows-sys/0.45.0/download", + "sha256": "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" } }, "targets": [ { "Library": { - "crate_name": "windows_strings", + "crate_name": "windows_sys", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -82771,33 +82374,39 @@ } } ], - "library_target_name": "windows_strings", + "library_target_name": "windows_sys", "common_attrs": { "compile_data_glob": [ "**" ], "crate_features": { "common": [ - "default", - "std" + "Win32", + "Win32_Foundation", + "Win32_Storage", + "Win32_Storage_FileSystem", + "Win32_System", + "Win32_System_Console", + "Win32_UI", + "Win32_UI_Input", + "Win32_UI_Input_KeyboardAndMouse", + "default" ], "selects": {} }, "deps": { - "common": [ - { - "id": "windows-result 0.2.0", - "target": "windows_result" - }, - { - "id": "windows-targets 0.52.6", - "target": "windows_targets" - } - ], - "selects": {} + "common": [], + "selects": { + "cfg(not(windows_raw_dylib))": [ + { + "id": "windows-targets 0.42.2", + "target": "windows_targets" + } + ] + } }, - "edition": "2021", - "version": "0.1.0" + "edition": "2018", + "version": "0.45.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -82845,18 +82454,30 @@ "Win32_Networking", "Win32_Networking_WinSock", "Win32_Security", + "Win32_Security_Authentication", + "Win32_Security_Authentication_Identity", + "Win32_Security_Credentials", + "Win32_Security_Cryptography", "Win32_Storage", "Win32_Storage_FileSystem", "Win32_System", "Win32_System_Console", "Win32_System_Diagnostics", "Win32_System_Diagnostics_Debug", + "Win32_System_IO", "Win32_System_Memory", "Win32_System_Registry", "Win32_System_Time", + "Win32_System_WindowsProgramming", + "Win32_UI", + "Win32_UI_Shell", "default" ], - "selects": {} + "selects": { + "aarch64-pc-windows-msvc": [ + "Win32_System_Threading" + ] + } }, "deps": { "common": [ @@ -82916,6 +82537,8 @@ "Wdk_System_IO", "Win32", "Win32_Foundation", + "Win32_NetworkManagement", + "Win32_NetworkManagement_IpHelper", "Win32_Networking", "Win32_Networking_WinSock", "Win32_Security", @@ -82924,6 +82547,8 @@ "Win32_Storage_FileSystem", "Win32_System", "Win32_System_Console", + "Win32_System_Diagnostics", + "Win32_System_Diagnostics_Debug", "Win32_System_IO", "Win32_System_Pipes", "Win32_System_SystemServices", @@ -82989,19 +82614,12 @@ "Wdk_Storage_FileSystem", "Win32", "Win32_Foundation", - "Win32_NetworkManagement", - "Win32_NetworkManagement_IpHelper", "Win32_Networking", "Win32_Networking_WinSock", "Win32_Security", - "Win32_Security_Authentication", - "Win32_Security_Authentication_Identity", - "Win32_Security_Credentials", - "Win32_Security_Cryptography", "Win32_Storage", "Win32_Storage_FileSystem", "Win32_System", - "Win32_System_Com", "Win32_System_Console", "Win32_System_Diagnostics", "Win32_System_Diagnostics_Debug", @@ -83012,10 +82630,6 @@ "Win32_System_SystemInformation", "Win32_System_Threading", "Win32_System_WindowsProgramming", - "Win32_UI", - "Win32_UI_Input", - "Win32_UI_Input_KeyboardAndMouse", - "Win32_UI_Shell", "default" ], "selects": {} @@ -83039,14 +82653,14 @@ ], "license_file": "license-apache-2.0" }, - "windows-targets 0.48.5": { + "windows-targets 0.42.2": { "name": "windows-targets", - "version": "0.48.5", + "version": "0.42.2", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-targets/0.48.5/download", - "sha256": "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" + "url": "https://static.crates.io/crates/windows-targets/0.42.2/download", + "sha256": "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" } }, "targets": [ @@ -83073,50 +82687,80 @@ "selects": { "aarch64-pc-windows-gnullvm": [ { - "id": "windows_aarch64_gnullvm 0.48.5", + "id": "windows_aarch64_gnullvm 0.42.2", "target": "windows_aarch64_gnullvm" } ], - "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ + "aarch64-pc-windows-msvc": [ { - "id": "windows_aarch64_msvc 0.48.5", + "id": "windows_aarch64_msvc 0.42.2", "target": "windows_aarch64_msvc" } ], - "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))": [ + "aarch64-uwp-windows-msvc": [ { - "id": "windows_i686_gnu 0.48.5", + "id": "windows_aarch64_msvc 0.42.2", + "target": "windows_aarch64_msvc" + } + ], + "i686-pc-windows-gnu": [ + { + "id": "windows_i686_gnu 0.42.2", "target": "windows_i686_gnu" } ], - "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [ + "i686-pc-windows-msvc": [ { - "id": "windows_i686_msvc 0.48.5", + "id": "windows_i686_msvc 0.42.2", "target": "windows_i686_msvc" } ], - "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ + "i686-uwp-windows-gnu": [ { - "id": "windows_x86_64_gnu 0.48.5", - "target": "windows_x86_64_gnu" + "id": "windows_i686_gnu 0.42.2", + "target": "windows_i686_gnu" } ], - "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ + "i686-uwp-windows-msvc": [ { - "id": "windows_x86_64_msvc 0.48.5", - "target": "windows_x86_64_msvc" + "id": "windows_i686_msvc 0.42.2", + "target": "windows_i686_msvc" + } + ], + "x86_64-pc-windows-gnu": [ + { + "id": "windows_x86_64_gnu 0.42.2", + "target": "windows_x86_64_gnu" } ], "x86_64-pc-windows-gnullvm": [ { - "id": "windows_x86_64_gnullvm 0.48.5", + "id": "windows_x86_64_gnullvm 0.42.2", "target": "windows_x86_64_gnullvm" } + ], + "x86_64-pc-windows-msvc": [ + { + "id": "windows_x86_64_msvc 0.42.2", + "target": "windows_x86_64_msvc" + } + ], + "x86_64-uwp-windows-gnu": [ + { + "id": "windows_x86_64_gnu 0.42.2", + "target": "windows_x86_64_gnu" + } + ], + "x86_64-uwp-windows-msvc": [ + { + "id": "windows_x86_64_msvc 0.42.2", + "target": "windows_x86_64_msvc" + } ] } }, "edition": "2018", - "version": "0.48.5" + "version": "0.42.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -83125,14 +82769,100 @@ ], "license_file": "license-apache-2.0" }, - "windows-targets 0.52.6": { + "windows-targets 0.48.5": { "name": "windows-targets", - "version": "0.52.6", + "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-targets/0.52.6/download", - "sha256": "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" + "url": "https://static.crates.io/crates/windows-targets/0.48.5/download", + "sha256": "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_targets", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_targets", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [], + "selects": { + "aarch64-pc-windows-gnullvm": [ + { + "id": "windows_aarch64_gnullvm 0.48.5", + "target": "windows_aarch64_gnullvm" + } + ], + "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ + { + "id": "windows_aarch64_msvc 0.48.5", + "target": "windows_aarch64_msvc" + } + ], + "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))": [ + { + "id": "windows_i686_gnu 0.48.5", + "target": "windows_i686_gnu" + } + ], + "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [ + { + "id": "windows_i686_msvc 0.48.5", + "target": "windows_i686_msvc" + } + ], + "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ + { + "id": "windows_x86_64_gnu 0.48.5", + "target": "windows_x86_64_gnu" + } + ], + "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ + { + "id": "windows_x86_64_msvc 0.48.5", + "target": "windows_x86_64_msvc" + } + ], + "x86_64-pc-windows-gnullvm": [ + { + "id": "windows_x86_64_gnullvm 0.48.5", + "target": "windows_x86_64_gnullvm" + } + ] + } + }, + "edition": "2018", + "version": "0.48.5" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows-targets 0.52.6": { + "name": "windows-targets", + "version": "0.52.6", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows-targets/0.52.6/download", + "sha256": "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" } }, "targets": [ @@ -83217,6 +82947,74 @@ ], "license_file": "license-apache-2.0" }, + "windows_aarch64_gnullvm 0.42.2": { + "name": "windows_aarch64_gnullvm", + "version": "0.42.2", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.42.2/download", + "sha256": "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_aarch64_gnullvm", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_aarch64_gnullvm", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_aarch64_gnullvm 0.42.2", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.42.2" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, "windows_aarch64_gnullvm 0.48.5": { "name": "windows_aarch64_gnullvm", "version": "0.48.5", @@ -83353,6 +83151,74 @@ ], "license_file": "license-apache-2.0" }, + "windows_aarch64_msvc 0.42.2": { + "name": "windows_aarch64_msvc", + "version": "0.42.2", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.42.2/download", + "sha256": "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_aarch64_msvc", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_aarch64_msvc", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_aarch64_msvc 0.42.2", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.42.2" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, "windows_aarch64_msvc 0.48.5": { "name": "windows_aarch64_msvc", "version": "0.48.5", @@ -83389,7 +83255,143 @@ } } ], - "library_target_name": "windows_aarch64_msvc", + "library_target_name": "windows_aarch64_msvc", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_aarch64_msvc 0.48.5", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.48.5" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows_aarch64_msvc 0.52.6": { + "name": "windows_aarch64_msvc", + "version": "0.52.6", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download", + "sha256": "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_aarch64_msvc", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_aarch64_msvc", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_aarch64_msvc 0.52.6", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.52.6" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows_i686_gnu 0.42.2": { + "name": "windows_i686_gnu", + "version": "0.42.2", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_i686_gnu/0.42.2/download", + "sha256": "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_i686_gnu", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_i686_gnu", "common_attrs": { "compile_data_glob": [ "**" @@ -83397,14 +83399,14 @@ "deps": { "common": [ { - "id": "windows_aarch64_msvc 0.48.5", + "id": "windows_i686_gnu 0.42.2", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.48.5" + "version": "0.42.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -83421,20 +83423,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_aarch64_msvc 0.52.6": { - "name": "windows_aarch64_msvc", - "version": "0.52.6", + "windows_i686_gnu 0.48.5": { + "name": "windows_i686_gnu", + "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download", - "sha256": "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + "url": "https://static.crates.io/crates/windows_i686_gnu/0.48.5/download", + "sha256": "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" } }, "targets": [ { "Library": { - "crate_name": "windows_aarch64_msvc", + "crate_name": "windows_i686_gnu", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -83457,7 +83459,7 @@ } } ], - "library_target_name": "windows_aarch64_msvc", + "library_target_name": "windows_i686_gnu", "common_attrs": { "compile_data_glob": [ "**" @@ -83465,14 +83467,14 @@ "deps": { "common": [ { - "id": "windows_aarch64_msvc 0.52.6", + "id": "windows_i686_gnu 0.48.5", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.52.6" + "edition": "2018", + "version": "0.48.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -83489,14 +83491,14 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_gnu 0.48.5": { + "windows_i686_gnu 0.52.6": { "name": "windows_i686_gnu", - "version": "0.48.5", + "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.48.5/download", - "sha256": "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + "url": "https://static.crates.io/crates/windows_i686_gnu/0.52.6/download", + "sha256": "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" } }, "targets": [ @@ -83533,14 +83535,14 @@ "deps": { "common": [ { - "id": "windows_i686_gnu 0.48.5", + "id": "windows_i686_gnu 0.52.6", "target": "build_script_build" } ], "selects": {} }, - "edition": "2018", - "version": "0.48.5" + "edition": "2021", + "version": "0.52.6" }, "build_script_attrs": { "compile_data_glob": [ @@ -83557,20 +83559,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_gnu 0.52.6": { - "name": "windows_i686_gnu", + "windows_i686_gnullvm 0.52.6": { + "name": "windows_i686_gnullvm", "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.52.6/download", - "sha256": "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + "url": "https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download", + "sha256": "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_gnu", + "crate_name": "windows_i686_gnullvm", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -83593,7 +83595,7 @@ } } ], - "library_target_name": "windows_i686_gnu", + "library_target_name": "windows_i686_gnullvm", "common_attrs": { "compile_data_glob": [ "**" @@ -83601,7 +83603,7 @@ "deps": { "common": [ { - "id": "windows_i686_gnu 0.52.6", + "id": "windows_i686_gnullvm 0.52.6", "target": "build_script_build" } ], @@ -83625,20 +83627,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_gnullvm 0.52.6": { - "name": "windows_i686_gnullvm", - "version": "0.52.6", + "windows_i686_msvc 0.42.2": { + "name": "windows_i686_msvc", + "version": "0.42.2", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download", - "sha256": "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + "url": "https://static.crates.io/crates/windows_i686_msvc/0.42.2/download", + "sha256": "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_gnullvm", + "crate_name": "windows_i686_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -83661,7 +83663,7 @@ } } ], - "library_target_name": "windows_i686_gnullvm", + "library_target_name": "windows_i686_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -83669,14 +83671,14 @@ "deps": { "common": [ { - "id": "windows_i686_gnullvm 0.52.6", + "id": "windows_i686_msvc 0.42.2", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.52.6" + "edition": "2018", + "version": "0.42.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -83829,6 +83831,74 @@ ], "license_file": "license-apache-2.0" }, + "windows_x86_64_gnu 0.42.2": { + "name": "windows_x86_64_gnu", + "version": "0.42.2", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.42.2/download", + "sha256": "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_x86_64_gnu", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_x86_64_gnu", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_x86_64_gnu 0.42.2", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.42.2" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, "windows_x86_64_gnu 0.48.5": { "name": "windows_x86_64_gnu", "version": "0.48.5", @@ -83965,6 +84035,74 @@ ], "license_file": "license-apache-2.0" }, + "windows_x86_64_gnullvm 0.42.2": { + "name": "windows_x86_64_gnullvm", + "version": "0.42.2", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.42.2/download", + "sha256": "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_x86_64_gnullvm", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_x86_64_gnullvm", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_x86_64_gnullvm 0.42.2", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.42.2" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, "windows_x86_64_gnullvm 0.48.5": { "name": "windows_x86_64_gnullvm", "version": "0.48.5", @@ -84009,14 +84147,82 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnullvm 0.48.5", + "id": "windows_x86_64_gnullvm 0.48.5", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.48.5" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows_x86_64_gnullvm 0.52.6": { + "name": "windows_x86_64_gnullvm", + "version": "0.52.6", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.52.6/download", + "sha256": "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_x86_64_gnullvm", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_x86_64_gnullvm", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_x86_64_gnullvm 0.52.6", "target": "build_script_build" } ], "selects": {} }, - "edition": "2018", - "version": "0.48.5" + "edition": "2021", + "version": "0.52.6" }, "build_script_attrs": { "compile_data_glob": [ @@ -84033,20 +84239,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_gnullvm 0.52.6": { - "name": "windows_x86_64_gnullvm", - "version": "0.52.6", + "windows_x86_64_msvc 0.42.2": { + "name": "windows_x86_64_msvc", + "version": "0.42.2", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.52.6/download", - "sha256": "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.42.2/download", + "sha256": "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_gnullvm", + "crate_name": "windows_x86_64_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -84069,7 +84275,7 @@ } } ], - "library_target_name": "windows_x86_64_gnullvm", + "library_target_name": "windows_x86_64_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -84077,14 +84283,14 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnullvm 0.52.6", + "id": "windows_x86_64_msvc 0.42.2", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.52.6" + "edition": "2018", + "version": "0.42.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -84237,14 +84443,60 @@ ], "license_file": "license-apache-2.0" }, - "winnow 0.6.24": { + "winnow 0.5.17": { + "name": "winnow", + "version": "0.5.17", + "package_url": "https://github.com/winnow-rs/winnow", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/winnow/0.5.17/download", + "sha256": "a3b801d0e0a6726477cc207f60162da452f3a95adb368399bef20a946e06f65c" + } + }, + "targets": [ + { + "Library": { + "crate_name": "winnow", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "winnow", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc", + "default", + "std" + ], + "selects": {} + }, + "edition": "2021", + "version": "0.5.17" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE-MIT" + }, + "winnow 0.6.20": { "name": "winnow", - "version": "0.6.24", + "version": "0.6.20", "package_url": "https://github.com/winnow-rs/winnow", "repository": { "Http": { - "url": "https://static.crates.io/crates/winnow/0.6.24/download", - "sha256": "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a" + "url": "https://static.crates.io/crates/winnow/0.6.20/download", + "sha256": "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" } }, "targets": [ @@ -84275,7 +84527,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.24" + "version": "0.6.20" }, "license": "MIT", "license_ids": [ @@ -84375,7 +84627,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -84383,15 +84635,15 @@ "target": "id_arena" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -84399,11 +84651,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "unicode-xid 0.2.6", + "id": "unicode-xid 0.2.4", "target": "unicode_xid" }, { @@ -84633,7 +84885,7 @@ "deps": { "common": [ { - "id": "data-encoding 2.7.0", + "id": "data-encoding 2.4.0", "target": "data_encoding" }, { @@ -84641,7 +84893,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -84747,11 +84999,11 @@ "deps": { "common": [ { - "id": "const-oid 0.9.6", + "id": "const-oid 0.9.5", "target": "const_oid" }, { - "id": "der 0.7.9", + "id": "der 0.7.8", "target": "der" }, { @@ -84817,11 +85069,11 @@ "deps": { "common": [ { - "id": "asn1-rs 0.6.2", + "id": "asn1-rs 0.6.1", "target": "asn1_rs" }, { - "id": "data-encoding 2.7.0", + "id": "data-encoding 2.4.0", "target": "data_encoding" }, { @@ -84829,7 +85081,7 @@ "target": "der_parser" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -84837,7 +85089,7 @@ "target": "nom" }, { - "id": "oid-registry 0.7.1", + "id": "oid-registry 0.7.0", "target": "oid_registry" }, { @@ -84845,11 +85097,11 @@ "target": "rusticata_macros" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -84865,14 +85117,14 @@ ], "license_file": "LICENSE-APACHE" }, - "xattr 1.4.0": { + "xattr 0.2.3": { "name": "xattr", - "version": "1.4.0", + "version": "0.2.3", "package_url": "https://github.com/Stebalien/xattr", "repository": { "Http": { - "url": "https://static.crates.io/crates/xattr/1.4.0/download", - "sha256": "e105d177a3871454f754b33bb0ee637ecaaac997446375fd3e5d43a2ed00c909" + "url": "https://static.crates.io/crates/xattr/0.2.3/download", + "sha256": "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" } }, "targets": [ @@ -84904,27 +85156,14 @@ "deps": { "common": [ { - "id": "rustix 0.38.43", - "target": "rustix" + "id": "libc 0.2.158", + "target": "libc" } ], - "selects": { - "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))": [ - { - "id": "libc 0.2.169", - "target": "libc" - } - ], - "cfg(target_os = \"linux\")": [ - { - "id": "linux-raw-sys 0.4.15", - "target": "linux_raw_sys" - } - ] - } + "selects": {} }, - "edition": "2021", - "version": "1.4.0" + "edition": "2015", + "version": "0.2.3" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -85068,53 +85307,6 @@ ], "license_file": "LICENSE-APACHE" }, - "yansi 1.0.1": { - "name": "yansi", - "version": "1.0.1", - "package_url": "https://github.com/SergioBenitez/yansi", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/yansi/1.0.1/download", - "sha256": "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" - } - }, - "targets": [ - { - "Library": { - "crate_name": "yansi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "yansi", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "yasna 0.5.2": { "name": "yasna", "version": "0.5.2", @@ -85155,7 +85347,7 @@ "deps": { "common": [ { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -85171,14 +85363,14 @@ ], "license_file": null }, - "yoke 0.7.5": { + "yoke 0.7.4": { "name": "yoke", - "version": "0.7.5", + "version": "0.7.4", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/yoke/0.7.5/download", - "sha256": "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" + "url": "https://static.crates.io/crates/yoke/0.7.4/download", + "sha256": "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" } }, "targets": [ @@ -85216,7 +85408,7 @@ "target": "stable_deref_trait" }, { - "id": "zerofrom 0.1.5", + "id": "zerofrom 0.1.4", "target": "zerofrom" } ], @@ -85226,13 +85418,13 @@ "proc_macro_deps": { "common": [ { - "id": "yoke-derive 0.7.5", + "id": "yoke-derive 0.7.4", "target": "yoke_derive" } ], "selects": {} }, - "version": "0.7.5" + "version": "0.7.4" }, "license": "Unicode-3.0", "license_ids": [ @@ -85240,14 +85432,14 @@ ], "license_file": "LICENSE" }, - "yoke-derive 0.7.5": { + "yoke-derive 0.7.4": { "name": "yoke-derive", - "version": "0.7.5", + "version": "0.7.4", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/yoke-derive/0.7.5/download", - "sha256": "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" + "url": "https://static.crates.io/crates/yoke-derive/0.7.4/download", + "sha256": "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" } }, "targets": [ @@ -85272,15 +85464,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" }, { @@ -85291,7 +85483,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.5" + "version": "0.7.4" }, "license": "Unicode-3.0", "license_ids": [ @@ -85299,14 +85491,14 @@ ], "license_file": "LICENSE" }, - "zerocopy 0.7.35": { + "zerocopy 0.7.32": { "name": "zerocopy", - "version": "0.7.35", + "version": "0.7.32", "package_url": "https://github.com/google/zerocopy", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerocopy/0.7.35/download", - "sha256": "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" + "url": "https://static.crates.io/crates/zerocopy/0.7.32/download", + "sha256": "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" } }, "targets": [ @@ -85330,34 +85522,23 @@ ], "crate_features": { "common": [ - "byteorder", - "default", - "derive", - "simd", - "zerocopy-derive" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "byteorder 1.5.0", - "target": "byteorder" - } + "simd" ], "selects": {} }, "edition": "2018", "proc_macro_deps": { - "common": [ - { - "id": "zerocopy-derive 0.7.35", - "target": "zerocopy_derive" - } - ], - "selects": {} + "common": [], + "selects": { + "cfg(any())": [ + { + "id": "zerocopy-derive 0.7.32", + "target": "zerocopy_derive" + } + ] + } }, - "version": "0.7.35" + "version": "0.7.32" }, "license": "BSD-2-Clause OR Apache-2.0 OR MIT", "license_ids": [ @@ -85367,14 +85548,14 @@ ], "license_file": "LICENSE-APACHE" }, - "zerocopy-derive 0.7.35": { + "zerocopy-derive 0.7.32": { "name": "zerocopy-derive", - "version": "0.7.35", + "version": "0.7.32", "package_url": "https://github.com/google/zerocopy", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerocopy-derive/0.7.35/download", - "sha256": "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" + "url": "https://static.crates.io/crates/zerocopy-derive/0.7.32/download", + "sha256": "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" } }, "targets": [ @@ -85399,22 +85580,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.7.35" + "version": "0.7.32" }, "license": "BSD-2-Clause OR Apache-2.0 OR MIT", "license_ids": [ @@ -85424,14 +85605,14 @@ ], "license_file": "LICENSE-APACHE" }, - "zerofrom 0.1.5": { + "zerofrom 0.1.4": { "name": "zerofrom", - "version": "0.1.5", + "version": "0.1.4", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerofrom/0.1.5/download", - "sha256": "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" + "url": "https://static.crates.io/crates/zerofrom/0.1.4/download", + "sha256": "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" } }, "targets": [ @@ -85464,13 +85645,13 @@ "proc_macro_deps": { "common": [ { - "id": "zerofrom-derive 0.1.5", + "id": "zerofrom-derive 0.1.4", "target": "zerofrom_derive" } ], "selects": {} }, - "version": "0.1.5" + "version": "0.1.4" }, "license": "Unicode-3.0", "license_ids": [ @@ -85478,14 +85659,14 @@ ], "license_file": "LICENSE" }, - "zerofrom-derive 0.1.5": { + "zerofrom-derive 0.1.4": { "name": "zerofrom-derive", - "version": "0.1.5", + "version": "0.1.4", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerofrom-derive/0.1.5/download", - "sha256": "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" + "url": "https://static.crates.io/crates/zerofrom-derive/0.1.4/download", + "sha256": "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" } }, "targets": [ @@ -85510,15 +85691,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" }, { @@ -85529,7 +85710,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.5" + "version": "0.1.4" }, "license": "Unicode-3.0", "license_ids": [ @@ -85626,15 +85807,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -85689,11 +85870,11 @@ "deps": { "common": [ { - "id": "yoke 0.7.5", + "id": "yoke 0.7.4", "target": "yoke" }, { - "id": "zerofrom 0.1.5", + "id": "zerofrom 0.1.4", "target": "zerofrom" } ], @@ -85749,15 +85930,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -85813,7 +85994,7 @@ "deps": { "common": [ { - "id": "zstd-safe 7.2.1", + "id": "zstd-safe 7.1.0", "target": "zstd_safe" } ], @@ -85828,14 +86009,14 @@ ], "license_file": "LICENSE" }, - "zstd-safe 7.2.1": { + "zstd-safe 7.1.0": { "name": "zstd-safe", - "version": "7.2.1", + "version": "7.1.0", "package_url": "https://github.com/gyscos/zstd-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/zstd-safe/7.2.1/download", - "sha256": "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059" + "url": "https://static.crates.io/crates/zstd-safe/7.1.0/download", + "sha256": "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a" } }, "targets": [ @@ -85881,18 +86062,18 @@ "deps": { "common": [ { - "id": "zstd-safe 7.2.1", + "id": "zstd-safe 7.1.0", "target": "build_script_build" }, { - "id": "zstd-sys 2.0.13+zstd.1.5.6", + "id": "zstd-sys 2.0.10+zstd.1.5.6", "target": "zstd_sys" } ], "selects": {} }, "edition": "2018", - "version": "7.2.1" + "version": "7.1.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -85904,7 +86085,7 @@ "link_deps": { "common": [ { - "id": "zstd-sys 2.0.13+zstd.1.5.6", + "id": "zstd-sys 2.0.10+zstd.1.5.6", "target": "zstd_sys" } ], @@ -85918,14 +86099,14 @@ ], "license_file": "LICENSE" }, - "zstd-sys 2.0.13+zstd.1.5.6": { + "zstd-sys 2.0.10+zstd.1.5.6": { "name": "zstd-sys", - "version": "2.0.13+zstd.1.5.6", + "version": "2.0.10+zstd.1.5.6", "package_url": "https://github.com/gyscos/zstd-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/zstd-sys/2.0.13+zstd.1.5.6/download", - "sha256": "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" + "url": "https://static.crates.io/crates/zstd-sys/2.0.10+zstd.1.5.6/download", + "sha256": "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa" } }, "targets": [ @@ -85970,14 +86151,14 @@ "deps": { "common": [ { - "id": "zstd-sys 2.0.13+zstd.1.5.6", + "id": "zstd-sys 2.0.10+zstd.1.5.6", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "2.0.13+zstd.1.5.6" + "version": "2.0.10+zstd.1.5.6" }, "build_script_attrs": { "compile_data_glob": [ @@ -85989,11 +86170,11 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" } ], @@ -86011,7 +86192,7 @@ }, "binary_crates": [ "canbench 0.1.8", - "ic-wasm 0.8.6", + "ic-wasm 0.8.4", "metrics-proxy 0.1.0" ], "workspace_members": { @@ -86047,6 +86228,7 @@ "aarch64-unknown-nto-qnx710": [ "aarch64-unknown-nto-qnx710" ], + "aarch64-uwp-windows-msvc": [], "arm-unknown-linux-gnueabi": [ "arm-unknown-linux-gnueabi" ], @@ -86059,7 +86241,7 @@ "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))": [ "x86_64-pc-windows-msvc" ], - "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ "aarch64-linux-android", "armv7-linux-androideabi", "i686-linux-android", @@ -86086,7 +86268,7 @@ "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], - "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ + "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ "aarch64-unknown-linux-gnu", "aarch64-unknown-nixos-gnu", "arm-unknown-linux-gnueabi", @@ -86095,7 +86277,7 @@ "x86_64-unknown-linux-gnu", "x86_64-unknown-nixos-gnu" ], - "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", @@ -86136,7 +86318,6 @@ "aarch64-apple-ios", "aarch64-apple-ios-sim" ], - "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))": [], "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ "wasm32-unknown-unknown" ], @@ -86392,10 +86573,6 @@ "i686-unknown-freebsd", "x86_64-unknown-freebsd" ], - "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))": [ - "i686-unknown-freebsd", - "x86_64-unknown-freebsd" - ], "cfg(any(target_os = \"linux\", target_os = \"android\"))": [ "aarch64-linux-android", "aarch64-unknown-linux-gnu", @@ -86595,7 +86772,6 @@ "x86_64-unknown-nixos-gnu" ], "cfg(curve25519_dalek_backend = \"fiat\")": [], - "cfg(moka_loom)": [], "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))": [ "aarch64-apple-darwin", "aarch64-apple-ios", @@ -86663,6 +86839,31 @@ "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], + "cfg(not(any(target_os = \"macos\", target_os = \"ios\", target_os = \"windows\", target_arch = \"wasm32\")))": [ + "aarch64-linux-android", + "aarch64-unknown-fuchsia", + "aarch64-unknown-linux-gnu", + "aarch64-unknown-nixos-gnu", + "aarch64-unknown-nto-qnx710", + "arm-unknown-linux-gnueabi", + "armv7-linux-androideabi", + "armv7-unknown-linux-gnueabi", + "i686-linux-android", + "i686-unknown-freebsd", + "i686-unknown-linux-gnu", + "powerpc-unknown-linux-gnu", + "riscv32imc-unknown-none-elf", + "riscv64gc-unknown-none-elf", + "s390x-unknown-linux-gnu", + "thumbv7em-none-eabi", + "thumbv8m.main-none-eabi", + "x86_64-linux-android", + "x86_64-unknown-freebsd", + "x86_64-unknown-fuchsia", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu", + "x86_64-unknown-none" + ], "cfg(not(any(target_os = \"windows\", target_arch = \"wasm32\")))": [ "aarch64-apple-darwin", "aarch64-apple-ios", @@ -86694,6 +86895,38 @@ "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], + "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))": [ + "aarch64-apple-darwin", + "aarch64-apple-ios", + "aarch64-apple-ios-sim", + "aarch64-linux-android", + "aarch64-unknown-fuchsia", + "aarch64-unknown-linux-gnu", + "aarch64-unknown-nixos-gnu", + "aarch64-unknown-nto-qnx710", + "arm-unknown-linux-gnueabi", + "armv7-linux-androideabi", + "armv7-unknown-linux-gnueabi", + "i686-apple-darwin", + "i686-linux-android", + "i686-unknown-freebsd", + "i686-unknown-linux-gnu", + "powerpc-unknown-linux-gnu", + "riscv32imc-unknown-none-elf", + "riscv64gc-unknown-none-elf", + "s390x-unknown-linux-gnu", + "thumbv7em-none-eabi", + "thumbv8m.main-none-eabi", + "wasm32-wasip1", + "x86_64-apple-darwin", + "x86_64-apple-ios", + "x86_64-linux-android", + "x86_64-unknown-freebsd", + "x86_64-unknown-fuchsia", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu", + "x86_64-unknown-none" + ], "cfg(not(target_arch = \"wasm32\"))": [ "aarch64-apple-darwin", "aarch64-apple-ios", @@ -86795,6 +87028,42 @@ "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], + "cfg(not(windows_raw_dylib))": [ + "aarch64-apple-darwin", + "aarch64-apple-ios", + "aarch64-apple-ios-sim", + "aarch64-linux-android", + "aarch64-pc-windows-msvc", + "aarch64-unknown-fuchsia", + "aarch64-unknown-linux-gnu", + "aarch64-unknown-nixos-gnu", + "aarch64-unknown-nto-qnx710", + "arm-unknown-linux-gnueabi", + "armv7-linux-androideabi", + "armv7-unknown-linux-gnueabi", + "i686-apple-darwin", + "i686-linux-android", + "i686-pc-windows-msvc", + "i686-unknown-freebsd", + "i686-unknown-linux-gnu", + "powerpc-unknown-linux-gnu", + "riscv32imc-unknown-none-elf", + "riscv64gc-unknown-none-elf", + "s390x-unknown-linux-gnu", + "thumbv7em-none-eabi", + "thumbv8m.main-none-eabi", + "wasm32-unknown-unknown", + "wasm32-wasip1", + "x86_64-apple-darwin", + "x86_64-apple-ios", + "x86_64-linux-android", + "x86_64-pc-windows-msvc", + "x86_64-unknown-freebsd", + "x86_64-unknown-fuchsia", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu", + "x86_64-unknown-none" + ], "cfg(rustver)": [], "cfg(target_arch = \"aarch64\")": [ "aarch64-apple-darwin", @@ -86807,7 +87076,6 @@ "aarch64-unknown-nixos-gnu", "aarch64-unknown-nto-qnx710" ], - "cfg(target_arch = \"spirv\")": [], "cfg(target_arch = \"wasm32\")": [ "wasm32-unknown-unknown", "wasm32-wasip1" @@ -86851,6 +87119,11 @@ ], "cfg(target_os = \"haiku\")": [], "cfg(target_os = \"hermit\")": [], + "cfg(target_os = \"ios\")": [ + "aarch64-apple-ios", + "aarch64-apple-ios-sim", + "x86_64-apple-ios" + ], "cfg(target_os = \"linux\")": [ "aarch64-unknown-linux-gnu", "aarch64-unknown-nixos-gnu", @@ -86925,6 +87198,8 @@ "i686-unknown-linux-gnu": [ "i686-unknown-linux-gnu" ], + "i686-uwp-windows-gnu": [], + "i686-uwp-windows-msvc": [], "powerpc-unknown-linux-gnu": [ "powerpc-unknown-linux-gnu" ], @@ -86978,97 +87253,99 @@ ], "x86_64-unknown-none": [ "x86_64-unknown-none" - ] + ], + "x86_64-uwp-windows-gnu": [], + "x86_64-uwp-windows-msvc": [] }, "direct_deps": [ "actix-rt 2.10.0", "actix-web 4.9.0", "addr 0.15.6", - "aide 0.13.5", - "anyhow 1.0.95", - "arbitrary 1.4.1", + "aide 0.13.4", + "anyhow 1.0.93", + "arbitrary 1.3.2", "arc-swap 1.7.1", - "arrayvec 0.7.6", + "arrayvec 0.7.4", "askama 0.12.1", "assert-json-diff 2.0.2", "assert_cmd 2.0.16", "assert_matches 1.5.0", - "async-recursion 1.1.1", + "async-recursion 1.0.5", "async-scoped 0.8.0", "async-stream 0.3.6", - "async-trait 0.1.85", + "async-trait 0.1.83", "axum 0.7.9", "axum-extra 0.9.6", "axum-server 0.6.0", "backoff 0.4.0", - "backon 0.4.4", + "backon 0.4.1", "base32 0.4.0", "base64 0.13.1", "bech32 0.9.1", "bincode 1.3.3", "bindgen 0.65.1", - "bip32 0.5.2", + "bip32 0.5.1", "bit-vec 0.6.3", "bitcoin 0.28.2", - "bitcoin 0.32.5", + "bitcoin 0.32.2", "bitcoincore-rpc 0.15.0", "bitcoind 0.32.0", "bitflags 1.3.2", - "bs58 0.5.1", + "bs58 0.5.0", "build-info 0.0.27", "build-info-build 0.0.27", - "by_address 1.2.1", + "by_address 1.1.0", "byte-unit 4.0.19", "byteorder 1.5.0", "bytes 1.9.0", - "cached 0.49.3", + "cached 0.49.2", "canbench 0.1.8", "canbench-rs 0.1.8", - "candid 0.10.12", - "candid_parser 0.1.4", + "candid 0.10.10", + "candid_parser 0.1.2", "cargo_metadata 0.14.2", - "cc 1.2.9", + "cc 1.0.83", "cddl 0.9.4", "cfg-if 1.0.0", "chacha20poly1305 0.10.1", - "chrono 0.4.39", - "ciborium 0.2.2", + "chrono 0.4.38", + "ciborium 0.2.1", "cidr 0.2.3", - "clap 4.5.26", + "clap 4.5.20", "cloudflare 0.12.0", - "colored 2.2.0", - "comparable 0.5.5", + "colored 2.0.4", + "comparable 0.5.4", "console 0.11.3", "convert_case 0.6.0", - "crc32fast 1.4.2", + "crc32fast 1.3.2", "criterion 0.5.1", "crossbeam 0.8.4", - "crossbeam-channel 0.5.14", - "csv 1.3.1", + "crossbeam-channel 0.5.13", + "csv 1.3.0", "ctrlc 3.4.5", "curve25519-dalek 4.1.3", "cvt 0.1.2", "dashmap 5.5.3", - "dyn-clone 1.0.17", + "dyn-clone 1.0.14", "ed25519-dalek 2.1.1", "educe 0.4.23", "env-file-reader 0.3.0", "erased-serde 0.3.31", - "escargot 0.5.13", - "ethers-core 2.0.14", - "ethnum 1.5.0", + "escargot 0.5.8", + "ethers-core 2.0.10", + "ethnum 1.4.0", "evm_rpc_types 1.2.0", "exec 0.3.1", - "eyre 0.6.12", + "eyre 0.6.8", "ff 0.12.1", - "flate2 1.0.35", + "flate2 1.0.31", "form_urlencoded 1.2.1", - "fqdn 0.3.12", + "fqdn 0.3.11", "fs_extra 1.3.0", "futures 0.3.31", "futures-util 0.3.31", "get_if_addrs 0.5.3", - "getrandom 0.2.15", + "getrandom 0.2.10", "group 0.13.0", "hashlink 0.8.4", "hex 0.4.3", @@ -87080,8 +87357,8 @@ "http-body-util 0.1.2", "humantime 2.1.0", "humantime-serde 1.1.1", - "hyper 1.5.2", - "hyper-rustls 0.27.5", + "hyper 1.5.1", + "hyper-rustls 0.27.3", "hyper-socks2 0.9.1", "hyper-util 0.1.10", "ic-agent 0.39.2", @@ -87101,12 +87378,12 @@ "ic-metrics-encoder 1.1.1", "ic-response-verification 3.0.2", "ic-sha3 1.0.0", - "ic-stable-structures 0.6.7", + "ic-stable-structures 0.6.5", "ic-test-state-machine-client 3.0.1", "ic-transport-types 0.39.2", "ic-utils 0.39.2", "ic-verify-bls-signature 0.6.0", - "ic-wasm 0.8.6", + "ic-wasm 0.8.4", "ic-xrc-types 1.2.0", "ic0 0.18.11", "ic_bls12_381 0.10.0", @@ -87114,31 +87391,31 @@ "icrc1-test-env 0.1.1", "icrc1-test-suite 0.1.1", "idna 1.0.3", - "indexmap 2.7.0", - "indicatif 0.17.9", + "indexmap 2.2.6", + "indicatif 0.17.7", "indoc 1.0.9", - "inferno 0.12.1", - "insta 1.42.0", + "inferno 0.12.0", + "insta 1.34.0", "instant-acme 0.7.2", "intmap 1.1.0", "ipnet 2.10.1", "isocountry 0.3.2", - "itertools 0.12.1", + "itertools 0.12.0", "json-patch 0.2.7", "json5 0.4.1", "k256 0.13.4", "k8s-openapi 0.22.0", "kube 0.93.1", - "lazy_static 1.5.0", + "lazy_static 1.4.0", "leb128 0.2.5", - "libc 0.2.169", + "libc 0.2.158", "libflate 2.1.0", - "libfuzzer-sys 0.4.8", + "libfuzzer-sys 0.4.7", "libnss 0.5.0", "little-loadshedder 0.2.0", "lmdb-rkv 0.14.99", "lmdb-rkv-sys 0.11.99", - "local-ip-address 0.5.7", + "local-ip-address 0.5.6", "lru 0.7.8", "macaddr 1.0.1", "mach2 0.4.2", @@ -87147,9 +87424,9 @@ "metrics-proxy 0.1.0", "minicbor 0.19.1", "minicbor-derive 0.13.0", - "mockall 0.13.1", - "mockito 1.6.1", - "moka 0.12.10", + "mockall 0.13.0", + "mockito 1.2.0", + "moka 0.12.8", "more-asserts 0.3.1", "nftables 0.4.1", "nix 0.24.3", @@ -87158,81 +87435,81 @@ "num-rational 0.2.4", "num-traits 0.2.19", "num_cpus 1.16.0", - "once_cell 1.20.2", + "once_cell 1.19.0", "openssh-keys 0.5.0", "opentelemetry 0.20.0", - "opentelemetry 0.27.1", + "opentelemetry 0.27.0", "opentelemetry-otlp 0.27.0", "opentelemetry-prometheus 0.13.0", "opentelemetry_sdk 0.27.1", "p256 0.13.2", "pairing 0.23.0", - "parking_lot 0.12.3", + "parking_lot 0.12.1", "paste 1.0.15", - "pcre2 0.2.9", + "pcre2 0.2.6", "pem 1.1.1", - "pin-project-lite 0.2.16", - "ping 0.5.2", + "pin-project-lite 0.2.13", + "ping 0.5.0", "pkcs8 0.10.2", - "pkg-config 0.3.31", + "pkg-config 0.3.27", "pprof 0.14.0", - "predicates 3.1.3", + "predicates 3.1.2", "pretty-bytes 0.2.2", - "pretty_assertions 1.4.1", - "priority-queue 1.4.0", - "proc-macro2 1.0.93", + "pretty_assertions 1.4.0", + "priority-queue 1.3.2", + "proc-macro2 1.0.89", "procfs 0.9.1", "prometheus 0.13.4", - "prometheus-parse 0.2.5", - "proptest 1.6.0", - "proptest-derive 0.5.1", - "prost 0.12.6", - "prost 0.13.4", - "prost-build 0.13.4", + "prometheus-parse 0.2.4", + "proptest 1.5.0", + "proptest-derive 0.5.0", + "prost 0.12.2", + "prost 0.13.3", + "prost-build 0.13.3", "protobuf 2.28.0", - "publicsuffix 2.3.0", + "publicsuffix 2.2.3", "quickcheck 1.0.3", - "quinn 0.11.6", - "quinn-udp 0.5.9", - "quote 1.0.38", + "quinn 0.11.5", + "quinn-udp 0.5.5", + "quote 1.0.37", "rand 0.8.5", "rand_chacha 0.3.1", "rand_distr 0.4.3", "rand_pcg 0.3.1", "ratelimit 0.9.1", "rayon 1.10.0", - "rcgen 0.13.2", - "regex 1.11.1", - "reqwest 0.12.12", - "rgb 0.8.50", - "ring 0.17.8", + "rcgen 0.13.1", + "regex 1.11.0", + "reqwest 0.12.9", + "rgb 0.8.37", + "ring 0.17.7", "ripemd 0.1.3", "rlp 0.5.2", "rocksdb 0.22.0", "rolling-file 0.2.0", - "rsa 0.9.7", + "rsa 0.9.6", "rstest 0.19.0", - "rusb 0.9.4", + "rusb 0.9.3", "rusqlite 0.28.0", "rust_decimal 1.36.0", "rust_decimal_macros 1.36.0", - "rustc-demangle 0.1.24", + "rustc-demangle 0.1.23", "rustc-hash 1.1.0", - "rustls 0.23.21", + "rustls 0.23.18", "rustls-pemfile 2.2.0", - "rustversion 1.0.19", + "rustversion 1.0.14", "rusty-fork 0.3.0", - "schemars 0.8.21", + "schemars 0.8.16", "scoped_threadpool 0.1.9", "scopeguard 1.2.0", "scraper 0.17.1", "secp256k1 0.22.2", - "semver 1.0.24", + "semver 1.0.22", "serde 1.0.217", "serde-bytes-repr 0.1.5", "serde_bytes 0.11.15", "serde_cbor 0.11.2", - "serde_json 1.0.135", + "serde_json 1.0.132", "serde_regex 1.1.0", "serde_with 1.14.0", "serde_yaml 0.9.34+deprecated", @@ -87240,7 +87517,7 @@ "sha3 0.10.8", "signal-hook 0.3.17", "signature 2.2.0", - "simple_asn1 0.6.3", + "simple_asn1 0.6.2", "simple_moving_average 1.0.2", "slog 2.7.0", "slog-async 2.8.0", @@ -87248,30 +87525,30 @@ "slog-json 2.6.1", "slog-scope 4.4.0", "slog-term 2.9.1", - "socket2 0.5.8", + "socket2 0.5.7", "ssh2 0.9.4", "static_assertions 1.1.0", "strum 0.26.3", "strum_macros 0.26.4", - "stubborn-io 0.3.5", + "stubborn-io 0.3.2", "subtle 2.6.1", "syn 1.0.109", - "tar 0.4.43", + "tar 0.4.39", "tarpc 0.34.0", - "tempfile 3.15.0", + "tempfile 3.12.0", "test-strategy 0.3.1", "tester 0.7.0", - "textplots 0.8.6", - "thiserror 2.0.11", + "textplots 0.8.4", + "thiserror 2.0.3", "thousands 0.2.0", "threadpool 1.8.1", "tikv-jemalloc-ctl 0.5.4", "tikv-jemallocator 0.5.4", - "time 0.3.37", - "tokio 1.43.0", + "time 0.3.36", + "tokio 1.42.0", "tokio-io-timeout 1.2.0", "tokio-metrics 0.4.0", - "tokio-rustls 0.26.1", + "tokio-rustls 0.26.0", "tokio-serde 0.8.0", "tokio-socks 0.5.2", "tokio-stream 0.1.17", @@ -87280,11 +87557,11 @@ "toml 0.5.11", "tonic 0.12.3", "tonic-build 0.12.3", - "tower 0.5.2", + "tower 0.5.1", "tower-http 0.6.2", "tower-request-id 0.3.0", "tower-test 0.4.0", - "tower_governor 0.4.3", + "tower_governor 0.4.2", "tracing 0.1.41", "tracing-appender 0.2.3", "tracing-flame 0.2.0", @@ -87294,20 +87571,20 @@ "tracing-subscriber 0.3.19", "trust-dns-resolver 0.22.0", "turmoil 0.6.4", - "url 2.5.4", - "uuid 1.12.0", + "url 2.5.3", + "uuid 1.11.0", "vsock 0.4.0", - "walkdir 2.5.0", + "walkdir 2.3.3", "warp 0.3.7", - "wasm-bindgen 0.2.100", + "wasm-bindgen 0.2.95", "wasm-encoder 0.217.0", "wasm-smith 0.212.0", "wasmparser 0.217.0", "wasmprinter 0.217.0", - "wasmtime 28.0.1", - "wasmtime-environ 28.0.1", + "wasmtime 28.0.0", + "wasmtime-environ 28.0.0", "wast 212.0.0", - "wat 1.223.0", + "wat 1.212.0", "wee_alloc 0.4.5", "which 4.4.2", "wsl 0.1.0", diff --git a/Cargo.Bazel.Fuzzing.toml.lock b/Cargo.Bazel.Fuzzing.toml.lock index 46ca2139721..11569e4c150 100644 --- a/Cargo.Bazel.Fuzzing.toml.lock +++ b/Cargo.Bazel.Fuzzing.toml.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 4 +version = 3 [[package]] name = "abnf" @@ -35,11 +35,11 @@ dependencies = [ [[package]] name = "actix-codec" -version = "0.5.2" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" +checksum = "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8" dependencies = [ - "bitflags 2.8.0", + "bitflags 1.3.2", "bytes", "futures-core", "futures-sink", @@ -62,11 +62,11 @@ dependencies = [ "actix-utils", "ahash 0.8.11", "base64 0.22.1", - "bitflags 2.8.0", + "bitflags 2.6.0", "brotli 6.0.0", "bytes", "bytestring", - "derive_more 0.99.18", + "derive_more", "encoding_rs", "flate2", "futures-core", @@ -96,7 +96,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" dependencies = [ "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -127,17 +127,17 @@ dependencies = [ [[package]] name = "actix-server" -version = "2.5.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894" +checksum = "3eb13e7eef0423ea6eab0e59f6c72e7cb46d33691ad56a726b3cd07ddec2c2d4" dependencies = [ "actix-rt", "actix-service", "actix-utils", "futures-core", "futures-util", - "mio 1.0.3", - "socket2 0.5.8", + "mio 0.8.10", + "socket2 0.5.7", "tokio", "tracing", ] @@ -183,7 +183,7 @@ dependencies = [ "bytestring", "cfg-if 1.0.0", "cookie", - "derive_more 0.99.18", + "derive_more", "encoding_rs", "futures-core", "futures-util", @@ -200,7 +200,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "smallvec", - "socket2 0.5.8", + "socket2 0.5.7", "time", "url", ] @@ -214,7 +214,7 @@ dependencies = [ "actix-router", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -228,18 +228,18 @@ dependencies = [ [[package]] name = "addr2line" -version = "0.24.2" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" +checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" dependencies = [ - "gimli 0.31.1", + "gimli 0.28.0", ] [[package]] -name = "adler2" -version = "2.0.0" +name = "adler" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] name = "adler32" @@ -283,29 +283,29 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.1.3" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" dependencies = [ "memchr", ] [[package]] name = "aide" -version = "0.13.5" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5678d2978845ddb4bd736a026f467dd652d831e9e6254b0e41b07f7ee7523309" +checksum = "7b0e3b97a21e41ec5c19bfd9b4fc1f7086be104f8b988681230247ffc91cc8ed" dependencies = [ "axum", "bytes", "cfg-if 1.0.0", "http 1.2.0", - "indexmap 2.7.0", + "indexmap 2.2.6", "schemars", "serde", "serde_json", "serde_qs", - "thiserror 1.0.69", + "thiserror 1.0.68", "tower-layer", "tower-service", "tracing", @@ -364,9 +364,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" [[package]] name = "anstream" -version = "0.6.18" +version = "0.6.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" +checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" dependencies = [ "anstyle", "anstyle-parse", @@ -379,50 +379,49 @@ dependencies = [ [[package]] name = "anstyle" -version = "1.0.10" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" +checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" [[package]] name = "anstyle-parse" -version = "0.2.6" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" +checksum = "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.1.2" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" +checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.48.0", ] [[package]] name = "anstyle-wincon" -version = "3.0.7" +version = "3.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" +checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" dependencies = [ "anstyle", - "once_cell", - "windows-sys 0.59.0", + "windows-sys 0.48.0", ] [[package]] name = "anyhow" -version = "1.0.95" +version = "1.0.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" +checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775" [[package]] name = "arbitrary" -version = "1.4.1" +version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223" +checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" dependencies = [ "derive_arbitrary", ] @@ -441,9 +440,9 @@ checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" [[package]] name = "arrayvec" -version = "0.7.6" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" +checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" [[package]] name = "ascii-canvas" @@ -471,9 +470,9 @@ dependencies = [ [[package]] name = "askama_derive" -version = "0.12.5" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83" +checksum = "9a0fc7dcf8bd4ead96b1d36b41df47c14beedf7b0301fc543d8f2384e66a2ec0" dependencies = [ "askama_parser", "basic-toml", @@ -482,7 +481,7 @@ dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -493,18 +492,18 @@ checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341" [[package]] name = "askama_parser" -version = "0.2.1" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0" +checksum = "c268a96e01a4c47c8c5c2472aaa570707e006a875ea63e819f75474ceedaf7b4" dependencies = [ "nom", ] [[package]] name = "asn1-rs" -version = "0.6.2" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" +checksum = "22ad1373757efa0f70ec53939aabc7152e1591cb485208052993070ac8d2429d" dependencies = [ "asn1-rs-derive", "asn1-rs-impl", @@ -512,19 +511,19 @@ dependencies = [ "nom", "num-traits", "rusticata-macros", - "thiserror 1.0.69", + "thiserror 1.0.68", "time", ] [[package]] name = "asn1-rs-derive" -version = "0.5.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" +checksum = "7378575ff571966e99a744addeff0bff98b8ada0dedf1956d59e634db95eaac1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", "synstructure", ] @@ -536,7 +535,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -589,18 +588,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" dependencies = [ "concurrent-queue", - "event-listener-strategy", + "event-listener-strategy 0.5.2", "futures-core", "pin-project-lite", ] [[package]] name = "async-compression" -version = "0.4.18" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df895a515f70646414f4b45c0b79082783b80552b373a68283012928df56f522" +checksum = "f658e2baef915ba0f26f1f7c42bfb8e12f532a01f449a090ded75ae7a07e9ba2" dependencies = [ - "brotli 7.0.0", + "brotli 3.4.0", "flate2", "futures-core", "memchr", @@ -625,9 +624,9 @@ dependencies = [ [[package]] name = "async-io" -version = "2.4.0" +version = "2.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059" +checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" dependencies = [ "async-lock", "cfg-if 1.0.0", @@ -644,12 +643,12 @@ dependencies = [ [[package]] name = "async-lock" -version = "3.4.0" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" +checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" dependencies = [ - "event-listener 5.4.0", - "event-listener-strategy", + "event-listener 4.0.3", + "event-listener-strategy 0.4.0", "pin-project-lite", ] @@ -666,13 +665,13 @@ dependencies = [ [[package]] name = "async-recursion" -version = "1.1.1" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" +checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -692,7 +691,7 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8da2537846e16b96d2972ee52a3b355663872a1a687ce6d57a3b6f6b6a181c89" dependencies = [ - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", ] @@ -715,7 +714,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -726,13 +725,13 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.85" +version = "0.1.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056" +checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -758,8 +757,8 @@ dependencies = [ "lazy_static", "log", "rustls-pki-types", - "thiserror 1.0.69", - "webpki-roots 0.26.7", + "thiserror 1.0.68", + "webpki-roots 0.26.1", ] [[package]] @@ -781,13 +780,14 @@ dependencies = [ [[package]] name = "auto_impl" -version = "1.2.1" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e12882f59de5360c748c4cbf569a042d5fb0eb515f7bea9c1f470b47f6ffbd73" +checksum = "fee3da8ef1276b0bee5dd1c7258010d8fffd31801447323115a25560e1327b89" dependencies = [ + "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.96", + "syn 1.0.109", ] [[package]] @@ -796,14 +796,14 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", ] [[package]] name = "autocfg" -version = "1.4.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "axum" @@ -819,7 +819,7 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.2", + "hyper 1.5.1", "hyper-util", "itoa", "matchit", @@ -832,9 +832,9 @@ dependencies = [ "serde_json", "serde_path_to_error", "serde_urlencoded", - "sync_wrapper 1.0.2", + "sync_wrapper 1.0.1", "tokio", - "tower 0.5.2", + "tower 0.5.1", "tower-layer", "tower-service", "tracing", @@ -855,7 +855,7 @@ dependencies = [ "mime", "pin-project-lite", "rustversion", - "sync_wrapper 1.0.2", + "sync_wrapper 1.0.1", "tower-layer", "tower-service", "tracing", @@ -870,7 +870,7 @@ dependencies = [ "axum", "axum-core", "bytes", - "fastrand", + "fastrand 2.2.0", "futures-util", "headers 0.4.0", "http 1.2.0", @@ -880,7 +880,7 @@ dependencies = [ "multer 3.1.0", "pin-project-lite", "serde", - "tower 0.5.2", + "tower 0.5.1", "tower-layer", "tower-service", ] @@ -893,7 +893,7 @@ checksum = "57d123550fa8d071b7255cb0cc04dc302baa6c8c4a79f55701552684d8399bce" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -926,7 +926,7 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.2", + "hyper 1.5.1", "hyper-util", "pin-project-lite", "rustls 0.21.12", @@ -953,11 +953,11 @@ dependencies = [ [[package]] name = "backon" -version = "0.4.4" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d67782c3f868daa71d3533538e98a8e13713231969def7536e8039606fc46bf0" +checksum = "0c1a6197b2120bb2185a267f6515038558b019e92b832bb0320e96d66268dcf9" dependencies = [ - "fastrand", + "fastrand 1.9.0", "futures-core", "pin-project", "tokio", @@ -965,17 +965,17 @@ dependencies = [ [[package]] name = "backtrace" -version = "0.3.74" +version = "0.3.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" +checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" dependencies = [ "addr2line", + "cc", "cfg-if 1.0.0", "libc", "miniz_oxide", - "object", + "object 0.32.1", "rustc-demangle", - "windows-targets 0.52.6", ] [[package]] @@ -1014,9 +1014,9 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" [[package]] name = "base64" -version = "0.21.7" +version = "0.21.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" [[package]] name = "base64" @@ -1026,11 +1026,11 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "base64-url" -version = "2.0.2" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb9fb9fb058cc3063b5fc88d9a21eefa2735871498a04e1650da76ed511c8569" +checksum = "9c5b0a88aa36e9f095ee2e2b13fb8c5e4313e022783aedacc123328c0084916d" dependencies = [ - "base64 0.21.7", + "base64 0.21.4", ] [[package]] @@ -1041,9 +1041,9 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "basic-toml" -version = "0.1.9" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8" +checksum = "2f2139706359229bfa8f19142ac1155b4b80beafb7a60471ac5dd109d4a19778" dependencies = [ "serde", ] @@ -1099,19 +1099,19 @@ dependencies = [ "regex", "rustc-hash 1.1.0", "shlex", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "bindgen" -version = "0.69.5" +version = "0.69.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" +checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "cexpr", "clang-sys", - "itertools 0.12.1", + "itertools 0.12.0", "lazy_static", "lazycell", "proc-macro2", @@ -1119,7 +1119,7 @@ dependencies = [ "regex", "rustc-hash 1.1.0", "shlex", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -1147,9 +1147,9 @@ dependencies = [ [[package]] name = "bip32" -version = "0.5.2" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa13fae8b6255872fd86f7faf4b41168661d7d78609f7bfe6771b85c6739a15b" +checksum = "7e141fb0f8be1c7b45887af94c88b182472b57c96b56773250ae00cd6a14a164" dependencies = [ "bs58", "hmac", @@ -1169,16 +1169,7 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" dependencies = [ - "bit-vec 0.6.3", -] - -[[package]] -name = "bit-set" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" -dependencies = [ - "bit-vec 0.8.0", + "bit-vec", ] [[package]] @@ -1187,12 +1178,6 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" -[[package]] -name = "bit-vec" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" - [[package]] name = "bitcoin" version = "0.28.2" @@ -1207,9 +1192,9 @@ dependencies = [ [[package]] name = "bitcoin" -version = "0.30.2" +version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1945a5048598e4189e239d3f809b19bdad4845c4b2ba400d304d2dcf26d2c462" +checksum = "4e99ff7289b20a7385f66a0feda78af2fc119d28fb56aea8886a9cd0a4abdd75" dependencies = [ "bech32 0.9.1", "bitcoin-private", @@ -1221,9 +1206,9 @@ dependencies = [ [[package]] name = "bitcoin" -version = "0.32.5" +version = "0.32.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce6bc65742dea50536e35ad42492b234c27904a27f0abdcbce605015cb4ea026" +checksum = "ea507acc1cd80fc084ace38544bbcf7ced7c2aa65b653b102de0ce718df668f6" dependencies = [ "base58ck", "bech32 0.11.0", @@ -1233,7 +1218,7 @@ dependencies = [ "bitcoin_hashes 0.14.0", "hex-conservative", "hex_lit", - "secp256k1 0.29.1", + "secp256k1 0.29.0", ] [[package]] @@ -1244,9 +1229,9 @@ checksum = "30bdbe14aa07b06e6cfeffc529a1f099e5fbe249524f8125358604df99a4bed2" [[package]] name = "bitcoin-io" -version = "0.1.3" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf" +checksum = "340e09e8399c7bd8912f495af6aa58bea0c9214773417ffaa8f6460f93aaee56" [[package]] name = "bitcoin-private" @@ -1337,9 +1322,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.8.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" +checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "bitvec" @@ -1386,9 +1371,9 @@ dependencies = [ [[package]] name = "borsh" -version = "1.5.4" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fb65153674e51d3a42c8f27b05b9508cea85edfaade8aa46bc8fc18cecdfef3" +checksum = "f5327f6c99920069d1fe374aa743be1af0031dea9f250852cdf1ae6a0861ee24" dependencies = [ "borsh-derive", "cfg_aliases", @@ -1396,15 +1381,26 @@ dependencies = [ [[package]] name = "borsh-derive" -version = "1.5.4" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a396e17ad94059c650db3d253bb6e25927f1eb462eede7e7a153bb6e75dce0a7" +checksum = "10aedd8f1a81a8aafbfde924b0e3061cd6fedd6f6bbcfc6a76e6fd426d7bfe26" dependencies = [ "once_cell", - "proc-macro-crate", + "proc-macro-crate 3.2.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", +] + +[[package]] +name = "brotli" +version = "3.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor 2.5.0", ] [[package]] @@ -1415,7 +1411,7 @@ checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", - "brotli-decompressor", + "brotli-decompressor 4.0.1", ] [[package]] @@ -1426,7 +1422,17 @@ checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", - "brotli-decompressor", + "brotli-decompressor 4.0.1", +] + +[[package]] +name = "brotli-decompressor" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da74e2b81409b1b743f8f0c62cc6254afefb8b8e50bbfe3735550f7aeefa3448" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", ] [[package]] @@ -1441,9 +1447,9 @@ dependencies = [ [[package]] name = "bs58" -version = "0.5.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" +checksum = "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896" dependencies = [ "sha2 0.10.8", "tinyvec", @@ -1451,12 +1457,12 @@ dependencies = [ [[package]] name = "bstr" -version = "1.11.3" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0" +checksum = "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c" dependencies = [ "memchr", - "regex-automata 0.4.9", + "regex-automata 0.4.8", "serde", ] @@ -1494,7 +1500,7 @@ name = "build-info-common" version = "0.0.27" source = "git+https://github.com/dfinity-lab/build-info?rev=701a696844fba5c87df162fbbc1ccef96f27c9d7#701a696844fba5c87df162fbbc1ccef96f27c9d7" dependencies = [ - "derive_more 0.99.18", + "derive_more", "semver", "serde", ] @@ -1530,9 +1536,9 @@ dependencies = [ [[package]] name = "by_address" -version = "1.2.1" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06" +checksum = "bf8dba2868114ed769a1f2590fc9ae5eb331175b44313b6c9b922f8f7ca813d0" [[package]] name = "byte-slice-cast" @@ -1552,9 +1558,9 @@ dependencies = [ [[package]] name = "bytecheck" -version = "0.6.12" +version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" +checksum = "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627" dependencies = [ "bytecheck_derive", "ptr_meta", @@ -1563,9 +1569,9 @@ dependencies = [ [[package]] name = "bytecheck_derive" -version = "0.6.12" +version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" +checksum = "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61" dependencies = [ "proc-macro2", "quote", @@ -1574,9 +1580,9 @@ dependencies = [ [[package]] name = "bytemuck" -version = "1.21.0" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3" +checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" [[package]] name = "byteorder" @@ -1601,9 +1607,9 @@ checksum = "a3e368af43e418a04d52505cf3dbc23dda4e3407ae2fa99fd0e4f308ce546acc" [[package]] name = "bytestring" -version = "1.4.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f" +checksum = "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae" dependencies = [ "bytes", ] @@ -1627,14 +1633,14 @@ checksum = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b" [[package]] name = "cached" -version = "0.49.3" +version = "0.49.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e8e463fceca5674287f32d252fb1d94083758b8709c160efae66d263e5f4eba" +checksum = "f251fd1e72720ca07bf5d8e310f54a193fd053479a1f6342c6663ee4fa01cf96" dependencies = [ "hashbrown 0.14.5", "instant", "once_cell", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -1647,7 +1653,7 @@ dependencies = [ "hashbrown 0.14.5", "instant", "once_cell", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -1661,7 +1667,7 @@ dependencies = [ "cached_proc_macro_types", "hashbrown 0.14.5", "once_cell", - "thiserror 1.0.69", + "thiserror 1.0.68", "web-time", ] @@ -1674,7 +1680,7 @@ dependencies = [ "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -1685,9 +1691,9 @@ checksum = "ade8366b8bd5ba243f0a58f036cc0ca8a2f069cff1a2351ef1cac6b083e16fc0" [[package]] name = "camino" -version = "1.1.9" +version = "1.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" +checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" dependencies = [ "serde", ] @@ -1700,7 +1706,7 @@ checksum = "cb548f9e006ad29b160d37e07435c499af7d2741918e18d95ddc87dfe97a0b8d" dependencies = [ "canbench-rs", "candid", - "clap 4.5.26", + "clap 4.5.20", "colored", "flate2", "hex", @@ -1739,9 +1745,9 @@ dependencies = [ [[package]] name = "candid" -version = "0.10.12" +version = "0.10.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51e129c4051c57daf943586e01ef72faae48b04a8f692d5f646febf17a264c38" +checksum = "6c30ee7f886f296b6422c0ff017e89dd4f831521dfdcc76f3f71aae1ce817222" dependencies = [ "anyhow", "binread", @@ -1757,7 +1763,7 @@ dependencies = [ "serde", "serde_bytes", "stacker", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -1769,33 +1775,33 @@ dependencies = [ "lazy_static", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "candid_parser" -version = "0.1.4" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48a3da76f989cd350b7342c64c6c6008341bb6186f6832ef04e56dc50ba0fd76" +checksum = "36381de3ba8a312deb028552c0d63f7c7fe6e204f44bae4c58a3643308cfa9d5" dependencies = [ "anyhow", "candid", "codespan-reporting", "convert_case 0.6.0", "hex", - "lalrpop 0.20.2", - "lalrpop-util 0.20.2", + "lalrpop 0.20.0", + "lalrpop-util 0.20.0", "logos 0.13.0", "num-bigint 0.4.6", "pretty 0.12.3", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] name = "cargo-platform" -version = "0.1.9" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" +checksum = "12024c4645c97566567129c204f65d5815a8c9aecf30fcbe682b2fe034996d36" dependencies = [ "serde", ] @@ -1821,13 +1827,12 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] name = "cc" -version = "1.2.9" +version = "1.0.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8293772165d9345bdaaa39b45b2109591e63fe5e6fbc23c6ff930a048aa310b" +checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" dependencies = [ "jobserver", "libc", - "shlex", ] [[package]] @@ -1922,9 +1927,9 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.39" +version = "0.4.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825" +checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" dependencies = [ "android-tzdata", "iana-time-zone", @@ -1937,9 +1942,9 @@ dependencies = [ [[package]] name = "ciborium" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" +checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" dependencies = [ "ciborium-io", "ciborium-ll", @@ -1948,18 +1953,18 @@ dependencies = [ [[package]] name = "ciborium-io" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" +checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" [[package]] name = "ciborium-ll" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" +checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" dependencies = [ "ciborium-io", - "half 2.4.1", + "half", ] [[package]] @@ -1981,9 +1986,9 @@ dependencies = [ [[package]] name = "clang-sys" -version = "1.8.1" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" +checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" dependencies = [ "glob", "libc", @@ -2009,23 +2014,23 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.26" +version = "4.5.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783" +checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" dependencies = [ "clap_builder", - "clap_derive 4.5.24", + "clap_derive 4.5.18", ] [[package]] name = "clap_builder" -version = "4.5.26" +version = "4.5.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121" +checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" dependencies = [ "anstream", "anstyle", - "clap_lex 0.7.4", + "clap_lex 0.7.2", "strsim 0.11.1", ] @@ -2044,14 +2049,14 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.24" +version = "4.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c" +checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -2065,9 +2070,9 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.7.4" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" +checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" [[package]] name = "clocksource" @@ -2102,7 +2107,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "serde_with 2.3.3", - "thiserror 1.0.69", + "thiserror 1.0.68", "url", "uuid", ] @@ -2120,7 +2125,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "serde_with 2.3.3", - "thiserror 1.0.69", + "thiserror 1.0.68", "url", "uuid", ] @@ -2138,23 +2143,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" dependencies = [ "termcolor", - "unicode-width 0.1.14", + "unicode-width", ] [[package]] name = "colorchoice" -version = "1.0.3" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" +checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] name = "colored" -version = "2.2.0" +version = "2.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c" +checksum = "2674ec482fbc38012cf31e6c42ba0177b431a0cb6f15fe40efa5aab1bda516f6" dependencies = [ + "is-terminal", "lazy_static", - "windows-sys 0.59.0", + "windows-sys 0.48.0", ] [[package]] @@ -2169,9 +2175,9 @@ dependencies = [ [[package]] name = "comparable" -version = "0.5.5" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8606f9aa5b5a2df738584b139c79413d0c1545ed0ffd16e76e0944d1de7388c0" +checksum = "eb513ee8037bf08c5270ecefa48da249f4c58e57a71ccfce0a5b0877d2a20eb2" dependencies = [ "comparable_derive", "comparable_helper", @@ -2181,9 +2187,9 @@ dependencies = [ [[package]] name = "comparable_derive" -version = "0.5.5" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41f36ea7383b9a2a9ae0a4e225d8a9c1c3aeadde78c59cdc35bad5c02b4dad01" +checksum = "a54b9c40054eb8999c5d1d36fdc90e4e5f7ff0d1d9621706f360b3cbc8beb828" dependencies = [ "convert_case 0.4.0", "proc-macro2", @@ -2193,9 +2199,9 @@ dependencies = [ [[package]] name = "comparable_helper" -version = "0.5.5" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "71c9b60259084f32c14d32476f3a299b4997e3c186e1473bd972ff8a8c83d1b4" +checksum = "fb5437e327e861081c91270becff184859f706e3e50f5301a9d4dc8eb50752c3" dependencies = [ "convert_case 0.6.0", "proc-macro2", @@ -2218,28 +2224,28 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c0994e656bba7b922d8dd1245db90672ffb701e684e45be58f20719d69abc5a" dependencies = [ - "encode_unicode 0.3.6", + "encode_unicode", "lazy_static", "libc", "regex", "terminal_size", "termios", - "unicode-width 0.1.14", + "unicode-width", "winapi 0.3.9", "winapi-util", ] [[package]] name = "console" -version = "0.15.10" +version = "0.15.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea3c6ecd8059b57859df5c69830340ed3c41d30e3da0c1cbed90a96ac853041b" +checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" dependencies = [ - "encode_unicode 1.0.0", + "encode_unicode", + "lazy_static", "libc", - "once_cell", - "unicode-width 0.2.0", - "windows-sys 0.59.0", + "unicode-width", + "windows-sys 0.45.0", ] [[package]] @@ -2254,22 +2260,21 @@ dependencies = [ [[package]] name = "const-hex" -version = "1.14.0" +version = "1.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b0485bab839b018a8f1723fc5391819fea5f8f0f32288ef8a735fd096b6160c" +checksum = "c37be52ef5e3b394db27a2341010685ad5103c72ac15ce2e9420a7e8f93f342c" dependencies = [ "cfg-if 1.0.0", "cpufeatures", "hex", - "proptest", "serde", ] [[package]] name = "const-oid" -version = "0.9.6" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" +checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f" [[package]] name = "convert_case" @@ -2307,16 +2312,6 @@ dependencies = [ "libc", ] -[[package]] -name = "core-foundation" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" -dependencies = [ - "core-foundation-sys", - "libc", -] - [[package]] name = "core-foundation-sys" version = "0.8.7" @@ -2343,7 +2338,7 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "581898ed9a83f31c64731b1d8ca2dfffcfec14edf1635afacd5234cddbde3a41" dependencies = [ - "bitcoin 0.30.2", + "bitcoin 0.30.1", "bitcoin-private", "serde", "serde_json", @@ -2360,27 +2355,27 @@ dependencies = [ [[package]] name = "cpufeatures" -version = "0.2.16" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3" +checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" dependencies = [ "libc", ] [[package]] name = "cranelift-bforest" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88c1d02b72b6c411c0a2e92b25ed791ad5d071184193c08a34aa0fdcdf000b72" +checksum = "ac89549be94911dd0e839b4a7db99e9ed29c17517e1c026f61066884c168aa3c" dependencies = [ "cranelift-entity", ] [[package]] name = "cranelift-bitset" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "720b93bd86ebbb23ebfb2db1ed44d54b2ecbdbb2d034d485bc64aa605ee787ab" +checksum = "b9bd49369f76c77e34e641af85d0956869237832c118964d08bf5f51f210875a" dependencies = [ "serde", "serde_derive", @@ -2388,9 +2383,9 @@ dependencies = [ [[package]] name = "cranelift-codegen" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aed3d2d9914d30b460eedd7fd507720203023997bef71452ce84873f9c93537c" +checksum = "fd96ce9cf8efebd7f5ab8ced5a0ce44250280bbae9f593d74a6d7effc3582a35" dependencies = [ "bumpalo", "cranelift-bforest", @@ -2404,7 +2399,7 @@ dependencies = [ "hashbrown 0.14.5", "log", "regalloc2", - "rustc-hash 2.1.0", + "rustc-hash 2.0.0", "serde", "smallvec", "target-lexicon", @@ -2412,33 +2407,33 @@ dependencies = [ [[package]] name = "cranelift-codegen-meta" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "888c188d32263ec9e048873ff0b68c700933600d553f4412417916828be25f8e" +checksum = "5a68e358827afe4bfb6239fcbf6fbd5ac56206ece8a99c8f5f9bbd518773281a" dependencies = [ "cranelift-codegen-shared", ] [[package]] name = "cranelift-codegen-shared" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ddd5f4114d04ce7e073dd74e2ad16541fc61970726fcc8b2d5644a154ee4127" +checksum = "e184c9767afbe73d50c55ec29abcf4c32f9baf0d9d22b86d58c4d55e06dee181" [[package]] name = "cranelift-control" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92cc4c98d6a4256a1600d93ccd3536f3e77da9b4ca2c279de786ac22876e67d6" +checksum = "5cc7664f2a66f053e33f149e952bb5971d138e3af637f5097727ed6dc0ed95dd" dependencies = [ "arbitrary", ] [[package]] name = "cranelift-entity" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "760af4b5e051b5f82097a27274b917e3751736369fa73660513488248d27f23d" +checksum = "118597e3a9cf86c3556fa579a7a23b955fa18231651a52a77a2475d305a9cf84" dependencies = [ "cranelift-bitset", "serde", @@ -2447,9 +2442,9 @@ dependencies = [ [[package]] name = "cranelift-frontend" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0bf77ec0f470621655ec7539860b5c620d4f91326654ab21b075b83900f8831" +checksum = "7638ea1efb069a0aa18d8ee67401b6b0d19f6bfe5de5e9ede348bfc80bb0d8c7" dependencies = [ "cranelift-codegen", "log", @@ -2459,15 +2454,15 @@ dependencies = [ [[package]] name = "cranelift-isle" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b665d0a6932c421620be184f9fc7f7adaf1b0bc2fa77bb7ac5177c49abf645b" +checksum = "15c53e1152a0b01c4ed2b1e0535602b8e86458777dd9d18b28732b16325c7dc0" [[package]] name = "cranelift-native" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb2e75d1bd43dfec10924798f15e6474f1dbf63b0024506551aa19394dbe72ab" +checksum = "7b7d8f895444fa52dd7bdd0bed11bf007a7fb43af65a6deac8fcc4094c6372f7" dependencies = [ "cranelift-codegen", "libc", @@ -2476,9 +2471,9 @@ dependencies = [ [[package]] name = "crc32fast" -version = "1.4.2" +version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" +checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" dependencies = [ "cfg-if 1.0.0", ] @@ -2492,7 +2487,7 @@ dependencies = [ "anes", "cast", "ciborium", - "clap 4.5.26", + "clap 4.5.20", "criterion-plot", "futures", "is-terminal", @@ -2536,18 +2531,18 @@ dependencies = [ [[package]] name = "crossbeam-channel" -version = "0.5.14" +version = "0.5.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471" +checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" dependencies = [ "crossbeam-utils", ] [[package]] name = "crossbeam-deque" -version = "0.8.6" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" +checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" dependencies = [ "crossbeam-epoch", "crossbeam-utils", @@ -2564,18 +2559,18 @@ dependencies = [ [[package]] name = "crossbeam-queue" -version = "0.3.12" +version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" +checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" dependencies = [ "crossbeam-utils", ] [[package]] name = "crossbeam-utils" -version = "0.8.21" +version = "0.8.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" +checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" [[package]] name = "crossterm" @@ -2583,11 +2578,11 @@ version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "crossterm_winapi", "libc", - "mio 0.8.11", - "parking_lot 0.12.3", + "mio 0.8.10", + "parking_lot 0.12.1", "signal-hook", "signal-hook-mio", "winapi 0.3.9", @@ -2610,9 +2605,9 @@ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" [[package]] name = "crypto-bigint" -version = "0.5.5" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" +checksum = "740fe28e594155f10cfc383984cbefd529d7396050557148f79cb0f621204124" dependencies = [ "generic-array", "rand_core 0.6.4", @@ -2640,7 +2635,7 @@ dependencies = [ "cssparser-macros", "dtoa-short", "itoa", - "phf 0.11.3", + "phf 0.11.2", "smallvec", ] @@ -2651,14 +2646,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" dependencies = [ "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "csv" -version = "1.3.1" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf" +checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe" dependencies = [ "csv-core", "itoa", @@ -2711,7 +2706,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -2781,7 +2776,7 @@ dependencies = [ "proc-macro2", "quote", "strsim 0.11.1", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -2803,14 +2798,14 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core 0.20.10", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "dary_heap" -version = "0.3.7" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728" +checksum = "7762d17f1241643615821a8455a0b2c3e803784b058693d990b11f2dce25a0ca" [[package]] name = "dashmap" @@ -2822,7 +2817,7 @@ dependencies = [ "hashbrown 0.14.5", "lock_api", "once_cell", - "parking_lot_core 0.9.10", + "parking_lot_core 0.9.8", ] [[package]] @@ -2836,14 +2831,14 @@ dependencies = [ "hashbrown 0.14.5", "lock_api", "once_cell", - "parking_lot_core 0.9.10", + "parking_lot_core 0.9.8", ] [[package]] name = "data-encoding" -version = "2.7.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e60eed09d8c01d3cee5b7d30acb059b76614c918fa0f992e0dd6eeb10daad6f" +checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" [[package]] name = "debugid" @@ -2856,9 +2851,9 @@ dependencies = [ [[package]] name = "der" -version = "0.7.9" +version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" +checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c" dependencies = [ "const-oid", "der_derive", @@ -2883,20 +2878,20 @@ dependencies = [ [[package]] name = "der_derive" -version = "0.7.3" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18" +checksum = "5fe87ce4529967e0ba1dcf8450bab64d97dfd5010a6256187ffe2e43e6f0e049" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "deranged" -version = "0.3.11" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" +checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" dependencies = [ "powerfmt", "serde", @@ -2910,51 +2905,31 @@ checksum = "2cdc8d50f426189eef89dac62fabfa0abb27d5cc008f25bf4156a0203325becc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "derive_arbitrary" -version = "1.4.1" +version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" +checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "derive_more" -version = "0.99.18" +version = "0.99.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" +checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" dependencies = [ "convert_case 0.4.0", "proc-macro2", "quote", "rustc_version", - "syn 2.0.96", -] - -[[package]] -name = "derive_more" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" -dependencies = [ - "derive_more-impl", -] - -[[package]] -name = "derive_more-impl" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.96", + "syn 1.0.109", ] [[package]] @@ -3001,7 +2976,7 @@ dependencies = [ "anyhow", "arbitrary", "arc-swap", - "arrayvec 0.7.6", + "arrayvec 0.7.4", "askama", "assert-json-diff", "assert_cmd", @@ -3021,9 +2996,9 @@ dependencies = [ "bincode", "bindgen 0.65.1", "bip32", - "bit-vec 0.6.3", + "bit-vec", "bitcoin 0.28.2", - "bitcoin 0.32.5", + "bitcoin 0.32.2", "bitcoincore-rpc", "bitcoind", "bitflags 1.3.2", @@ -3034,7 +3009,7 @@ dependencies = [ "byte-unit", "byteorder", "bytes", - "cached 0.49.3", + "cached 0.49.2", "canbench", "canbench-rs", "candid", @@ -3047,7 +3022,7 @@ dependencies = [ "chrono", "ciborium", "cidr", - "clap 4.5.26", + "clap 4.5.20", "cloudflare 0.12.0 (git+https://github.com/dfinity/cloudflare-rs.git?rev=a6538a036926bd756986c9c0a5de356daef48881)", "colored", "comparable", @@ -3076,7 +3051,7 @@ dependencies = [ "ff 0.12.1", "flate2", "form_urlencoded", - "fqdn 0.3.12", + "fqdn 0.3.11", "fs_extra", "futures", "futures-util", @@ -3093,8 +3068,8 @@ dependencies = [ "http-body-util", "humantime", "humantime-serde", - "hyper 1.5.2", - "hyper-rustls 0.27.5", + "hyper 1.5.1", + "hyper-rustls 0.27.3", "hyper-socks2", "hyper-util", "ic-agent", @@ -3127,16 +3102,16 @@ dependencies = [ "icrc1-test-env", "icrc1-test-suite", "idna 1.0.3", - "indexmap 2.7.0", + "indexmap 2.2.6", "indicatif", "indoc", - "inferno 0.12.1", + "inferno 0.12.0", "insta", "instant-acme", "intmap", "ipnet", "isocountry", - "itertools 0.12.1", + "itertools 0.12.0", "json-patch", "json5", "k256", @@ -3174,13 +3149,13 @@ dependencies = [ "once_cell", "openssh-keys", "opentelemetry 0.20.0", - "opentelemetry 0.27.1", + "opentelemetry 0.27.0", "opentelemetry-otlp", "opentelemetry-prometheus 0.13.0", "opentelemetry_sdk 0.27.1", "p256", "pairing", - "parking_lot 0.12.3", + "parking_lot 0.12.1", "paste", "pcre2", "pem 1.1.1", @@ -3199,9 +3174,9 @@ dependencies = [ "prometheus-parse", "proptest", "proptest-derive", - "prost 0.12.6", - "prost 0.13.4", - "prost-build 0.13.4", + "prost 0.12.2", + "prost 0.13.3", + "prost-build 0.13.3", "protobuf", "publicsuffix", "quickcheck", @@ -3216,9 +3191,9 @@ dependencies = [ "rayon", "rcgen", "regex", - "reqwest 0.12.12", + "reqwest 0.12.9", "rgb", - "ring 0.17.8", + "ring 0.17.7", "ripemd", "rlp", "rocksdb", @@ -3231,7 +3206,7 @@ dependencies = [ "rust_decimal_macros", "rustc-demangle", "rustc-hash 1.1.0", - "rustls 0.23.21", + "rustls 0.23.18", "rustls-pemfile 2.2.0", "rustversion", "rusty-fork", @@ -3261,11 +3236,11 @@ dependencies = [ "slog-json", "slog-scope", "slog-term", - "socket2 0.5.8", + "socket2 0.5.7", "ssh2", "static_assertions", - "strum", - "strum_macros", + "strum 0.26.3", + "strum_macros 0.26.4", "stubborn-io", "subtle", "syn 1.0.109", @@ -3275,7 +3250,7 @@ dependencies = [ "test-strategy", "tester", "textplots", - "thiserror 2.0.11", + "thiserror 2.0.3", "thousands", "threadpool", "tikv-jemalloc-ctl", @@ -3284,7 +3259,7 @@ dependencies = [ "tokio", "tokio-io-timeout", "tokio-metrics", - "tokio-rustls 0.26.1", + "tokio-rustls 0.26.0", "tokio-serde", "tokio-socks", "tokio-stream", @@ -3293,7 +3268,7 @@ dependencies = [ "toml", "tonic", "tonic-build", - "tower 0.5.2", + "tower 0.5.1", "tower-http 0.6.2", "tower-request-id", "tower-test", @@ -3319,7 +3294,7 @@ dependencies = [ "wasmprinter 0.217.0", "wasmtime", "wasmtime-environ", - "wast 212.0.0", + "wast", "wat", "wee_alloc", "which", @@ -3327,7 +3302,7 @@ dependencies = [ "wycheproof", "x509-cert", "x509-parser", - "yansi 0.5.1", + "yansi", "zeroize", "zstd", ] @@ -3376,13 +3351,13 @@ dependencies = [ [[package]] name = "displaydoc" -version = "0.2.5" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" +checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -3415,9 +3390,9 @@ checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" [[package]] name = "dtoa-short" -version = "0.3.5" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" +checksum = "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74" dependencies = [ "dtoa", ] @@ -3433,9 +3408,9 @@ dependencies = [ [[package]] name = "dyn-clone" -version = "1.0.17" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" +checksum = "23d2f3407d9a573d666de4b5bdf10569d73ca9478087346697dcbae6244bfbcd" [[package]] name = "ecdsa" @@ -3472,7 +3447,7 @@ dependencies = [ "rand_core 0.6.4", "serde", "sha2 0.9.9", - "thiserror 1.0.69", + "thiserror 1.0.68", "zeroize", ] @@ -3507,15 +3482,15 @@ dependencies = [ [[package]] name = "ego-tree" -version = "0.6.3" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12a0bb14ac04a9fcf170d0bbbef949b44cc492f4452bd20c095636956f653642" +checksum = "3a68a4904193147e0a8dec3314640e6db742afd5f6e634f428a6af230d9b3591" [[package]] name = "either" -version = "1.13.0" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" +checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" [[package]] name = "elliptic-curve" @@ -3543,17 +3518,11 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" -[[package]] -name = "embedded-io" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" - [[package]] name = "ena" -version = "0.14.3" +version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5" +checksum = "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1" dependencies = [ "log", ] @@ -3564,17 +3533,11 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" -[[package]] -name = "encode_unicode" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" - [[package]] name = "encoding_rs" -version = "0.8.35" +version = "0.8.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" +checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" dependencies = [ "cfg-if 1.0.0", ] @@ -3593,14 +3556,14 @@ dependencies = [ [[package]] name = "enum-as-inner" -version = "0.6.1" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" +checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" dependencies = [ - "heck 0.5.0", + "heck 0.4.1", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -3613,7 +3576,7 @@ dependencies = [ "num-traits", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -3629,9 +3592,9 @@ dependencies = [ [[package]] name = "env_filter" -version = "0.1.3" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" +checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" dependencies = [ "log", ] @@ -3648,9 +3611,9 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.11.6" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0" +checksum = "6c012a26a7f605efc424dd53697843a72be7dc86ad2d01f7814337794a12231d" dependencies = [ "env_filter", "log", @@ -3673,7 +3636,7 @@ checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -3704,12 +3667,12 @@ dependencies = [ [[package]] name = "errno" -version = "0.3.10" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" +checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" dependencies = [ "libc", - "windows-sys 0.59.0", + "windows-sys 0.52.0", ] [[package]] @@ -3724,9 +3687,9 @@ dependencies = [ [[package]] name = "escargot" -version = "0.5.13" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05a3ac187a16b5382fef8c69fd1bad123c67b7cf3932240a2d43dcdd32cded88" +checksum = "768064bd3a0e2bedcba91dc87ace90beea91acc41b6a01a3ca8e9aa8827461bf" dependencies = [ "log", "once_cell", @@ -3747,7 +3710,7 @@ dependencies = [ "serde", "serde_json", "sha3", - "thiserror 1.0.69", + "thiserror 1.0.68", "uint", ] @@ -3784,11 +3747,11 @@ dependencies = [ [[package]] name = "ethers-core" -version = "2.0.14" +version = "2.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82d80cc6ad30b14a48ab786523af33b37f28a8623fc06afd55324816ef18fb1f" +checksum = "c0a17f0708692024db9956b31d7a20163607d2745953f5ae8125ab368ba280ad" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.4", "bytes", "chrono", "const-hex", @@ -3802,18 +3765,18 @@ dependencies = [ "rlp", "serde", "serde_json", - "strum", + "strum 0.25.0", "tempfile", - "thiserror 1.0.69", + "thiserror 1.0.68", "tiny-keccak", "unicode-xid", ] [[package]] name = "ethnum" -version = "1.5.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c" +checksum = "6c8ff382b2fa527fb7fb06eeebfc5bbb3f17e3cc6b9d70b006c41daa8824adac" dependencies = [ "serde", ] @@ -3826,9 +3789,20 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "event-listener" -version = "5.4.0" +version = "4.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" +dependencies = [ + "concurrent-queue", + "parking", + "pin-project-lite", +] + +[[package]] +name = "event-listener" +version = "5.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" +checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" dependencies = [ "concurrent-queue", "parking", @@ -3837,11 +3811,21 @@ dependencies = [ [[package]] name = "event-listener-strategy" -version = "0.5.3" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" +dependencies = [ + "event-listener 4.0.3", + "pin-project-lite", +] + +[[package]] +name = "event-listener-strategy" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2" +checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" dependencies = [ - "event-listener 5.4.0", + "event-listener 5.3.1", "pin-project-lite", ] @@ -3856,8 +3840,8 @@ dependencies = [ "ic-cdk 0.16.0", "num-bigint 0.4.6", "serde", - "strum", - "thiserror 1.0.69", + "strum 0.26.3", + "thiserror 1.0.68", "url", ] @@ -3879,9 +3863,9 @@ checksum = "de853764b47027c2e862a995c34978ffa63c1501f2e15f987ba11bd4f9bba193" [[package]] name = "eyre" -version = "0.6.12" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec" +checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb" dependencies = [ "indenter", "once_cell", @@ -3907,9 +3891,18 @@ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" [[package]] name = "fastrand" -version = "2.3.0" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" +dependencies = [ + "instant", +] + +[[package]] +name = "fastrand" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" +checksum = "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4" [[package]] name = "ff" @@ -3933,20 +3926,20 @@ dependencies = [ [[package]] name = "fiat-crypto" -version = "0.2.9" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" +checksum = "1676f435fc1dadde4d03e43f5d62b259e1ce5f40bd4ffb21db2b42ebe59c1382" [[package]] name = "filetime" -version = "0.2.25" +version = "0.2.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" +checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" dependencies = [ "cfg-if 1.0.0", "libc", - "libredox", - "windows-sys 0.59.0", + "redox_syscall 0.3.5", + "windows-sys 0.48.0", ] [[package]] @@ -3981,15 +3974,15 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flagset" -version = "0.4.6" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3ea1ec5f8307826a5b71094dd91fc04d4ae75d5709b20ad351c7fb4815c86ec" +checksum = "d52a7e408202050813e6f1d9addadcaafef3dca7530c7ddfb005d4081cce6779" [[package]] name = "flate2" -version = "1.0.35" +version = "1.0.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c" +checksum = "7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920" dependencies = [ "crc32fast", "miniz_oxide", @@ -3997,9 +3990,9 @@ dependencies = [ [[package]] name = "float-cmp" -version = "0.10.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8" +checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" dependencies = [ "num-traits", ] @@ -4032,20 +4025,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9" dependencies = [ "nonempty", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] name = "fqdn" -version = "0.3.12" +version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb540cf7bc4fe6df9d8f7f0c974cfd0dce8ed4e9e8884e73433b503ee78b4e7d" +checksum = "08b1eaa7dfddeab6036292995620bf0435712e619db6d7690605897e76975eb0" [[package]] name = "fqdn" -version = "0.4.4" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f66e93156d144bd3a9a970033d04c6fbfb4b641275d8eaa3ff83f5b9c232496" +checksum = "5eeee501d87b436020fcd3065cc981b5e4d22f2066735268b36b9d513d23e553" [[package]] name = "fragile" @@ -4131,15 +4124,17 @@ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" [[package]] name = "futures-lite" -version = "2.6.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" +checksum = "9c1155db57329dca6d018b61e76b1488ce9a2e5e44028cac420a5898f4fcef63" dependencies = [ - "fastrand", + "fastrand 2.2.0", "futures-core", "futures-io", + "memchr", "parking", "pin-project-lite", + "waker-fn", ] [[package]] @@ -4150,7 +4145,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -4160,7 +4155,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8f2f12607f92c69b12ed746fabf9ca4f5c482cba46679c1a75b874ed7c26adb" dependencies = [ "futures-io", - "rustls 0.23.21", + "rustls 0.23.18", "rustls-pki-types", ] @@ -4178,9 +4173,9 @@ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" [[package]] name = "futures-timer" -version = "3.0.3" +version = "3.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" +checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" [[package]] name = "futures-util" @@ -4215,19 +4210,6 @@ version = "0.3.55" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" -[[package]] -name = "generator" -version = "0.8.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc6bd114ceda131d3b1d665eba35788690ad37f5916457286b32ab6fd3c438dd" -dependencies = [ - "cfg-if 1.0.0", - "libc", - "log", - "rustversion", - "windows", -] - [[package]] name = "generic-array" version = "0.14.7" @@ -4267,20 +4249,18 @@ version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" dependencies = [ - "unicode-width 0.1.14", + "unicode-width", ] [[package]] name = "getrandom" -version = "0.2.15" +version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" +checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" dependencies = [ "cfg-if 1.0.0", - "js-sys", "libc", "wasi", - "wasm-bindgen", ] [[package]] @@ -4294,6 +4274,12 @@ dependencies = [ "stable_deref_trait", ] +[[package]] +name = "gimli" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" + [[package]] name = "gimli" version = "0.31.1" @@ -4301,21 +4287,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" dependencies = [ "fallible-iterator 0.3.0", - "indexmap 2.7.0", + "indexmap 2.2.6", "stable_deref_trait", ] [[package]] name = "glob" -version = "0.3.2" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" +checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" [[package]] name = "governor" -version = "0.6.3" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b" +checksum = "821239e5672ff23e2a7060901fa622950bbd80b649cdaadd78d1c1767ed14eb4" dependencies = [ "cfg-if 1.0.0", "dashmap 5.5.3", @@ -4323,12 +4309,10 @@ dependencies = [ "futures-timer", "no-std-compat", "nonzero_ext", - "parking_lot 0.12.3", - "portable-atomic", - "quanta", + "parking_lot 0.12.1", + "quanta 0.11.1", "rand 0.8.5", "smallvec", - "spinning_top", ] [[package]] @@ -4354,7 +4338,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.12", - "indexmap 2.7.0", + "indexmap 2.2.6", "slab", "tokio", "tokio-util", @@ -4363,17 +4347,17 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.7" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e" +checksum = "816ec7294445779408f36fe57bc5b7fc1cf59664059096c65f905c1c61f58069" dependencies = [ - "atomic-waker", "bytes", "fnv", "futures-core", "futures-sink", + "futures-util", "http 1.2.0", - "indexmap 2.7.0", + "indexmap 2.2.6", "slab", "tokio", "tokio-util", @@ -4382,19 +4366,9 @@ dependencies = [ [[package]] name = "half" -version = "1.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b43ede17f21864e81be2fa654110bf1e793774238d86ef8555c37e6519c0403" - -[[package]] -name = "half" -version = "2.4.1" +version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" -dependencies = [ - "cfg-if 1.0.0", - "crunchy", -] +checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" [[package]] name = "hashbrown" @@ -4437,9 +4411,9 @@ dependencies = [ [[package]] name = "hdrhistogram" -version = "7.5.4" +version = "7.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d" +checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8" dependencies = [ "byteorder", "num-traits", @@ -4451,7 +4425,7 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" dependencies = [ - "base64 0.21.7", + "base64 0.21.4", "bytes", "headers-core 0.2.0", "http 0.2.12", @@ -4466,7 +4440,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "322106e6bd0cba2d5ead589ddb8150a13d7c4217cf80d7c4f682ca994ccc6aa9" dependencies = [ - "base64 0.21.7", + "base64 0.21.4", "bytes", "headers-core 0.3.0", "http 1.2.0", @@ -4550,7 +4524,7 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5313b072ce3c597065a808dbf612c4c8e8590bdbf8b579508bf7a762c5eae6cd" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.4", ] [[package]] @@ -4573,41 +4547,41 @@ checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df" [[package]] name = "hickory-proto" -version = "0.24.2" +version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "447afdcdb8afb9d0a852af6dc65d9b285ce720ed7a59e42a8bf2e931c67bc1b5" +checksum = "07698b8420e2f0d6447a436ba999ec85d8fbf2a398bbd737b82cac4a2e96e512" dependencies = [ "async-trait", "bytes", "cfg-if 1.0.0", "data-encoding", - "enum-as-inner 0.6.1", + "enum-as-inner 0.6.0", "futures-channel", "futures-io", "futures-util", "h2 0.3.26", "http 0.2.12", - "idna 1.0.3", + "idna 0.4.0", "ipnet", "once_cell", "rand 0.8.5", "ring 0.16.20", "rustls 0.21.12", - "rustls-pemfile 1.0.4", - "thiserror 1.0.69", + "rustls-pemfile 1.0.3", + "thiserror 1.0.68", "tinyvec", "tokio", "tokio-rustls 0.24.1", "tracing", "url", - "webpki-roots 0.25.4", + "webpki-roots 0.25.2", ] [[package]] name = "hickory-resolver" -version = "0.24.2" +version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a2e2aba9c389ce5267d31cf1e4dace82390ae276b0b364ea55630b1fa1b44b4" +checksum = "28757f23aa75c98f254cf0405e6d8c25b831b32921b050a66692427679b1f243" dependencies = [ "cfg-if 1.0.0", "futures-util", @@ -4615,16 +4589,16 @@ dependencies = [ "ipconfig", "lru-cache", "once_cell", - "parking_lot 0.12.3", + "parking_lot 0.12.1", "rand 0.8.5", "resolv-conf", "rustls 0.21.12", "smallvec", - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", "tokio-rustls 0.24.1", "tracing", - "webpki-roots 0.25.4", + "webpki-roots 0.25.2", ] [[package]] @@ -4647,11 +4621,11 @@ dependencies = [ [[package]] name = "home" -version = "0.5.11" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" +checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.48.0", ] [[package]] @@ -4737,9 +4711,9 @@ dependencies = [ [[package]] name = "httparse" -version = "1.9.5" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" +checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" [[package]] name = "httpdate" @@ -4774,9 +4748,9 @@ dependencies = [ [[package]] name = "hyper" -version = "0.14.32" +version = "0.14.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" +checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" dependencies = [ "bytes", "futures-channel", @@ -4789,7 +4763,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", - "socket2 0.5.8", + "socket2 0.4.9", "tokio", "tower-service", "tracing", @@ -4798,14 +4772,14 @@ dependencies = [ [[package]] name = "hyper" -version = "1.5.2" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0" +checksum = "97818827ef4f364230e16705d4706e2897df2bb60617d6ca15d598025a3c481f" dependencies = [ "bytes", "futures-channel", "futures-util", - "h2 0.4.7", + "h2 0.4.4", "http 1.2.0", "http-body 1.0.1", "httparse", @@ -4827,13 +4801,13 @@ dependencies = [ "futures-util", "headers 0.4.0", "http 1.2.0", - "hyper 1.5.2", - "hyper-rustls 0.27.5", + "hyper 1.5.1", + "hyper-rustls 0.27.3", "hyper-util", "pin-project-lite", - "rustls-native-certs 0.7.3", + "rustls-native-certs 0.7.0", "tokio", - "tokio-rustls 0.26.1", + "tokio-rustls 0.26.0", "tower-service", ] @@ -4845,7 +4819,7 @@ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", "http 0.2.12", - "hyper 0.14.32", + "hyper 0.14.27", "log", "rustls 0.21.12", "rustls-native-certs 0.6.3", @@ -4855,22 +4829,22 @@ dependencies = [ [[package]] name = "hyper-rustls" -version = "0.27.5" +version = "0.27.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2" +checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" dependencies = [ "futures-util", "http 1.2.0", - "hyper 1.5.2", + "hyper 1.5.1", "hyper-util", "log", - "rustls 0.23.21", - "rustls-native-certs 0.8.1", + "rustls 0.23.18", + "rustls-native-certs 0.8.0", "rustls-pki-types", "tokio", - "tokio-rustls 0.26.1", + "tokio-rustls 0.26.0", "tower-service", - "webpki-roots 0.26.7", + "webpki-roots 0.26.1", ] [[package]] @@ -4881,20 +4855,20 @@ checksum = "51c227614c208f7e7c2e040526912604a1a957fe467c9c2f5b06c5d032337dab" dependencies = [ "async-socks5", "http 1.2.0", - "hyper 1.5.2", + "hyper 1.5.1", "hyper-util", - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", "tower-service", ] [[package]] name = "hyper-timeout" -version = "0.5.2" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" +checksum = "3203a961e5c83b6f5498933e78b6b263e208c197b63e9c6c53cc82ffd3f63793" dependencies = [ - "hyper 1.5.2", + "hyper 1.5.1", "hyper-util", "pin-project-lite", "tokio", @@ -4912,9 +4886,9 @@ dependencies = [ "futures-util", "http 1.2.0", "http-body 1.0.1", - "hyper 1.5.2", + "hyper 1.5.1", "pin-project-lite", - "socket2 0.5.8", + "socket2 0.5.7", "tokio", "tower-service", "tracing", @@ -4922,16 +4896,16 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.61" +version = "0.1.59" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" +checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539" dependencies = [ "android_system_properties", "core-foundation-sys", "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "windows-core 0.52.0", + "windows-core", ] [[package]] @@ -4975,8 +4949,8 @@ dependencies = [ "pkcs8", "rand 0.8.5", "rangemap", - "reqwest 0.12.12", - "ring 0.17.8", + "reqwest 0.12.9", + "ring 0.17.7", "sec1", "serde", "serde_bytes", @@ -4985,7 +4959,7 @@ dependencies = [ "sha2 0.10.8", "simple_asn1", "stop-token", - "thiserror 2.0.11", + "thiserror 2.0.3", "time", "tokio", "tower-service", @@ -5006,11 +4980,11 @@ dependencies = [ "base64 0.22.1", "bytes", "chacha20poly1305", - "clap 4.5.26", - "clap_derive 4.5.24", + "clap 4.5.20", + "clap_derive 4.5.18", "cloudflare 0.12.0 (git+https://github.com/cloudflare/cloudflare-rs.git?rev=f14720e42184ee176a97676e85ef2d2d85bc3aae)", "derive-new", - "fqdn 0.4.4", + "fqdn 0.4.1", "futures", "futures-util", "hickory-proto", @@ -5019,18 +4993,18 @@ dependencies = [ "http-body 1.0.1", "http-body-util", "humantime", - "hyper 1.5.2", + "hyper 1.5.1", "hyper-util", "instant-acme", "moka", "parse-size", "prometheus", - "prost 0.13.4", - "prost-types 0.13.4", + "prost 0.13.3", + "prost-types 0.13.3", "rand 0.8.5", "rcgen", - "reqwest 0.12.12", - "rustls 0.23.21", + "reqwest 0.12.9", + "rustls 0.23.18", "rustls-acme", "rustls-pemfile 2.2.0", "rustls-platform-verifier", @@ -5038,15 +5012,15 @@ dependencies = [ "serde", "serde_json", "sha1", - "strum", - "strum_macros", + "strum 0.26.3", + "strum_macros 0.26.4", "systemstat", - "thiserror 2.0.11", + "thiserror 2.0.3", "tokio", "tokio-io-timeout", - "tokio-rustls 0.26.1", + "tokio-rustls 0.26.0", "tokio-util", - "tower 0.5.2", + "tower 0.5.1", "tower-service", "tracing", "url", @@ -5084,7 +5058,7 @@ source = "git+https://github.com/dfinity/ic-canister-sig-creation?rev=7f9e931954 dependencies = [ "candid", "hex", - "ic-cdk 0.17.1", + "ic-cdk 0.17.0", "ic-certification 3.0.2", "ic-representation-independent-hash", "lazy_static", @@ -5092,7 +5066,7 @@ dependencies = [ "serde_bytes", "serde_cbor", "sha2 0.10.8", - "thiserror 2.0.11", + "thiserror 2.0.3", ] [[package]] @@ -5105,7 +5079,7 @@ dependencies = [ "ic-certification 3.0.2", "leb128", "nom", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -5136,12 +5110,12 @@ dependencies = [ [[package]] name = "ic-cdk" -version = "0.17.1" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "122efbcb0af5280d408a75a57b7dc6e9d92893bf6ed9cc98fe4dcff51f18b67c" +checksum = "b2abdf9341da9f9f6b451a40609cb69645a05a8e9eb7784c16209f16f2c0f76f" dependencies = [ "candid", - "ic-cdk-macros 0.17.1", + "ic-cdk-macros 0.17.0", "ic0 0.23.0", "serde", "serde_bytes", @@ -5185,22 +5159,22 @@ dependencies = [ "proc-macro2", "quote", "serde", - "serde_tokenstream 0.2.2", - "syn 2.0.96", + "serde_tokenstream 0.2.1", + "syn 2.0.87", ] [[package]] name = "ic-cdk-macros" -version = "0.17.1" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c792bf0d1621c893ccf2bcdeac4ee70121103a03030a1827031a6b3c60488944" +checksum = "b8df41980e95dead28735ab0f748c75477b0c5eab37a09a5641c78ec406a1db0" dependencies = [ "candid", "proc-macro2", "quote", "serde", - "serde_tokenstream 0.2.2", - "syn 2.0.96", + "serde_tokenstream 0.2.1", + "syn 2.0.87", ] [[package]] @@ -5210,7 +5184,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb8fd812a9e26f6aa00594546f8fbf4d4853f39c3ba794c8ff11ecf86fd3c9e4" dependencies = [ "futures", - "ic-cdk 0.17.1", + "ic-cdk 0.17.0", "ic0 0.23.0", "serde", "serde_bytes", @@ -5231,9 +5205,9 @@ dependencies = [ "leb128", "miracl_core_bls12381", "nom", - "parking_lot 0.12.3", + "parking_lot 0.12.1", "sha2 0.10.8", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -5284,7 +5258,7 @@ dependencies = [ "ic-representation-independent-hash", "serde", "serde_cbor", - "thiserror 1.0.69", + "thiserror 1.0.68", "urlencoding", ] @@ -5304,7 +5278,7 @@ dependencies = [ "ic-http-certification", "ic-response-verification", "ic-utils", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -5343,7 +5317,7 @@ dependencies = [ "log", "nom", "sha2 0.10.8", - "thiserror 1.0.69", + "thiserror 1.0.68", "urlencoding", ] @@ -5358,9 +5332,9 @@ dependencies = [ [[package]] name = "ic-stable-structures" -version = "0.6.7" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b492c5a16455ae78623eaa12ead96dda6c69a83c535b1b00789f19b381c8a24c" +checksum = "03f3044466a69802de74e710dc0300b706a05696a0531c942ca856751a13b0db" dependencies = [ "ic_principal", ] @@ -5391,7 +5365,7 @@ dependencies = [ "serde_bytes", "serde_repr", "sha2 0.10.8", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -5409,7 +5383,7 @@ dependencies = [ "serde_cbor", "serde_repr", "sha2 0.10.8", - "thiserror 2.0.11", + "thiserror 2.0.3", ] [[package]] @@ -5427,9 +5401,9 @@ dependencies = [ "serde", "serde_bytes", "sha2 0.10.8", - "strum", - "strum_macros", - "thiserror 2.0.11", + "strum 0.26.3", + "strum_macros 0.26.4", + "thiserror 2.0.3", "time", "tokio", ] @@ -5463,18 +5437,18 @@ dependencies = [ [[package]] name = "ic-wasm" -version = "0.8.6" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19fabaeecfe37f24b433c62489242fc54503d98d4cc8d0f9ef7544dfdfc0ddcb" +checksum = "45bc33855672981ae4a2f4e77c1a77d1bdc0756fb1b36ad0dbe47df77a955e2d" dependencies = [ "anyhow", "candid", - "clap 4.5.26", + "clap 4.5.20", "libflate", "rustc-demangle", "serde", "serde_json", - "thiserror 1.0.69", + "thiserror 1.0.68", "walrus", ] @@ -5532,7 +5506,7 @@ dependencies = [ "data-encoding", "serde", "sha2 0.10.8", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -5544,7 +5518,7 @@ dependencies = [ "async-trait", "candid", "serde", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -5673,7 +5647,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -5699,6 +5673,26 @@ dependencies = [ "unicode-normalization", ] +[[package]] +name = "idna" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "idna" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + [[package]] name = "idna" version = "1.0.3" @@ -5731,9 +5725,9 @@ dependencies = [ [[package]] name = "impl-more" -version = "0.1.9" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" +checksum = "206ca75c9c03ba3d4ace2460e57b189f39f43de612c2f85836e65c929701bb2d" [[package]] name = "impl-rlp" @@ -5755,13 +5749,13 @@ dependencies = [ [[package]] name = "impl-trait-for-tuples" -version = "0.2.3" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" +checksum = "11d7a9f6330b71fea57921c9b61c47ee6e84f72d394754eff6163ae67e7395eb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 1.0.109", ] [[package]] @@ -5776,33 +5770,33 @@ version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", "hashbrown 0.12.3", "serde", ] [[package]] name = "indexmap" -version = "2.7.0" +version = "2.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f" +checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" dependencies = [ "equivalent", - "hashbrown 0.15.2", + "hashbrown 0.14.5", "serde", ] [[package]] name = "indicatif" -version = "0.17.9" +version = "0.17.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281" +checksum = "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25" dependencies = [ - "console 0.15.10", + "console 0.15.7", + "instant", "number_prefix", "portable-atomic", - "unicode-width 0.2.0", - "web-time", + "unicode-width", ] [[package]] @@ -5813,12 +5807,12 @@ checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" [[package]] name = "inferno" -version = "0.11.21" +version = "0.11.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88" +checksum = "321f0f839cd44a4686e9504b0a62b4d69a50b62072144c71c68f5873c167b8d9" dependencies = [ "ahash 0.8.11", - "indexmap 2.7.0", + "indexmap 2.2.6", "is-terminal", "itoa", "log", @@ -5831,22 +5825,22 @@ dependencies = [ [[package]] name = "inferno" -version = "0.12.1" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "692eda1cc790750b9f5a5e3921ef9c117fd5498b97cfacbc910693e5b29002dc" +checksum = "75a5d75fee4d36809e6b021e4b96b686e763d365ffdb03af2bd00786353f84fe" dependencies = [ "ahash 0.8.11", - "clap 4.5.26", + "clap 4.5.20", "crossbeam-channel", "crossbeam-utils", "dashmap 6.1.0", - "env_logger 0.11.6", - "indexmap 2.7.0", + "env_logger 0.11.2", + "indexmap 2.2.6", "itoa", "log", "num-format", "once_cell", - "quick-xml 0.37.2", + "quick-xml 0.37.1", "rgb", "str_stack", ] @@ -5862,21 +5856,22 @@ dependencies = [ [[package]] name = "insta" -version = "1.42.0" +version = "1.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6513e4067e16e69ed1db5ab56048ed65db32d10ba5fc1217f5393f8f17d8b5a5" +checksum = "5d64600be34b2fcfc267740a243fa7744441bb4947a619ac4e5bb6507f35fbfc" dependencies = [ - "console 0.15.10", + "console 0.15.7", + "lazy_static", "linked-hash-map", - "once_cell", "similar", + "yaml-rust", ] [[package]] name = "instant" -version = "0.1.13" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" +checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" dependencies = [ "cfg-if 1.0.0", ] @@ -5893,14 +5888,14 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.2", - "hyper-rustls 0.27.5", + "hyper 1.5.1", + "hyper-rustls 0.27.3", "hyper-util", - "ring 0.17.8", + "ring 0.17.7", "rustls-pki-types", "serde", "serde_json", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -5918,7 +5913,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" dependencies = [ - "socket2 0.5.8", + "socket2 0.5.7", "widestring", "windows-sys 0.48.0", "winreg", @@ -5944,13 +5939,13 @@ dependencies = [ [[package]] name = "is-terminal" -version = "0.4.13" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" +checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" dependencies = [ - "hermit-abi 0.4.0", - "libc", - "windows-sys 0.52.0", + "hermit-abi 0.3.9", + "rustix", + "windows-sys 0.48.0", ] [[package]] @@ -5966,7 +5961,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ea1dc4bf0fb4904ba83ffdb98af3d9c325274e92e6e295e4151e86c96363e04" dependencies = [ "serde", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -5989,27 +5984,18 @@ dependencies = [ [[package]] name = "itertools" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" -dependencies = [ - "either", -] - -[[package]] -name = "itertools" -version = "0.13.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" dependencies = [ "either", ] [[package]] name = "itoa" -version = "1.0.14" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" +checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" [[package]] name = "jni" @@ -6021,7 +6007,7 @@ dependencies = [ "combine", "jni-sys", "log", - "thiserror 1.0.69", + "thiserror 1.0.68", "walkdir", ] @@ -6033,20 +6019,19 @@ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" [[package]] name = "jobserver" -version = "0.1.32" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" +checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" dependencies = [ "libc", ] [[package]] name = "js-sys" -version = "0.3.77" +version = "0.3.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" +checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" dependencies = [ - "once_cell", "wasm-bindgen", ] @@ -6084,7 +6069,7 @@ dependencies = [ "pest_derive", "regex", "serde_json", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -6137,9 +6122,9 @@ dependencies = [ [[package]] name = "keccak" -version = "0.1.5" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" +checksum = "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940" dependencies = [ "cpufeatures", ] @@ -6170,22 +6155,22 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.2", + "hyper 1.5.1", "hyper-http-proxy", - "hyper-rustls 0.27.5", + "hyper-rustls 0.27.3", "hyper-timeout", "hyper-util", "jsonpath-rust", "k8s-openapi", "kube-core", "pem 3.0.4", - "rustls 0.23.21", + "rustls 0.23.18", "rustls-pemfile 2.2.0", "secrecy", "serde", "serde_json", "serde_yaml 0.9.34+deprecated", - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", "tokio-util", "tower 0.4.13", @@ -6205,7 +6190,7 @@ dependencies = [ "k8s-openapi", "serde", "serde_json", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -6215,7 +6200,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0a1cbf952127589f2851ab2046af368fd20645491bb4b376f04b7f94d7a9837b" dependencies = [ "ascii-canvas", - "bit-set 0.5.3", + "bit-set", "diff", "ena", "is-terminal", @@ -6232,24 +6217,25 @@ dependencies = [ [[package]] name = "lalrpop" -version = "0.20.2" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55cb077ad656299f160924eb2912aa147d7339ea7d69e1b5517326fdcec3c1ca" +checksum = "da4081d44f4611b66c6dd725e6de3169f9f63905421e8626fcb86b6a898998b8" dependencies = [ "ascii-canvas", - "bit-set 0.5.3", + "bit-set", + "diff", "ena", - "itertools 0.11.0", - "lalrpop-util 0.20.2", + "is-terminal", + "itertools 0.10.5", + "lalrpop-util 0.20.0", "petgraph", "pico-args", "regex", - "regex-syntax 0.8.5", + "regex-syntax 0.7.5", "string_cache", "term 0.7.0", "tiny-keccak", "unicode-xid", - "walkdir", ] [[package]] @@ -6263,11 +6249,11 @@ dependencies = [ [[package]] name = "lalrpop-util" -version = "0.20.2" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553" +checksum = "3f35c735096c0293d313e8f2a641627472b83d01b937177fe76e5e2708d31e0d" dependencies = [ - "regex-automata 0.4.9", + "regex", ] [[package]] @@ -6278,11 +6264,11 @@ checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" [[package]] name = "lazy_static" -version = "1.5.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" dependencies = [ - "spin 0.9.8", + "spin 0.5.2", ] [[package]] @@ -6363,9 +6349,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.169" +version = "0.2.158" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" +checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" [[package]] name = "libflate" @@ -6393,29 +6379,30 @@ dependencies = [ [[package]] name = "libfuzzer-sys" -version = "0.4.8" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b9569d2f74e257076d8c6bfa73fb505b46b851e51ddaecc825944aa3bed17fa" +checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7" dependencies = [ "arbitrary", "cc", + "once_cell", ] [[package]] name = "libloading" -version = "0.8.6" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" +checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" dependencies = [ "cfg-if 1.0.0", - "windows-targets 0.52.6", + "winapi 0.3.9", ] [[package]] name = "libm" -version = "0.2.11" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa" +checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" [[package]] name = "libnss" @@ -6428,24 +6415,13 @@ dependencies = [ "paste", ] -[[package]] -name = "libredox" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" -dependencies = [ - "bitflags 2.8.0", - "libc", - "redox_syscall 0.5.8", -] - [[package]] name = "librocksdb-sys" version = "0.16.0+8.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ce3d60bc059831dc1c83903fb45c103f75db65c5a7bf22272764d9cc683e348c" dependencies = [ - "bindgen 0.69.5", + "bindgen 0.69.4", "bzip2-sys", "cc", "glob", @@ -6480,9 +6456,9 @@ dependencies = [ [[package]] name = "libusb1-sys" -version = "0.7.0" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da050ade7ac4ff1ba5379af847a10a10a8e284181e060105bf8d86960ce9ce0f" +checksum = "f9d0e2afce4245f2c9a418511e5af8718bcaf2fa408aefb259504d1a9cb25f27" dependencies = [ "cc", "libc", @@ -6492,9 +6468,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.21" +version = "1.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df9b68e50e6e0b26f672573834882eb57759f6db9b3be2ea3c35c91188bb4eaa" +checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b" dependencies = [ "cc", "libc", @@ -6510,15 +6486,15 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linux-raw-sys" -version = "0.4.15" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" +checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" [[package]] name = "litemap" -version = "0.7.4" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" +checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" [[package]] name = "little-loadshedder" @@ -6553,9 +6529,9 @@ dependencies = [ [[package]] name = "local-channel" -version = "0.1.5" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" +checksum = "e0a493488de5f18c8ffcba89eebb8532ffc562dc400490eb65b84893fae0b178" dependencies = [ "futures-core", "futures-sink", @@ -6564,37 +6540,37 @@ dependencies = [ [[package]] name = "local-ip-address" -version = "0.5.7" +version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "612ed4ea9ce5acfb5d26339302528a5e1e59dfed95e9e11af3c083236ff1d15d" +checksum = "66357e687a569abca487dc399a9c9ac19beb3f13991ed49f00c144e02cbd42ab" dependencies = [ "libc", "neli", - "thiserror 1.0.69", + "thiserror 1.0.68", "windows-sys 0.48.0", ] [[package]] name = "local-waker" -version = "0.1.4" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" +checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1" [[package]] name = "lock_api" -version = "0.4.12" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" +checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", "scopeguard", ] [[package]] name = "log" -version = "0.4.25" +version = "0.4.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f" +checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" [[package]] name = "logos" @@ -6625,7 +6601,7 @@ dependencies = [ "proc-macro2", "quote", "regex-syntax 0.6.29", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -6651,19 +6627,6 @@ dependencies = [ "logos-codegen", ] -[[package]] -name = "loom" -version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" -dependencies = [ - "cfg-if 1.0.0", - "generator", - "scoped-tls", - "tracing", - "tracing-subscriber", -] - [[package]] name = "lru" version = "0.7.8" @@ -6783,9 +6746,9 @@ dependencies = [ [[package]] name = "memchr" -version = "2.7.4" +version = "2.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" +checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" [[package]] name = "memfd" @@ -6798,9 +6761,9 @@ dependencies = [ [[package]] name = "memmap2" -version = "0.9.5" +version = "0.5.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" +checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" dependencies = [ "libc", ] @@ -6811,16 +6774,16 @@ version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", ] [[package]] name = "memoffset" -version = "0.9.1" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" +checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", ] [[package]] @@ -6848,14 +6811,14 @@ source = "git+https://github.com/dfinity/metrics-proxy.git?rev=b6933ed79ac07baee dependencies = [ "axum", "axum-otel-metrics", - "clap 4.5.26", + "clap 4.5.20", "duration-string", "exitcode", "futures-util", "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.2", + "hyper 1.5.1", "hyper-rustls 0.24.2", "hyper-util", "itertools 0.11.0", @@ -6870,7 +6833,7 @@ dependencies = [ "regex", "reqwest 0.11.27", "rustls 0.21.12", - "rustls-pemfile 1.0.4", + "rustls-pemfile 1.0.3", "serde", "serde_yaml 0.8.26", "simple_logger", @@ -6889,9 +6852,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] name = "mime_guess" -version = "2.0.5" +version = "2.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" +checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" dependencies = [ "mime", "unicase", @@ -6925,18 +6888,18 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.8.3" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924" +checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" dependencies = [ - "adler2", + "adler", ] [[package]] name = "mio" -version = "0.8.11" +version = "0.8.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" +checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" dependencies = [ "libc", "log", @@ -6946,12 +6909,12 @@ dependencies = [ [[package]] name = "mio" -version = "1.0.3" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" +checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" dependencies = [ + "hermit-abi 0.3.9", "libc", - "log", "wasi", "windows-sys 0.52.0", ] @@ -6964,9 +6927,9 @@ checksum = "d07cbe42e2a8dd41df582fb8e00fc24d920b5561cc301fcb6d14e2e0434b500f" [[package]] name = "mockall" -version = "0.13.1" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2" +checksum = "d4c28b3fb6d753d28c20e826cd46ee611fda1cf3cde03a443a974043247c065a" dependencies = [ "cfg-if 1.0.0", "downcast", @@ -6978,31 +6941,26 @@ dependencies = [ [[package]] name = "mockall_derive" -version = "0.13.1" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898" +checksum = "341014e7f530314e9a1fdbc7400b244efea7122662c96bfa248c31da5bfb2020" dependencies = [ "cfg-if 1.0.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "mockito" -version = "1.6.1" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "652cd6d169a36eaf9d1e6bce1a221130439a966d7f27858af66a33a66e9c4ee2" +checksum = "f8d3038e23466858569c2d30a537f691fa0d53b51626630ae08262943e3bbb8b" dependencies = [ "assert-json-diff", - "bytes", "colored", - "futures-util", - "http 1.2.0", - "http-body 1.0.1", - "http-body-util", - "hyper 1.5.2", - "hyper-util", + "futures", + "hyper 0.14.27", "log", "rand 0.8.5", "regex", @@ -7014,23 +6972,25 @@ dependencies = [ [[package]] name = "moka" -version = "0.12.10" +version = "0.12.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" +checksum = "32cf62eb4dd975d2dde76432fb1075c49e3ee2331cf36f1f8fd4b66550d32b6f" dependencies = [ "async-lock", + "async-trait", "crossbeam-channel", "crossbeam-epoch", "crossbeam-utils", - "event-listener 5.4.0", + "event-listener 5.3.1", "futures-util", - "loom", - "parking_lot 0.12.3", - "portable-atomic", + "once_cell", + "parking_lot 0.12.1", + "quanta 0.12.3", "rustc_version", "smallvec", "tagptr", - "thiserror 1.0.69", + "thiserror 1.0.68", + "triomphe", "uuid", ] @@ -7077,15 +7037,15 @@ dependencies = [ [[package]] name = "multimap" -version = "0.10.0" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" +checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" [[package]] name = "neli" -version = "0.6.5" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93062a0dce6da2517ea35f301dfc88184ce18d3601ec786a727a87bf535deca9" +checksum = "1100229e06604150b3becd61a4965d5c70f3be1759544ea7274166f4be41ef43" dependencies = [ "byteorder", "libc", @@ -7095,9 +7055,9 @@ dependencies = [ [[package]] name = "neli-proc-macros" -version = "0.1.4" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c8034b7fbb6f9455b2a96c19e6edf8dc9fc34c70449938d8ee3b4df363f61fe" +checksum = "c168194d373b1e134786274020dae7fc5513d565ea2ebb9bc9ff17ffb69106d4" dependencies = [ "either", "proc-macro2", @@ -7108,9 +7068,9 @@ dependencies = [ [[package]] name = "new_debug_unreachable" -version = "1.0.6" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" +checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" [[package]] name = "nftables" @@ -7121,9 +7081,9 @@ dependencies = [ "serde", "serde_json", "serde_path_to_error", - "strum", - "strum_macros", - "thiserror 1.0.69", + "strum 0.26.3", + "strum_macros 0.26.4", + "thiserror 1.0.68", ] [[package]] @@ -7155,10 +7115,10 @@ version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "cfg-if 1.0.0", "libc", - "memoffset 0.9.1", + "memoffset 0.9.0", ] [[package]] @@ -7167,7 +7127,7 @@ version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "cfg-if 1.0.0", "cfg_aliases", "libc", @@ -7223,7 +7183,7 @@ version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", "num-integer", "num-traits", ] @@ -7269,7 +7229,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.4", "itoa", ] @@ -7284,11 +7244,11 @@ dependencies = [ [[package]] name = "num-iter" -version = "0.1.45" +version = "0.1.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" +checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", "num-integer", "num-traits", ] @@ -7299,7 +7259,7 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", "num-bigint 0.2.6", "num-integer", "num-traits", @@ -7311,7 +7271,7 @@ version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", "libm", ] @@ -7327,30 +7287,30 @@ dependencies = [ [[package]] name = "num_enum" -version = "0.7.3" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" +checksum = "70bf6736f74634d299d00086f02986875b3c2d924781a6a2cb6c201e73da0ceb" dependencies = [ "num_enum_derive", ] [[package]] name = "num_enum_derive" -version = "0.7.3" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" +checksum = "56ea360eafe1022f7cc56cd7b869ed57330fb2453d0c7831d99b74c65d2f5597" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "num_threads" -version = "0.1.7" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" +checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" dependencies = [ "libc", ] @@ -7361,6 +7321,15 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" +[[package]] +name = "object" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" +dependencies = [ + "memchr", +] + [[package]] name = "object" version = "0.36.7" @@ -7369,36 +7338,36 @@ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" dependencies = [ "crc32fast", "hashbrown 0.15.2", - "indexmap 2.7.0", + "indexmap 2.2.6", "memchr", ] [[package]] name = "oid-registry" -version = "0.7.1" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9" +checksum = "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d" dependencies = [ "asn1-rs", ] [[package]] name = "once_cell" -version = "1.20.2" +version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" +checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "oorandom" -version = "11.1.4" +version = "11.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9" +checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" [[package]] name = "opaque-debug" -version = "0.3.1" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" +checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" [[package]] name = "open-fastrlp" @@ -7406,7 +7375,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "786393f80485445794f6043fd3138854dd109cc6c4bd1a6383db304c9ce9b9ce" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.4", "auto_impl", "bytes", "ethereum-types", @@ -7435,7 +7404,7 @@ dependencies = [ "byteorder", "md-5", "sha2 0.9.9", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -7446,9 +7415,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.104" +version = "0.9.102" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" +checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" dependencies = [ "cc", "libc", @@ -7484,26 +7453,26 @@ checksum = "1e32339a5dc40459130b3bd269e9892439f55b33e772d2a9d402a789baaf4e8a" dependencies = [ "futures-core", "futures-sink", - "indexmap 2.7.0", + "indexmap 2.2.6", "js-sys", "once_cell", "pin-project-lite", - "thiserror 1.0.69", + "thiserror 1.0.68", "urlencoding", ] [[package]] name = "opentelemetry" -version = "0.27.1" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab70038c28ed37b97d8ed414b6429d343a8bbf44c9f79ec854f3a643029ba6d7" +checksum = "0f3cebff57f7dbd1255b44d8bddc2cebeb0ea677dbaa2e25a3070a91b318f660" dependencies = [ "futures-core", "futures-sink", "js-sys", + "once_cell", "pin-project-lite", - "thiserror 1.0.69", - "tracing", + "thiserror 1.0.68", ] [[package]] @@ -7515,11 +7484,11 @@ dependencies = [ "async-trait", "futures-core", "http 1.2.0", - "opentelemetry 0.27.1", + "opentelemetry 0.27.0", "opentelemetry-proto", "opentelemetry_sdk 0.27.1", - "prost 0.13.4", - "thiserror 1.0.69", + "prost 0.13.3", + "thiserror 1.0.68", "tokio", "tonic", "tracing", @@ -7557,9 +7526,9 @@ version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6e05acbfada5ec79023c85368af14abd0b307c015e9064d249b2a950ef459a6" dependencies = [ - "opentelemetry 0.27.1", + "opentelemetry 0.27.0", "opentelemetry_sdk 0.27.1", - "prost 0.13.4", + "prost 0.13.3", "tonic", ] @@ -7584,7 +7553,7 @@ dependencies = [ "js-sys", "once_cell", "pin-project-lite", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -7599,7 +7568,7 @@ dependencies = [ "js-sys", "once_cell", "pin-project-lite", - "thiserror 1.0.69", + "thiserror 1.0.68", "urlencoding", ] @@ -7618,7 +7587,7 @@ dependencies = [ "opentelemetry_api 0.18.0", "percent-encoding", "rand 0.8.5", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -7638,7 +7607,7 @@ dependencies = [ "percent-encoding", "rand 0.8.5", "regex", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -7655,10 +7624,10 @@ dependencies = [ "glob", "once_cell", "opentelemetry 0.21.0", - "ordered-float 4.6.0", + "ordered-float 4.2.0", "percent-encoding", "rand 0.8.5", - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", "tokio-stream", ] @@ -7674,11 +7643,11 @@ dependencies = [ "futures-executor", "futures-util", "glob", - "opentelemetry 0.27.1", + "opentelemetry 0.27.0", "percent-encoding", "rand 0.8.5", "serde_json", - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", "tokio-stream", "tracing", @@ -7704,9 +7673,9 @@ dependencies = [ [[package]] name = "ordered-float" -version = "4.6.0" +version = "4.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951" +checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e" dependencies = [ "num-traits", ] @@ -7746,11 +7715,11 @@ dependencies = [ [[package]] name = "parity-scale-codec" -version = "3.6.12" +version = "3.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee" +checksum = "dd8e946cc0cc711189c0b0249fb8b599cbeeab9784d83c415719368bb8d4ac64" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.4", "bitvec", "byte-slice-cast", "impl-trait-for-tuples", @@ -7760,11 +7729,11 @@ dependencies = [ [[package]] name = "parity-scale-codec-derive" -version = "3.6.12" +version = "3.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d830939c76d294956402033aee57a6da7b438f2294eb94864c37b0569053a42c" +checksum = "312270ee71e1cd70289dacf597cab7b207aa107d2f28191c2ae45b2ece18a260" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", "syn 1.0.109", @@ -7772,9 +7741,9 @@ dependencies = [ [[package]] name = "parking" -version = "2.2.1" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" +checksum = "e52c774a4c39359c1d1c52e43f73dd91a75a614652c825408eec30c95a9b2067" [[package]] name = "parking_lot" @@ -7789,12 +7758,12 @@ dependencies = [ [[package]] name = "parking_lot" -version = "0.12.3" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" +checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" dependencies = [ "lock_api", - "parking_lot_core 0.9.10", + "parking_lot_core 0.9.8", ] [[package]] @@ -7813,15 +7782,15 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.10" +version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" +checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" dependencies = [ "cfg-if 1.0.0", "libc", - "redox_syscall 0.5.8", + "redox_syscall 0.3.5", "smallvec", - "windows-targets 0.52.6", + "windows-targets 0.48.5", ] [[package]] @@ -7848,9 +7817,9 @@ dependencies = [ [[package]] name = "pcre2" -version = "0.2.9" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3be55c43ac18044541d58d897e8f4c55157218428953ebd39d86df3ba0286b2b" +checksum = "4c9d53a8ea5fc3d3568d3de4bebc12606fd0eb8234c602576f1f1ee4880488a7" dependencies = [ "libc", "log", @@ -7859,9 +7828,9 @@ dependencies = [ [[package]] name = "pcre2-sys" -version = "0.2.9" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "550f5d18fb1b90c20b87e161852c10cde77858c3900c5059b5ad2a1449f11d8a" +checksum = "25b8a7b5253a4465b873a21ee7e8d6ec561a57eed5d319621bec36bea35c86ae" dependencies = [ "cc", "libc", @@ -7910,20 +7879,20 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "pest" -version = "2.7.15" +version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc" +checksum = "c022f1e7b65d6a24c0dbbd5fb344c66881bc01f3e5ae74a1c8100f2f985d98a4" dependencies = [ "memchr", - "thiserror 2.0.11", + "thiserror 1.0.68", "ucd-trie", ] [[package]] name = "pest_derive" -version = "2.7.15" +version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e" +checksum = "35513f630d46400a977c4cb58f78e1bfbe01434316e60c37d27b9ad6139c66d8" dependencies = [ "pest", "pest_generator", @@ -7931,22 +7900,22 @@ dependencies = [ [[package]] name = "pest_generator" -version = "2.7.15" +version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b" +checksum = "bc9fc1b9e7057baba189b5c626e2d6f40681ae5b6eb064dc7c7834101ec8123a" dependencies = [ "pest", "pest_meta", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "pest_meta" -version = "2.7.15" +version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea" +checksum = "1df74e9e7ec4053ceb980e7c0c8bd3594e977fde1af91daba9c928e8e8c6708d" dependencies = [ "once_cell", "pest", @@ -7955,9 +7924,9 @@ dependencies = [ [[package]] name = "pest_vm" -version = "2.7.15" +version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8151168a80801131f6e0e79d6c84fa337ccd2493c99e59de027354c3e6fca0b" +checksum = "e42d84ab5b383273ab842bdc50249b5fea1cec928bcf3338e7749113f25bab7a" dependencies = [ "pest", "pest_meta", @@ -7965,12 +7934,12 @@ dependencies = [ [[package]] name = "petgraph" -version = "0.6.5" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" +checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" dependencies = [ "fixedbitset", - "indexmap 2.7.0", + "indexmap 2.2.6", ] [[package]] @@ -7984,12 +7953,12 @@ dependencies = [ [[package]] name = "phf" -version = "0.11.3" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" +checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" dependencies = [ "phf_macros", - "phf_shared 0.11.3", + "phf_shared 0.11.2", ] [[package]] @@ -8014,25 +7983,25 @@ dependencies = [ [[package]] name = "phf_generator" -version = "0.11.3" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" +checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" dependencies = [ - "phf_shared 0.11.3", + "phf_shared 0.11.2", "rand 0.8.5", ] [[package]] name = "phf_macros" -version = "0.11.3" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" +checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" dependencies = [ - "phf_generator 0.11.3", - "phf_shared 0.11.3", + "phf_generator 0.11.2", + "phf_shared 0.11.2", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -8041,16 +8010,16 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" dependencies = [ - "siphasher 0.3.11", + "siphasher", ] [[package]] name = "phf_shared" -version = "0.11.3" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" +checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" dependencies = [ - "siphasher 1.0.1", + "siphasher", ] [[package]] @@ -8061,29 +8030,29 @@ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" [[package]] name = "pin-project" -version = "1.1.8" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916" +checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.8" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb" +checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "pin-project-lite" -version = "0.2.16" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" +checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" [[package]] name = "pin-utils" @@ -8093,13 +8062,13 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "ping" -version = "0.5.2" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "122ee1f5a6843bec84fcbd5c6ba3622115337a6b8965b93a61aad347648f4e8d" +checksum = "985c8af0584bf35ecfb95a65b74a457782966e1ab8f2c94c01697a36432a5814" dependencies = [ "rand 0.8.5", - "socket2 0.4.10", - "thiserror 1.0.69", + "socket2 0.4.9", + "thiserror 1.0.68", ] [[package]] @@ -8109,7 +8078,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" dependencies = [ "atomic-waker", - "fastrand", + "fastrand 2.2.0", "futures-io", ] @@ -8136,15 +8105,15 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.31" +version = "0.3.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" +checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" [[package]] name = "plotters" -version = "0.3.7" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747" +checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" dependencies = [ "num-traits", "plotters-backend", @@ -8155,15 +8124,15 @@ dependencies = [ [[package]] name = "plotters-backend" -version = "0.3.7" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a" +checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" [[package]] name = "plotters-svg" -version = "0.3.7" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670" +checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" dependencies = [ "plotters-backend", ] @@ -8179,7 +8148,7 @@ dependencies = [ "hex", "ic-certification 2.6.0", "ic-transport-types 0.37.1", - "reqwest 0.12.12", + "reqwest 0.12.9", "schemars", "serde", "serde_bytes", @@ -8187,9 +8156,9 @@ dependencies = [ "serde_json", "sha2 0.10.8", "slog", - "strum", - "strum_macros", - "thiserror 1.0.69", + "strum 0.26.3", + "strum_macros 0.26.4", + "thiserror 1.0.68", "tokio", "tracing", "tracing-appender", @@ -8199,9 +8168,9 @@ dependencies = [ [[package]] name = "polling" -version = "3.7.4" +version = "3.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f" +checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" dependencies = [ "cfg-if 1.0.0", "concurrent-queue", @@ -8225,19 +8194,18 @@ dependencies = [ [[package]] name = "portable-atomic" -version = "1.10.0" +version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6" +checksum = "31114a898e107c51bb1609ffaf55a0e011cf6a4d7f1170d0015a165082c0338b" [[package]] name = "postcard" -version = "1.1.1" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "170a2601f67cc9dba8edd8c4870b15f71a6a2dc196daec8c83f72b59dff628a8" +checksum = "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8" dependencies = [ "cobs", - "embedded-io 0.4.0", - "embedded-io 0.6.1", + "embedded-io", "serde", ] @@ -8258,30 +8226,27 @@ dependencies = [ "cfg-if 1.0.0", "criterion", "findshlibs", - "inferno 0.11.21", + "inferno 0.11.19", "libc", "log", "nix 0.26.4", "once_cell", - "parking_lot 0.12.3", - "prost 0.12.6", - "prost-build 0.12.6", - "prost-derive 0.12.6", + "parking_lot 0.12.1", + "prost 0.12.2", + "prost-build 0.12.2", + "prost-derive 0.12.2", "sha2 0.10.8", "smallvec", "symbolic-demangle", "tempfile", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] name = "ppv-lite86" -version = "0.2.20" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" -dependencies = [ - "zerocopy", -] +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" [[package]] name = "precomputed-hash" @@ -8291,9 +8256,9 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" [[package]] name = "predicates" -version = "3.1.3" +version = "3.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573" +checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97" dependencies = [ "anstyle", "difflib", @@ -8305,15 +8270,15 @@ dependencies = [ [[package]] name = "predicates-core" -version = "1.0.9" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" +checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" [[package]] name = "predicates-tree" -version = "1.0.12" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" +checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" dependencies = [ "predicates-core", "termtree", @@ -8339,7 +8304,7 @@ checksum = "b55c4d17d994b637e2f4daf6e5dc5d660d209d5642377d675d7a1c3ab69fa579" dependencies = [ "arrayvec 0.5.2", "typed-arena", - "unicode-width 0.1.14", + "unicode-width", ] [[package]] @@ -8354,29 +8319,29 @@ dependencies = [ [[package]] name = "pretty_assertions" -version = "1.4.1" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" +checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" dependencies = [ "diff", - "yansi 1.0.1", + "yansi", ] [[package]] name = "prettyplease" -version = "0.2.29" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac" +checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" dependencies = [ "proc-macro2", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "primeorder" -version = "0.13.6" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" +checksum = "3c2fcef82c0ec6eefcc179b978446c399b3cdf73c392c35604e399eee6df1ee3" dependencies = [ "elliptic-curve", ] @@ -8397,22 +8362,32 @@ dependencies = [ [[package]] name = "priority-queue" -version = "1.4.0" +version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0bda9164fe05bc9225752d54aae413343c36f684380005398a6a8fde95fe785" +checksum = "fff39edfcaec0d64e8d0da38564fad195d2d51b680940295fcc307366e101e61" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", "indexmap 1.9.3", "serde", ] +[[package]] +name = "proc-macro-crate" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" +dependencies = [ + "once_cell", + "toml_edit 0.19.15", +] + [[package]] name = "proc-macro-crate" version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" dependencies = [ - "toml_edit", + "toml_edit 0.22.20", ] [[package]] @@ -8447,9 +8422,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "1.0.93" +version = "1.0.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" +checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" dependencies = [ "unicode-ident", ] @@ -8474,7 +8449,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "hex", "lazy_static", "procfs-core", @@ -8487,7 +8462,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "hex", ] @@ -8502,33 +8477,33 @@ dependencies = [ "lazy_static", "libc", "memchr", - "parking_lot 0.12.3", + "parking_lot 0.12.1", "procfs 0.16.0", "protobuf", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] name = "prometheus-parse" -version = "0.2.5" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "811031bea65e5a401fb2e1f37d802cca6601e204ac463809a3189352d13b78a5" +checksum = "0c2aa5feb83bf4b2c8919eaf563f51dbab41183de73ba2353c0e03cd7b6bd892" dependencies = [ "chrono", - "itertools 0.12.1", + "itertools 0.10.5", "once_cell", "regex", ] [[package]] name = "proptest" -version = "1.6.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" +checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" dependencies = [ - "bit-set 0.8.0", - "bit-vec 0.8.0", - "bitflags 2.8.0", + "bit-set", + "bit-vec", + "bitflags 2.6.0", "lazy_static", "num-traits", "rand 0.8.5", @@ -8542,118 +8517,120 @@ dependencies = [ [[package]] name = "proptest-derive" -version = "0.5.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ee1c9ac207483d5e7db4940700de86a9aae46ef90c48b57f99fe7edb8345e49" +checksum = "6ff7ff745a347b87471d859a377a9a404361e7efc2a971d73424a6d183c0fc77" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "prost" -version = "0.12.6" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29" +checksum = "5a5a410fc7882af66deb8d01d01737353cf3ad6204c408177ba494291a626312" dependencies = [ "bytes", - "prost-derive 0.12.6", + "prost-derive 0.12.2", ] [[package]] name = "prost" -version = "0.13.4" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c0fef6c4230e4ccf618a35c59d7ede15dea37de8427500f50aff708806e42ec" +checksum = "7b0487d90e047de87f984913713b85c601c05609aad5b0df4b4573fbf69aa13f" dependencies = [ "bytes", - "prost-derive 0.13.4", + "prost-derive 0.13.3", ] [[package]] name = "prost-build" -version = "0.12.6" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4" +checksum = "1fa3d084c8704911bfefb2771be2f9b6c5c0da7343a71e0021ee3c665cada738" dependencies = [ "bytes", - "heck 0.5.0", - "itertools 0.12.1", + "heck 0.4.1", + "itertools 0.11.0", "log", "multimap", "once_cell", "petgraph", "prettyplease", - "prost 0.12.6", - "prost-types 0.12.6", + "prost 0.12.2", + "prost-types 0.12.2", "regex", - "syn 2.0.96", + "syn 2.0.87", "tempfile", + "which", ] [[package]] name = "prost-build" -version = "0.13.4" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0f3e5beed80eb580c68e2c600937ac2c4eedabdfd5ef1e5b7ea4f3fba84497b" +checksum = "0c1318b19085f08681016926435853bbf7858f9c082d0999b80550ff5d9abe15" dependencies = [ + "bytes", "heck 0.5.0", - "itertools 0.13.0", + "itertools 0.12.0", "log", "multimap", "once_cell", "petgraph", "prettyplease", - "prost 0.13.4", - "prost-types 0.13.4", + "prost 0.13.3", + "prost-types 0.13.3", "regex", - "syn 2.0.96", + "syn 2.0.87", "tempfile", ] [[package]] name = "prost-derive" -version = "0.12.6" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" +checksum = "065717a5dfaca4a83d2fe57db3487b311365200000551d7a364e715dbf4346bc" dependencies = [ "anyhow", - "itertools 0.12.1", + "itertools 0.11.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "prost-derive" -version = "0.13.4" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3" +checksum = "e9552f850d5f0964a4e4d0bf306459ac29323ddfbae05e35a7c0d35cb0803cc5" dependencies = [ "anyhow", - "itertools 0.13.0", + "itertools 0.12.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "prost-types" -version = "0.12.6" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0" +checksum = "8339f32236f590281e2f6368276441394fcd1b2133b549cc895d0ae80f2f9a52" dependencies = [ - "prost 0.12.6", + "prost 0.12.2", ] [[package]] name = "prost-types" -version = "0.13.4" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc2f1e56baa61e93533aebc21af4d2134b70f66275e0fcdf3cbe43d77ff7e8fc" +checksum = "4759aa0d3a6232fb8dbdb97b61de2c20047c68aca932c7ed76da9d788508d670" dependencies = [ - "prost 0.13.4", + "prost 0.13.3", ] [[package]] @@ -8670,9 +8647,9 @@ checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" [[package]] name = "psm" -version = "0.1.24" +version = "0.1.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "200b9ff220857e53e184257720a14553b2f4aa02577d2ed9842d45d4b9654810" +checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" dependencies = [ "cc", ] @@ -8699,19 +8676,19 @@ dependencies = [ [[package]] name = "publicsuffix" -version = "2.3.0" +version = "2.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf" +checksum = "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457" dependencies = [ - "idna 1.0.3", + "idna 0.3.0", "psl-types", ] [[package]] name = "pulley-interpreter" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8324e531de91a3c25021a30fb7862d39cc516b61fbb801176acb5ff279ea887b" +checksum = "403a1a95f4c18a45c86c7bff13df00347afd0abcbf2e54af273c837339ffcf77" dependencies = [ "cranelift-bitset", "log", @@ -8720,14 +8697,30 @@ dependencies = [ [[package]] name = "quanta" -version = "0.12.5" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab" +dependencies = [ + "crossbeam-utils", + "libc", + "mach2", + "once_cell", + "raw-cpuid 10.7.0", + "wasi", + "web-sys", + "winapi 0.3.9", +] + +[[package]] +name = "quanta" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e" +checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5" dependencies = [ "crossbeam-utils", "libc", "once_cell", - "raw-cpuid", + "raw-cpuid 11.1.0", "wasi", "web-sys", "winapi 0.3.9", @@ -8750,9 +8743,9 @@ dependencies = [ [[package]] name = "quick-xml" -version = "0.37.2" +version = "0.37.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "165859e9e55f79d67b96c5d96f4e88b6f2695a1972849c15a6a3f5c59fc2c003" +checksum = "f22f29bdff3987b4d8632ef95fd6424ec7e4e0a57e2f4fc63e489e75357f6a03" dependencies = [ "memchr", ] @@ -8770,61 +8763,57 @@ dependencies = [ [[package]] name = "quinn" -version = "0.11.6" +version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef" +checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684" dependencies = [ "bytes", "pin-project-lite", "quinn-proto", "quinn-udp", - "rustc-hash 2.1.0", - "rustls 0.23.21", - "socket2 0.5.8", - "thiserror 2.0.11", + "rustc-hash 2.0.0", + "rustls 0.23.18", + "socket2 0.5.7", + "thiserror 1.0.68", "tokio", "tracing", ] [[package]] name = "quinn-proto" -version = "0.11.9" +version = "0.11.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d" +checksum = "ea0a9b3a42929fad8a7c3de7f86ce0814cfa893328157672680e9fb1145549c5" dependencies = [ "bytes", - "getrandom", "rand 0.8.5", - "ring 0.17.8", - "rustc-hash 2.1.0", - "rustls 0.23.21", - "rustls-pki-types", + "ring 0.17.7", + "rustc-hash 2.0.0", + "rustls 0.23.18", "slab", - "thiserror 2.0.11", + "thiserror 1.0.68", "tinyvec", "tracing", - "web-time", ] [[package]] name = "quinn-udp" -version = "0.5.9" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904" +checksum = "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b" dependencies = [ - "cfg_aliases", "libc", "once_cell", - "socket2 0.5.8", + "socket2 0.5.7", "tracing", "windows-sys 0.59.0", ] [[package]] name = "quote" -version = "1.0.38" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" +checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" dependencies = [ "proc-macro2", ] @@ -9001,9 +8990,9 @@ dependencies = [ [[package]] name = "rangemap" -version = "1.5.1" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f60fcc7d6849342eff22c4350c8b9a989ee8ceabc4b481253e8946b9fe83d684" +checksum = "977b1e897f9d764566891689e642653e5ed90c6895106acd005eb4c1d0203991" [[package]] name = "ratelimit" @@ -9012,17 +9001,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c1bb13e2dcfa2232ac6887157aad8d9b3fe4ca57f7c8d4938ff5ea9be742300" dependencies = [ "clocksource", - "parking_lot 0.12.3", - "thiserror 1.0.69", + "parking_lot 0.12.1", + "thiserror 1.0.68", ] [[package]] name = "raw-cpuid" -version = "11.3.0" +version = "10.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6928fa44c097620b706542d428957635951bade7143269085389d42c8a4927e" +checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" dependencies = [ - "bitflags 2.8.0", + "bitflags 1.3.2", +] + +[[package]] +name = "raw-cpuid" +version = "11.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb9ee317cfe3fbd54b36a511efc1edd42e216903c9cd575e686dd68a2ba90d8d" +dependencies = [ + "bitflags 2.6.0", ] [[package]] @@ -9047,12 +9045,12 @@ dependencies = [ [[package]] name = "rcgen" -version = "0.13.2" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" +checksum = "54077e1872c46788540de1ea3d7f4ccb1983d12f9aa909b234468676c1a36779" dependencies = [ "pem 3.0.4", - "ring 0.17.8", + "ring 0.17.7", "rustls-pki-types", "time", "yasna", @@ -9079,22 +9077,22 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.5.8" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" +checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" dependencies = [ - "bitflags 2.8.0", + "bitflags 1.3.2", ] [[package]] name = "redox_users" -version = "0.4.6" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" +checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" dependencies = [ "getrandom", - "libredox", - "thiserror 1.0.69", + "redox_syscall 0.2.16", + "thiserror 1.0.68", ] [[package]] @@ -9107,19 +9105,19 @@ dependencies = [ "bumpalo", "hashbrown 0.15.2", "log", - "rustc-hash 2.1.0", + "rustc-hash 2.0.0", "smallvec", ] [[package]] name = "regex" -version = "1.11.1" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" +checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.4.9", + "regex-automata 0.4.8", "regex-syntax 0.8.5", ] @@ -9134,9 +9132,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.9" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" +checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" dependencies = [ "aho-corasick", "memchr", @@ -9175,9 +9173,9 @@ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2" [[package]] name = "rend" -version = "0.4.2" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" +checksum = "a2571463863a6bd50c32f94402933f03457a3fbaf697a707c5be741e459f08fd" dependencies = [ "bytecheck", ] @@ -9189,7 +9187,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" dependencies = [ "async-compression", - "base64 0.21.7", + "base64 0.21.4", "bytes", "encoding_rs", "futures-core", @@ -9197,7 +9195,7 @@ dependencies = [ "h2 0.3.26", "http 0.2.12", "http-body 0.4.6", - "hyper 0.14.32", + "hyper 0.14.27", "hyper-rustls 0.24.2", "ipnet", "js-sys", @@ -9207,7 +9205,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "rustls 0.21.12", - "rustls-pemfile 1.0.4", + "rustls-pemfile 1.0.3", "serde", "serde_json", "serde_urlencoded", @@ -9221,28 +9219,28 @@ dependencies = [ "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "webpki-roots 0.25.4", + "webpki-roots 0.25.2", "winreg", ] [[package]] name = "reqwest" -version = "0.12.12" +version = "0.12.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" +checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" dependencies = [ "base64 0.22.1", "bytes", "futures-channel", "futures-core", "futures-util", - "h2 0.4.7", + "h2 0.4.4", "hickory-resolver", "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.2", - "hyper-rustls 0.27.5", + "hyper 1.5.1", + "hyper-rustls 0.27.3", "hyper-util", "ipnet", "js-sys", @@ -9253,26 +9251,25 @@ dependencies = [ "percent-encoding", "pin-project-lite", "quinn", - "rustls 0.23.21", - "rustls-native-certs 0.8.1", + "rustls 0.23.18", + "rustls-native-certs 0.8.0", "rustls-pemfile 2.2.0", "rustls-pki-types", "serde", "serde_json", "serde_urlencoded", - "sync_wrapper 1.0.2", + "sync_wrapper 1.0.1", "tokio", - "tokio-rustls 0.26.1", + "tokio-rustls 0.26.0", "tokio-socks", "tokio-util", - "tower 0.5.2", "tower-service", "url", "wasm-bindgen", "wasm-bindgen-futures", "wasm-streams", "web-sys", - "webpki-roots 0.26.7", + "webpki-roots 0.26.1", "windows-registry", ] @@ -9298,9 +9295,9 @@ dependencies = [ [[package]] name = "rgb" -version = "0.8.50" +version = "0.8.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a" +checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8" dependencies = [ "bytemuck", ] @@ -9322,17 +9319,16 @@ dependencies = [ [[package]] name = "ring" -version = "0.17.8" +version = "0.17.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" +checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" dependencies = [ "cc", - "cfg-if 1.0.0", "getrandom", "libc", "spin 0.9.8", "untrusted 0.9.0", - "windows-sys 0.52.0", + "windows-sys 0.48.0", ] [[package]] @@ -9346,13 +9342,12 @@ dependencies = [ [[package]] name = "rkyv" -version = "0.7.45" +version = "0.7.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" +checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58" dependencies = [ "bitvec", "bytecheck", - "bytes", "hashbrown 0.12.3", "ptr_meta", "rend", @@ -9364,9 +9359,9 @@ dependencies = [ [[package]] name = "rkyv_derive" -version = "0.7.45" +version = "0.7.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" +checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d" dependencies = [ "proc-macro2", "quote", @@ -9422,9 +9417,9 @@ dependencies = [ [[package]] name = "rsa" -version = "0.9.7" +version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519" +checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" dependencies = [ "const-oid", "digest 0.10.7", @@ -9466,15 +9461,15 @@ dependencies = [ "regex", "relative-path", "rustc_version", - "syn 2.0.96", + "syn 2.0.87", "unicode-ident", ] [[package]] name = "rusb" -version = "0.9.4" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab9f9ff05b63a786553a4c02943b74b34a988448671001e9a27e2f0565cc05a4" +checksum = "45fff149b6033f25e825cbb7b2c625a11ee8e6dac09264d49beb125e39aa97bf" dependencies = [ "libc", "libusb1-sys", @@ -9500,7 +9495,7 @@ version = "1.36.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b082d80e3e3cc52b2ed634388d436fe1f4de6af5786cc2de9ba9737527bdf555" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.4", "borsh", "bytes", "num-traits", @@ -9522,9 +9517,9 @@ dependencies = [ [[package]] name = "rustc-demangle" -version = "0.1.24" +version = "0.1.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" +checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" [[package]] name = "rustc-hash" @@ -9534,9 +9529,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustc-hash" -version = "2.1.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497" +checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" [[package]] name = "rustc-hex" @@ -9546,9 +9541,9 @@ checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" [[package]] name = "rustc_version" -version = "0.4.1" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" dependencies = [ "semver", ] @@ -9564,15 +9559,15 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.43" +version = "0.38.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6" +checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89" dependencies = [ - "bitflags 2.8.0", - "errno 0.3.10", + "bitflags 2.6.0", + "errno 0.3.8", "libc", "linux-raw-sys", - "windows-sys 0.59.0", + "windows-sys 0.52.0", ] [[package]] @@ -9582,7 +9577,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" dependencies = [ "log", - "ring 0.17.8", + "ring 0.17.7", "rustls-webpki 0.101.7", "sct", ] @@ -9594,7 +9589,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" dependencies = [ "log", - "ring 0.17.8", + "ring 0.17.7", "rustls-pki-types", "rustls-webpki 0.102.8", "subtle", @@ -9603,15 +9598,15 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.21" +version = "0.23.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8" +checksum = "9c9cc1d47e243d655ace55ed38201c19ae02c148ae56412ab8750e8f0166ab7f" dependencies = [ "brotli 7.0.0", - "brotli-decompressor", + "brotli-decompressor 4.0.1", "log", "once_cell", - "ring 0.17.8", + "ring 0.17.7", "rustls-pki-types", "rustls-webpki 0.102.8", "subtle", @@ -9636,11 +9631,11 @@ dependencies = [ "log", "pem 3.0.4", "rcgen", - "ring 0.17.8", + "ring 0.17.7", "serde", "serde_json", - "thiserror 2.0.11", - "webpki-roots 0.26.7", + "thiserror 2.0.3", + "webpki-roots 0.26.1", "x509-parser", ] @@ -9651,43 +9646,44 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" dependencies = [ "openssl-probe", - "rustls-pemfile 1.0.4", + "rustls-pemfile 1.0.3", "schannel", - "security-framework 2.11.1", + "security-framework", ] [[package]] name = "rustls-native-certs" -version = "0.7.3" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" +checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" dependencies = [ "openssl-probe", "rustls-pemfile 2.2.0", "rustls-pki-types", "schannel", - "security-framework 2.11.1", + "security-framework", ] [[package]] name = "rustls-native-certs" -version = "0.8.1" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" +checksum = "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a" dependencies = [ "openssl-probe", + "rustls-pemfile 2.2.0", "rustls-pki-types", "schannel", - "security-framework 3.2.0", + "security-framework", ] [[package]] name = "rustls-pemfile" -version = "1.0.4" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" +checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" dependencies = [ - "base64 0.21.7", + "base64 0.21.4", ] [[package]] @@ -9701,12 +9697,9 @@ dependencies = [ [[package]] name = "rustls-pki-types" -version = "1.10.1" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37" -dependencies = [ - "web-time", -] +checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" [[package]] name = "rustls-platform-verifier" @@ -9714,16 +9707,16 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4c7dc240fec5517e6c4eab3310438636cfe6391dfc345ba013109909a90d136" dependencies = [ - "core-foundation 0.9.4", + "core-foundation", "core-foundation-sys", "jni", "log", "once_cell", - "rustls 0.23.21", - "rustls-native-certs 0.7.3", + "rustls 0.23.18", + "rustls-native-certs 0.7.0", "rustls-platform-verifier-android", "rustls-webpki 0.102.8", - "security-framework 2.11.1", + "security-framework", "security-framework-sys", "webpki-root-certs", "windows-sys 0.52.0", @@ -9741,7 +9734,7 @@ version = "0.101.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" dependencies = [ - "ring 0.17.8", + "ring 0.17.7", "untrusted 0.9.0", ] @@ -9751,16 +9744,16 @@ version = "0.102.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" dependencies = [ - "ring 0.17.8", + "ring 0.17.7", "rustls-pki-types", "untrusted 0.9.0", ] [[package]] name = "rustversion" -version = "1.0.19" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" +checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" [[package]] name = "rusty-fork" @@ -9776,9 +9769,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.18" +version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" +checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" [[package]] name = "same-file" @@ -9791,45 +9784,45 @@ dependencies = [ [[package]] name = "scale-info" -version = "2.11.6" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "346a3b32eba2640d17a9cb5927056b08f3de90f65b72fe09402c2ad07d684d0b" +checksum = "35c0a159d0c45c12b20c5a844feb1fe4bea86e28f17b92a5f0c42193634d3782" dependencies = [ "cfg-if 1.0.0", - "derive_more 1.0.0", + "derive_more", "parity-scale-codec", "scale-info-derive", ] [[package]] name = "scale-info-derive" -version = "2.11.6" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6630024bf739e2179b91fb424b28898baf819414262c5d376677dbff1fe7ebf" +checksum = "912e55f6d20e0e80d63733872b40e1227c0bce1e1ab81ba67d696339bfd7fd29" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", - "syn 2.0.96", + "syn 1.0.109", ] [[package]] name = "schannel" -version = "0.1.27" +version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" +checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.48.0", ] [[package]] name = "schemars" -version = "0.8.21" +version = "0.8.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92" +checksum = "45a28f4c49489add4ce10783f7911893516f15afe45d015608d41faca6bc4d29" dependencies = [ "dyn-clone", - "indexmap 2.7.0", + "indexmap 2.2.6", "schemars_derive", "serde", "serde_json", @@ -9837,14 +9830,14 @@ dependencies = [ [[package]] name = "schemars_derive" -version = "0.8.21" +version = "0.8.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e" +checksum = "c767fd6fa65d9ccf9cf026122c1b555f2ef9a4f0cea69da4d7dbc3e258d30967" dependencies = [ "proc-macro2", "quote", "serde_derive_internals", - "syn 2.0.96", + "syn 1.0.109", ] [[package]] @@ -9884,12 +9877,12 @@ dependencies = [ [[package]] name = "sct" -version = "0.7.1" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" +checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" dependencies = [ - "ring 0.17.8", - "untrusted 0.9.0", + "ring 0.16.20", + "untrusted 0.7.1", ] [[package]] @@ -9937,12 +9930,12 @@ dependencies = [ [[package]] name = "secp256k1" -version = "0.29.1" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113" +checksum = "0e0cc0f1cf93f4969faf3ea1c7d8a9faed25918d96affa959720823dfe86d4f3" dependencies = [ "bitcoin_hashes 0.14.0", - "secp256k1-sys 0.10.1", + "secp256k1-sys 0.10.0", ] [[package]] @@ -9965,9 +9958,9 @@ dependencies = [ [[package]] name = "secp256k1-sys" -version = "0.10.1" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9" +checksum = "1433bd67156263443f14d603720b082dd3121779323fce20cba2aa07b874bc1b" dependencies = [ "cc", ] @@ -9988,32 +9981,19 @@ version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" dependencies = [ - "bitflags 2.8.0", - "core-foundation 0.9.4", + "bitflags 2.6.0", + "core-foundation", "core-foundation-sys", "libc", "num-bigint 0.4.6", "security-framework-sys", ] -[[package]] -name = "security-framework" -version = "3.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" -dependencies = [ - "bitflags 2.8.0", - "core-foundation 0.10.0", - "core-foundation-sys", - "libc", - "security-framework-sys", -] - [[package]] name = "security-framework-sys" -version = "2.14.0" +version = "2.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" +checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" dependencies = [ "core-foundation-sys", "libc", @@ -10025,9 +10005,9 @@ version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4eb30575f3638fc8f6815f448d50cb1a2e255b0897985c8c59f4d37b72a07b06" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "cssparser", - "derive_more 0.99.18", + "derive_more", "fxhash", "log", "new_debug_unreachable", @@ -10040,9 +10020,9 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.24" +version = "1.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba" +checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" dependencies = [ "serde", ] @@ -10103,7 +10083,7 @@ version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5" dependencies = [ - "half 1.8.3", + "half", "serde", ] @@ -10115,25 +10095,25 @@ checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "serde_derive_internals" -version = "0.29.1" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" +checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 1.0.109", ] [[package]] name = "serde_json" -version = "1.0.135" +version = "1.0.132" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" +checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" dependencies = [ "itoa", "memchr", @@ -10143,9 +10123,9 @@ dependencies = [ [[package]] name = "serde_path_to_error" -version = "0.1.16" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" +checksum = "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335" dependencies = [ "itoa", "serde", @@ -10161,7 +10141,7 @@ dependencies = [ "futures", "percent-encoding", "serde", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -10182,7 +10162,7 @@ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -10198,14 +10178,14 @@ dependencies = [ [[package]] name = "serde_tokenstream" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64060d864397305347a78851c51588fd283767e7e7589829e8121d65512340f1" +checksum = "8790a7c3fe883e443eaa2af6f705952bc5d6e8671a220b9335c8cae92c037e74" dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -10267,7 +10247,7 @@ dependencies = [ "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -10288,7 +10268,7 @@ version = "0.9.34+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" dependencies = [ - "indexmap 2.7.0", + "indexmap 2.2.6", "itoa", "ryu", "serde", @@ -10389,20 +10369,20 @@ dependencies = [ [[package]] name = "signal-hook-mio" -version = "0.2.4" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd" +checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" dependencies = [ "libc", - "mio 0.8.11", + "mio 0.8.10", "signal-hook", ] [[package]] name = "signal-hook-registry" -version = "1.4.2" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" +checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" dependencies = [ "libc", ] @@ -10419,25 +10399,25 @@ dependencies = [ [[package]] name = "simdutf8" -version = "0.1.5" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" +checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" [[package]] name = "similar" -version = "2.6.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e" +checksum = "2aeaf503862c419d66959f5d7ca015337d864e9c49485d771b732e2a20453597" [[package]] name = "simple_asn1" -version = "0.6.3" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" +checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" dependencies = [ "num-bigint 0.4.6", "num-traits", - "thiserror 2.0.11", + "thiserror 1.0.68", "time", ] @@ -10479,19 +10459,13 @@ version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" -[[package]] -name = "siphasher" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" - [[package]] name = "slab" version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", ] [[package]] @@ -10580,9 +10554,9 @@ dependencies = [ [[package]] name = "slotmap" -version = "1.0.7" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" +checksum = "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342" dependencies = [ "version_check", ] @@ -10614,14 +10588,14 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "socket2" -version = "0.4.10" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" +checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" dependencies = [ "libc", "winapi 0.3.9", @@ -10629,9 +10603,9 @@ dependencies = [ [[package]] name = "socket2" -version = "0.5.8" +version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8" +checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" dependencies = [ "libc", "windows-sys 0.52.0", @@ -10649,15 +10623,6 @@ version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" -[[package]] -name = "spinning_top" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" -dependencies = [ - "lock_api", -] - [[package]] name = "spki" version = "0.7.3" @@ -10694,15 +10659,15 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "stacker" -version = "0.1.17" +version = "0.1.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "799c883d55abdb5e98af1a7b3f23b9b6de8ecada0ecac058672d7635eb48ca7b" +checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce" dependencies = [ "cc", "cfg-if 1.0.0", "libc", "psm", - "windows-sys 0.59.0", + "winapi 0.3.9", ] [[package]] @@ -10737,7 +10702,7 @@ checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" dependencies = [ "new_debug_unreachable", "once_cell", - "parking_lot 0.12.3", + "parking_lot 0.12.1", "phf_shared 0.10.0", "precomputed-hash", "serde", @@ -10776,7 +10741,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta-derive", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -10787,7 +10752,16 @@ checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", +] + +[[package]] +name = "strum" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" +dependencies = [ + "strum_macros 0.25.3", ] [[package]] @@ -10796,7 +10770,20 @@ version = "0.26.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" dependencies = [ - "strum_macros", + "strum_macros 0.26.4", +] + +[[package]] +name = "strum_macros" +version = "0.25.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" +dependencies = [ + "heck 0.4.1", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.87", ] [[package]] @@ -10809,14 +10796,14 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "stubborn-io" -version = "0.3.5" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "373a722240991e091384a571e1fd8abde15eca4494a1a2bff95dbf603d15a866" +checksum = "b261fbca19f25e0ac726f6efb3c3f53949e18ba4b126c16f8ca625730daa1a9c" dependencies = [ "log", "rand 0.8.5", @@ -10837,9 +10824,9 @@ checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142" [[package]] name = "symbolic-common" -version = "12.13.2" +version = "12.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8150eae9699e3c73a3e6431dc1f80d87748797c0457336af23e94c1de619ed24" +checksum = "fac08504d60cf5bdffeb8a6a028f1a4868a5da1098bb19eb46239440039163fb" dependencies = [ "debugid", "memmap2", @@ -10849,9 +10836,9 @@ dependencies = [ [[package]] name = "symbolic-demangle" -version = "12.13.2" +version = "12.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95f4a9846f7a8933b6d198c022faa2c9bd89e1a970bed9d9a98d25708bf8de17" +checksum = "8b212728d4f6c527c1d50d6169e715f6e02d849811843c13e366d8ca6d0cf5c4" dependencies = [ "rustc-demangle", "symbolic-common", @@ -10870,9 +10857,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.96" +version = "2.0.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" +checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" dependencies = [ "proc-macro2", "quote", @@ -10887,9 +10874,9 @@ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" [[package]] name = "sync_wrapper" -version = "1.0.2" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" +checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" dependencies = [ "futures-core", ] @@ -10902,7 +10889,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -10912,7 +10899,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" dependencies = [ "bitflags 1.3.2", - "core-foundation 0.9.4", + "core-foundation", "system-configuration-sys", ] @@ -10928,9 +10915,9 @@ dependencies = [ [[package]] name = "systemstat" -version = "0.2.4" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "668a4db78b439df482c238f559e4ea869017f9e62ef0a059c8bfcd841a4df544" +checksum = "a24aec24a9312c83999a28e3ef9db7e2afd5c64bf47725b758cdc1cafd5b0bd2" dependencies = [ "bytesize", "lazy_static", @@ -10960,9 +10947,9 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "tar" -version = "0.4.43" +version = "0.4.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c65998313f8e17d0d553d28f91a0df93e4dbbbf770279c7bc21ca0f09ea1a1f6" +checksum = "ec96d2ffad078296368d46ff1cb309be1c23c513b4ab0e22a45de0185275ac96" dependencies = [ "filetime", "libc", @@ -10991,7 +10978,7 @@ dependencies = [ "serde", "static_assertions", "tarpc-plugins", - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", "tokio-serde", "tokio-util", @@ -11012,13 +10999,12 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.15.0" +version = "3.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" +checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" dependencies = [ "cfg-if 1.0.0", - "fastrand", - "getrandom", + "fastrand 2.2.0", "once_cell", "rustix", "windows-sys 0.59.0", @@ -11086,9 +11072,9 @@ dependencies = [ [[package]] name = "termtree" -version = "0.5.1" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683" +checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "test-strategy" @@ -11099,7 +11085,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -11115,9 +11101,9 @@ dependencies = [ [[package]] name = "textplots" -version = "0.8.6" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f59b64803118dbff62f92842b3154a2c802dfd8e18660132bbcbfb141c637ae3" +checksum = "2171116bd71c738068fe42091b1509d70135a768443c9afd6c179b83dc6cdc79" dependencies = [ "drawille", "rgb", @@ -11125,48 +11111,48 @@ dependencies = [ [[package]] name = "textwrap" -version = "0.16.1" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" +checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" [[package]] name = "thiserror" -version = "1.0.69" +version = "1.0.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +checksum = "02dd99dc800bbb97186339685293e1cc5d9df1f8fae2d0aecd9ff1c77efea892" dependencies = [ - "thiserror-impl 1.0.69", + "thiserror-impl 1.0.68", ] [[package]] name = "thiserror" -version = "2.0.11" +version = "2.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" +checksum = "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa" dependencies = [ - "thiserror-impl 2.0.11", + "thiserror-impl 2.0.3", ] [[package]] name = "thiserror-impl" -version = "1.0.69" +version = "1.0.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +checksum = "a7c61ec9a6f64d2793d8a45faba21efbe3ced62a886d44c36a009b2b519b4c7e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "thiserror-impl" -version = "2.0.11" +version = "2.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" +checksum = "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -11177,9 +11163,9 @@ checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820" [[package]] name = "thread_local" -version = "1.1.8" +version = "1.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" +checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" dependencies = [ "cfg-if 1.0.0", "once_cell", @@ -11227,9 +11213,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.37" +version = "0.3.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" +checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" dependencies = [ "deranged", "itoa", @@ -11250,9 +11236,9 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" [[package]] name = "time-macros" -version = "0.2.19" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" +checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" dependencies = [ "num-conv", "time-core", @@ -11289,9 +11275,9 @@ dependencies = [ [[package]] name = "tinyvec" -version = "1.8.1" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" +checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" dependencies = [ "tinyvec_macros", ] @@ -11320,23 +11306,23 @@ checksum = "8d9ef545650e79f30233c0003bcc2504d7efac6dad25fca40744de773fe2049c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "tokio" -version = "1.43.0" +version = "1.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" +checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" dependencies = [ "backtrace", "bytes", "libc", - "mio 1.0.3", - "parking_lot 0.12.3", + "mio 1.0.2", + "parking_lot 0.12.1", "pin-project-lite", "signal-hook-registry", - "socket2 0.5.8", + "socket2 0.5.7", "tokio-macros", "windows-sys 0.52.0", ] @@ -11353,13 +11339,13 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.5.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" +checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -11397,11 +11383,12 @@ dependencies = [ [[package]] name = "tokio-rustls" -version = "0.26.1" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37" +checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" dependencies = [ - "rustls 0.23.21", + "rustls 0.23.18", + "rustls-pki-types", "tokio", ] @@ -11429,7 +11416,7 @@ checksum = "0d4770b8024672c1101b3f6733eab95b18007dbe0847a8afe341fcf79e06043f" dependencies = [ "either", "futures-util", - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", ] @@ -11503,13 +11490,24 @@ checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" [[package]] name = "toml_edit" -version = "0.22.22" +version = "0.19.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" +dependencies = [ + "indexmap 2.2.6", + "toml_datetime", + "winnow 0.5.17", +] + +[[package]] +name = "toml_edit" +version = "0.22.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" +checksum = "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d" dependencies = [ - "indexmap 2.7.0", + "indexmap 2.2.6", "toml_datetime", - "winnow", + "winnow 0.6.20", ] [[package]] @@ -11523,17 +11521,17 @@ dependencies = [ "axum", "base64 0.22.1", "bytes", - "h2 0.4.7", + "h2 0.4.4", "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.2", + "hyper 1.5.1", "hyper-timeout", "hyper-util", "percent-encoding", "pin-project", - "prost 0.13.4", - "socket2 0.5.8", + "prost 0.13.3", + "socket2 0.5.7", "tokio", "tokio-stream", "tower 0.4.13", @@ -11550,10 +11548,10 @@ checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11" dependencies = [ "prettyplease", "proc-macro2", - "prost-build 0.13.4", - "prost-types 0.13.4", + "prost-build 0.13.3", + "prost-types 0.13.3", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -11578,17 +11576,17 @@ dependencies = [ [[package]] name = "tower" -version = "0.5.2" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" +checksum = "2873938d487c3cfb9aed7546dc9f2711d867c9f90c46b889989a2cb84eba6b4f" dependencies = [ "futures-core", "futures-util", "hdrhistogram", - "indexmap 2.7.0", + "indexmap 2.2.6", "pin-project-lite", "slab", - "sync_wrapper 1.0.2", + "sync_wrapper 0.1.2", "tokio", "tokio-util", "tower-layer", @@ -11602,8 +11600,8 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" dependencies = [ - "base64 0.21.7", - "bitflags 2.8.0", + "base64 0.21.4", + "bitflags 2.6.0", "bytes", "http 1.2.0", "http-body 1.0.1", @@ -11623,7 +11621,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697" dependencies = [ "async-compression", - "bitflags 2.8.0", + "bitflags 2.6.0", "bytes", "futures-core", "http 1.2.0", @@ -11632,7 +11630,7 @@ dependencies = [ "pin-project-lite", "tokio", "tokio-util", - "tower 0.5.2", + "tower 0.5.1", "tower-layer", "tower-service", "tracing", @@ -11679,17 +11677,17 @@ dependencies = [ [[package]] name = "tower_governor" -version = "0.4.3" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aea939ea6cfa7c4880f3e7422616624f97a567c16df67b53b11f0d03917a8e46" +checksum = "313fa625fea5790ed56360a30ea980e41229cf482b4835801a67ef1922bf63b9" dependencies = [ "axum", "forwarded-header-value", "governor", "http 1.2.0", "pin-project", - "thiserror 1.0.69", - "tower 0.5.2", + "thiserror 1.0.68", + "tower 0.4.13", "tracing", ] @@ -11712,7 +11710,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf" dependencies = [ "crossbeam-channel", - "thiserror 1.0.69", + "thiserror 1.0.68", "time", "tracing-subscriber", ] @@ -11725,7 +11723,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -11781,7 +11779,7 @@ checksum = "97a971f6058498b5c0f1affa23e7ea202057a7301dbff68e968b2d578bcbd053" dependencies = [ "js-sys", "once_cell", - "opentelemetry 0.27.1", + "opentelemetry 0.27.0", "opentelemetry_sdk 0.27.1", "smallvec", "tracing", @@ -11853,6 +11851,12 @@ dependencies = [ "serde_json", ] +[[package]] +name = "triomphe" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee8098afad3fb0c54a9007aab6804558410503ad676d4633f9c2559a00ac0f" + [[package]] name = "trust-dns-proto" version = "0.22.0" @@ -11871,7 +11875,7 @@ dependencies = [ "lazy_static", "rand 0.8.5", "smallvec", - "thiserror 1.0.69", + "thiserror 1.0.68", "tinyvec", "tokio", "tracing", @@ -11889,10 +11893,10 @@ dependencies = [ "ipconfig", "lazy_static", "lru-cache", - "parking_lot 0.12.3", + "parking_lot 0.12.1", "resolv-conf", "smallvec", - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", "tracing", "trust-dns-proto", @@ -11900,9 +11904,9 @@ dependencies = [ [[package]] name = "try-lock" -version = "0.2.5" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" +checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "tungstenite" @@ -11918,7 +11922,7 @@ dependencies = [ "log", "rand 0.8.5", "sha1", - "thiserror 1.0.69", + "thiserror 1.0.68", "url", "utf-8", ] @@ -11957,9 +11961,9 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" [[package]] name = "ucd-trie" -version = "0.1.7" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971" +checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" [[package]] name = "uint" @@ -11975,12 +11979,11 @@ dependencies = [ [[package]] name = "ulid" -version = "1.1.4" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f294bff79170ed1c5633812aff1e565c35d993a36e757f9bc0accf5eec4e6045" +checksum = "7e37c4b6cbcc59a8dcd09a6429fbc7890286bcbb79215cea7b38a3c4c0921d93" dependencies = [ "rand 0.8.5", - "web-time", ] [[package]] @@ -11991,54 +11994,51 @@ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" [[package]] name = "unicase" -version = "2.8.1" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" +checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" +dependencies = [ + "version_check", +] [[package]] name = "unicode-bidi" -version = "0.3.18" +version = "0.3.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" +checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" [[package]] name = "unicode-ident" -version = "1.0.14" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" [[package]] name = "unicode-normalization" -version = "0.1.24" +version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" +checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" dependencies = [ "tinyvec", ] [[package]] name = "unicode-segmentation" -version = "1.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" - -[[package]] -name = "unicode-width" -version = "0.1.14" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" +checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" [[package]] name = "unicode-width" -version = "0.2.0" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" +checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" [[package]] name = "unicode-xid" -version = "0.2.6" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" +checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" [[package]] name = "universal-hash" @@ -12080,9 +12080,9 @@ dependencies = [ [[package]] name = "url" -version = "2.5.4" +version = "2.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" +checksum = "8d157f1b96d14500ffdc1f10ba712e780825526c03d9a49b4d0324b0d9113ada" dependencies = [ "form_urlencoded", "idna 1.0.3", @@ -12110,9 +12110,9 @@ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" [[package]] name = "utf8-width" -version = "0.1.7" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" +checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1" [[package]] name = "utf8_iter" @@ -12122,15 +12122,15 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" [[package]] name = "utf8parse" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" +checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.12.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4" +checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" dependencies = [ "getrandom", "serde", @@ -12150,9 +12150,9 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "version_check" -version = "0.9.5" +version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "vrl" @@ -12163,9 +12163,9 @@ dependencies = [ "bytes", "cfg-if 1.0.0", "chrono", - "lalrpop 0.20.2", + "lalrpop 0.20.0", "once_cell", - "ordered-float 4.6.0", + "ordered-float 4.2.0", "regex", "serde", "serde_json", @@ -12192,11 +12192,17 @@ dependencies = [ "libc", ] +[[package]] +name = "waker-fn" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" + [[package]] name = "walkdir" -version = "2.5.0" +version = "2.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" +checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" dependencies = [ "same-file", "winapi-util", @@ -12204,9 +12210,9 @@ dependencies = [ [[package]] name = "walrus" -version = "0.21.3" +version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "501ace8ec3492754a9b3c4b59eac7159ceff8414f9e43a05029fe8ef43b9218f" +checksum = "467611cafbc8a84834b77d2b4bb191fd2f5769752def8340407e924390c6883b" dependencies = [ "anyhow", "gimli 0.26.2", @@ -12250,7 +12256,7 @@ dependencies = [ "futures-util", "headers 0.3.9", "http 0.2.12", - "hyper 0.14.32", + "hyper 0.14.27", "log", "mime", "mime_guess", @@ -12278,48 +12284,47 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.100" +version = "0.2.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" +checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e" dependencies = [ "cfg-if 1.0.0", "once_cell", - "rustversion", "wasm-bindgen-macro", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.100" +version = "0.2.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" +checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358" dependencies = [ "bumpalo", "log", + "once_cell", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.50" +version = "0.4.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" +checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" dependencies = [ "cfg-if 1.0.0", "js-sys", - "once_cell", "wasm-bindgen", "web-sys", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.100" +version = "0.2.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" +checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -12327,25 +12332,22 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.100" +version = "0.2.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" +checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.100" +version = "0.2.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" -dependencies = [ - "unicode-ident", -] +checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" [[package]] name = "wasm-encoder" @@ -12377,16 +12379,6 @@ dependencies = [ "wasmparser 0.221.2", ] -[[package]] -name = "wasm-encoder" -version = "0.223.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e636076193fa68103e937ac951b5f2f587624097017d764b8984d9c0f149464" -dependencies = [ - "leb128", - "wasmparser 0.223.0", -] - [[package]] name = "wasm-smith" version = "0.212.0" @@ -12396,7 +12388,7 @@ dependencies = [ "anyhow", "arbitrary", "flagset", - "indexmap 2.7.0", + "indexmap 2.2.6", "leb128", "wasm-encoder 0.212.0", "wasmparser 0.212.0", @@ -12404,9 +12396,9 @@ dependencies = [ [[package]] name = "wasm-streams" -version = "0.4.2" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" +checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" dependencies = [ "futures-util", "js-sys", @@ -12421,8 +12413,8 @@ version = "0.119.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c35daf77afb4f9b14016625144a391085ec2ca99ca9cc53ed291bb53ab5278d" dependencies = [ - "bitflags 2.8.0", - "indexmap 2.7.0", + "bitflags 2.6.0", + "indexmap 2.2.6", "semver", ] @@ -12433,9 +12425,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d28bc49ba1e5c5b61ffa7a2eace10820443c4b7d1c0b144109261d14570fdf8" dependencies = [ "ahash 0.8.11", - "bitflags 2.8.0", + "bitflags 2.6.0", "hashbrown 0.14.5", - "indexmap 2.7.0", + "indexmap 2.2.6", "semver", "serde", ] @@ -12447,9 +12439,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca917a21307d3adf2b9857b94dd05ebf8496bdcff4437a9b9fb3899d3e6c74e7" dependencies = [ "ahash 0.8.11", - "bitflags 2.8.0", + "bitflags 2.6.0", "hashbrown 0.14.5", - "indexmap 2.7.0", + "indexmap 2.2.6", "semver", "serde", ] @@ -12460,24 +12452,13 @@ version = "0.221.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9845c470a2e10b61dd42c385839cdd6496363ed63b5c9e420b5488b77bd22083" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "hashbrown 0.15.2", - "indexmap 2.7.0", + "indexmap 2.2.6", "semver", "serde", ] -[[package]] -name = "wasmparser" -version = "0.223.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5a99faceb1a5a84dd6084ec4bfa4b2ab153b5793b43fd8f58b89232634afc35" -dependencies = [ - "bitflags 2.8.0", - "indexmap 2.7.0", - "semver", -] - [[package]] name = "wasmprinter" version = "0.217.0" @@ -12502,23 +12483,23 @@ dependencies = [ [[package]] name = "wasmtime" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edd30973c65eceb0f37dfcc430d83abd5eb24015fdfcab6912f52949287e04f0" +checksum = "f639ecae347b9a2227e453a7b7671e84370a0b61f47a15e0390fe9b7725e47b3" dependencies = [ "anyhow", - "bitflags 2.8.0", + "bitflags 2.6.0", "bumpalo", "cc", "cfg-if 1.0.0", "hashbrown 0.14.5", - "indexmap 2.7.0", + "indexmap 2.2.6", "libc", "libm", "log", "mach2", "memfd", - "object", + "object 0.36.7", "once_cell", "paste", "postcard", @@ -12546,23 +12527,23 @@ dependencies = [ [[package]] name = "wasmtime-asm-macros" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6c21dd30d1f3f93ee390ac1a7ec304ecdbfdab6390e1add41a1f52727b0992b" +checksum = "882a18800471cfc063c8b3ccf75723784acc3fd534009ac09421f2fac2fcdcec" dependencies = [ "cfg-if 1.0.0", ] [[package]] name = "wasmtime-component-macro" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f948a6ef3119d52c9f12936970de28ddf3f9bea04bc65571f4a92d2e5ab38f4" +checksum = "eb5c0a77c9e1927c3d471f53cc13767c3d3438e5d5ffd394e3eb31c86445fd60" dependencies = [ "anyhow", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", "wasmtime-component-util", "wasmtime-wit-bindgen", "wit-parser", @@ -12570,15 +12551,15 @@ dependencies = [ [[package]] name = "wasmtime-component-util" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9275aa01ceaaa2fa6c0ecaa5267518d80b9d6e9ae7c7ea42f4c6e073e6a69ef" +checksum = "43702ca98bf5162eca0573db691ed9ecd36d716f8c6688410fe26ec16b6f9bcb" [[package]] name = "wasmtime-cranelift" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0701a44a323267aae4499672dae422b266cee3135a23b640972ec8c0e10a44a2" +checksum = "20070aa5b75080a8932ec328419faf841df2bc6ceb16b55b0df2b952098392a2" dependencies = [ "anyhow", "cfg-if 1.0.0", @@ -12588,12 +12569,12 @@ dependencies = [ "cranelift-frontend", "cranelift-native", "gimli 0.31.1", - "itertools 0.12.1", + "itertools 0.12.0", "log", - "object", + "object 0.36.7", "smallvec", "target-lexicon", - "thiserror 1.0.69", + "thiserror 1.0.68", "wasmparser 0.221.2", "wasmtime-environ", "wasmtime-versioned-export-macros", @@ -12601,17 +12582,17 @@ dependencies = [ [[package]] name = "wasmtime-environ" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "264c968c1b81d340355ece2be0bc31a10f567ccb6ce08512c3b7d10e26f3cbe5" +checksum = "2604ddb24879d4dc1dedcb7081d7a8e017259bce916fdae097a97db52cbaab80" dependencies = [ "anyhow", "cranelift-bitset", "cranelift-entity", "gimli 0.31.1", - "indexmap 2.7.0", + "indexmap 2.2.6", "log", - "object", + "object 0.36.7", "postcard", "serde", "serde_derive", @@ -12624,9 +12605,9 @@ dependencies = [ [[package]] name = "wasmtime-fiber" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78505221fd5bd7b07b4e1fa2804edea49dc231e626ad6861adc8f531812973e6" +checksum = "98593412d2b167ebe2b59d4a17a184978a72f976b53b3a0ec05629451079ac1d" dependencies = [ "anyhow", "cc", @@ -12639,9 +12620,9 @@ dependencies = [ [[package]] name = "wasmtime-jit-icache-coherence" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9bedb677ca1b549d98f95e9e1f9251b460090d99a2c196a0614228c064bf2e59" +checksum = "d40d7722b9e1fbeae135715710a8a2570b1e6cf72b74dd653962d89831c6c70d" dependencies = [ "anyhow", "cfg-if 1.0.0", @@ -12651,31 +12632,31 @@ dependencies = [ [[package]] name = "wasmtime-slab" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "564905638c132c275d365c1fa074f0b499790568f43148d29de84ccecfb5cb31" +checksum = "8579c335220b4ece9aa490a0e8b46de78cd342b195ab21ff981d095e14b52383" [[package]] name = "wasmtime-versioned-export-macros" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e91092e6cf77390eeccee273846a9327f3e8f91c3c6280f60f37809f0e62d29" +checksum = "d7de0a56fb0a69b185968f2d7a9ba54750920a806470dff7ad8de91ac06d277e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "wasmtime-winch" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b111d909dc604c741bd8ac2f4af373eaa5c68c34b5717271bcb687688212cef8" +checksum = "abd309943c443f5590d12f9aba9ba63c481091c955a0a14de0c2a9e0e3aaeca9" dependencies = [ "anyhow", "cranelift-codegen", "gimli 0.31.1", - "object", + "object 0.36.7", "target-lexicon", "wasmparser 0.221.2", "wasmtime-cranelift", @@ -12685,13 +12666,13 @@ dependencies = [ [[package]] name = "wasmtime-wit-bindgen" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f38f7a5eb2f06f53fe943e7fb8bf4197f7cf279f1bc52c0ce56e9d3ffd750a4" +checksum = "969f83022dac3435d6469edb582ceed04cfe32aa44dc3ef16e5cb55574633df8" dependencies = [ "anyhow", "heck 0.5.0", - "indexmap 2.7.0", + "indexmap 2.2.6", "wit-parser", ] @@ -12704,37 +12685,24 @@ dependencies = [ "bumpalo", "leb128", "memchr", - "unicode-width 0.1.14", + "unicode-width", "wasm-encoder 0.212.0", ] -[[package]] -name = "wast" -version = "223.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d59b2ba8a2ff9f06194b7be9524f92e45e70149f4dacc0d0c7ad92b59ac875e4" -dependencies = [ - "bumpalo", - "leb128", - "memchr", - "unicode-width 0.2.0", - "wasm-encoder 0.223.0", -] - [[package]] name = "wat" -version = "1.223.0" +version = "1.212.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "662786915c427e4918ff01eabb3c4756d4d947cd8f635761526b4cc9da2eaaad" +checksum = "c74ca7f93f11a5d6eed8499f2a8daaad6e225cab0151bc25a091fff3b987532f" dependencies = [ - "wast 223.0.0", + "wast", ] [[package]] name = "web-sys" -version = "0.3.77" +version = "0.3.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" +checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" dependencies = [ "js-sys", "wasm-bindgen", @@ -12752,24 +12720,24 @@ dependencies = [ [[package]] name = "webpki-root-certs" -version = "0.26.7" +version = "0.26.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cd5da49bdf1f30054cfe0b8ce2958b8fbeb67c4d82c8967a598af481bef255c" +checksum = "e8c6dfa3ac045bc517de14c7b1384298de1dbd229d38e08e169d9ae8c170937c" dependencies = [ "rustls-pki-types", ] [[package]] name = "webpki-roots" -version = "0.25.4" +version = "0.25.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" +checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" [[package]] name = "webpki-roots" -version = "0.26.7" +version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e" +checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" dependencies = [ "rustls-pki-types", ] @@ -12800,9 +12768,9 @@ dependencies = [ [[package]] name = "widestring" -version = "1.1.0" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" +checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" [[package]] name = "winapi" @@ -12828,11 +12796,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.9" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" +checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" dependencies = [ - "windows-sys 0.59.0", + "winapi 0.3.9", ] [[package]] @@ -12843,9 +12811,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "winch-codegen" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6232f40a795be2ce10fc761ed3b403825126a60d12491ac556ea104a932fd18a" +checksum = "9110decc2983ed94de904804dcd979ba59cbabc78a94fec6b1d8468ec513d0f6" dependencies = [ "anyhow", "cranelift-codegen", @@ -12858,16 +12826,6 @@ dependencies = [ "wasmtime-environ", ] -[[package]] -name = "windows" -version = "0.58.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" -dependencies = [ - "windows-core 0.58.0", - "windows-targets 0.52.6", -] - [[package]] name = "windows-core" version = "0.52.0" @@ -12877,41 +12835,6 @@ dependencies = [ "windows-targets 0.52.6", ] -[[package]] -name = "windows-core" -version = "0.58.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" -dependencies = [ - "windows-implement", - "windows-interface", - "windows-result", - "windows-strings", - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-implement" -version = "0.58.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.96", -] - -[[package]] -name = "windows-interface" -version = "0.58.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.96", -] - [[package]] name = "windows-registry" version = "0.2.0" @@ -12942,6 +12865,15 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-sys" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" +dependencies = [ + "windows-targets 0.42.2", +] + [[package]] name = "windows-sys" version = "0.48.0" @@ -12969,6 +12901,21 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-targets" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" +dependencies = [ + "windows_aarch64_gnullvm 0.42.2", + "windows_aarch64_msvc 0.42.2", + "windows_i686_gnu 0.42.2", + "windows_i686_msvc 0.42.2", + "windows_x86_64_gnu 0.42.2", + "windows_x86_64_gnullvm 0.42.2", + "windows_x86_64_msvc 0.42.2", +] + [[package]] name = "windows-targets" version = "0.48.5" @@ -13000,6 +12947,12 @@ dependencies = [ "windows_x86_64_msvc 0.52.6", ] +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" + [[package]] name = "windows_aarch64_gnullvm" version = "0.48.5" @@ -13012,6 +12965,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" +[[package]] +name = "windows_aarch64_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" + [[package]] name = "windows_aarch64_msvc" version = "0.48.5" @@ -13024,6 +12983,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" +[[package]] +name = "windows_i686_gnu" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" + [[package]] name = "windows_i686_gnu" version = "0.48.5" @@ -13042,6 +13007,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" +[[package]] +name = "windows_i686_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" + [[package]] name = "windows_i686_msvc" version = "0.48.5" @@ -13054,6 +13025,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" +[[package]] +name = "windows_x86_64_gnu" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" + [[package]] name = "windows_x86_64_gnu" version = "0.48.5" @@ -13066,6 +13043,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" + [[package]] name = "windows_x86_64_gnullvm" version = "0.48.5" @@ -13078,6 +13061,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" +[[package]] +name = "windows_x86_64_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" + [[package]] name = "windows_x86_64_msvc" version = "0.48.5" @@ -13092,9 +13081,18 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winnow" -version = "0.6.24" +version = "0.5.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a" +checksum = "a3b801d0e0a6726477cc207f60162da452f3a95adb368399bef20a946e06f65c" +dependencies = [ + "memchr", +] + +[[package]] +name = "winnow" +version = "0.6.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" dependencies = [ "memchr", ] @@ -13117,7 +13115,7 @@ checksum = "fbe1538eea6ea5ddbe5defd0dc82539ad7ba751e1631e9185d24a931f0a5adc8" dependencies = [ "anyhow", "id-arena", - "indexmap 2.7.0", + "indexmap 2.2.6", "log", "semver", "serde", @@ -13198,19 +13196,17 @@ dependencies = [ "nom", "oid-registry", "rusticata-macros", - "thiserror 1.0.69", + "thiserror 1.0.68", "time", ] [[package]] name = "xattr" -version = "1.4.0" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e105d177a3871454f754b33bb0ee637ecaaac997446375fd3e5d43a2ed00c909" +checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" dependencies = [ "libc", - "linux-raw-sys", - "rustix", ] [[package]] @@ -13237,12 +13233,6 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" -[[package]] -name = "yansi" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" - [[package]] name = "yasna" version = "0.5.2" @@ -13254,9 +13244,9 @@ dependencies = [ [[package]] name = "yoke" -version = "0.7.5" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" +checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" dependencies = [ "serde", "stable_deref_trait", @@ -13266,55 +13256,54 @@ dependencies = [ [[package]] name = "yoke-derive" -version = "0.7.5" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" +checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", "synstructure", ] [[package]] name = "zerocopy" -version = "0.7.35" +version = "0.7.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" +checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" dependencies = [ - "byteorder", "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.7.35" +version = "0.7.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" +checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "zerofrom" -version = "0.1.5" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" +checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" dependencies = [ "zerofrom-derive", ] [[package]] name = "zerofrom-derive" -version = "0.1.5" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" +checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", "synstructure", ] @@ -13335,7 +13324,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -13357,7 +13346,7 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -13371,18 +13360,18 @@ dependencies = [ [[package]] name = "zstd-safe" -version = "7.2.1" +version = "7.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059" +checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a" dependencies = [ "zstd-sys", ] [[package]] name = "zstd-sys" -version = "2.0.13+zstd.1.5.6" +version = "2.0.10+zstd.1.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" +checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa" dependencies = [ "cc", "pkg-config", diff --git a/Cargo.Bazel.json.lock b/Cargo.Bazel.json.lock index 0294d8305cb..9c9fa45afb9 100644 --- a/Cargo.Bazel.json.lock +++ b/Cargo.Bazel.json.lock @@ -1,5 +1,5 @@ { - "checksum": "aa4a4a67b82376321d2ac77276ac7596aa559ae2b51e238ad8cdf6022007e175", + "checksum": "8567af91d9da2f036b4c631f0e8cd18b6c93f51541c91573b9c385349725905e", "crates": { "abnf 0.12.0": { "name": "abnf", @@ -161,14 +161,14 @@ ], "license_file": null }, - "actix-codec 0.5.2": { + "actix-codec 0.5.1": { "name": "actix-codec", - "version": "0.5.2", + "version": "0.5.1", "package_url": "https://github.com/actix/actix-net", "repository": { "Http": { - "url": "https://static.crates.io/crates/actix-codec/0.5.2/download", - "sha256": "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" + "url": "https://static.crates.io/crates/actix-codec/0.5.1/download", + "sha256": "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8" } }, "targets": [ @@ -193,7 +193,7 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 1.3.2", "target": "bitflags" }, { @@ -213,11 +213,11 @@ "target": "memchr" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -231,8 +231,8 @@ ], "selects": {} }, - "edition": "2021", - "version": "0.5.2" + "edition": "2018", + "version": "0.5.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -285,7 +285,7 @@ "deps": { "common": [ { - "id": "actix-codec 0.5.2", + "id": "actix-codec 0.5.1", "target": "actix_codec" }, { @@ -309,7 +309,7 @@ "target": "base64" }, { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -321,15 +321,15 @@ "target": "bytes" }, { - "id": "bytestring 1.4.0", + "id": "bytestring 1.3.0", "target": "bytestring" }, { - "id": "encoding_rs 0.8.35", + "id": "encoding_rs 0.8.32", "target": "encoding_rs" }, { - "id": "flate2 1.0.35", + "id": "flate2 1.0.31", "target": "flate2" }, { @@ -345,15 +345,15 @@ "target": "http" }, { - "id": "httparse 1.9.5", + "id": "httparse 1.8.0", "target": "httparse" }, { - "id": "httpdate 1.0.3", + "id": "httpdate 1.0.2", "target": "httpdate" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { @@ -361,7 +361,7 @@ "target": "language_tags" }, { - "id": "local-channel 0.1.5", + "id": "local-channel 0.1.3", "target": "local_channel" }, { @@ -373,7 +373,7 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -389,7 +389,7 @@ "target": "smallvec" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -411,7 +411,7 @@ "proc_macro_deps": { "common": [ { - "id": "derive_more 0.99.18", + "id": "derive_more 0.99.17", "target": "derive_more" } ], @@ -426,14 +426,14 @@ ], "license_file": "LICENSE-APACHE" }, - "actix-macros 0.2.4": { + "actix-macros 0.2.3": { "name": "actix-macros", - "version": "0.2.4", + "version": "0.2.3", "package_url": "https://github.com/actix/actix-net.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/actix-macros/0.2.4/download", - "sha256": "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" + "url": "https://static.crates.io/crates/actix-macros/0.2.3/download", + "sha256": "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6" } }, "targets": [ @@ -458,18 +458,18 @@ "deps": { "common": [ { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 1.0.109", "target": "syn" } ], "selects": {} }, - "edition": "2021", - "version": "0.2.4" + "edition": "2018", + "version": "0.2.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -517,7 +517,7 @@ "deps": { "common": [ { - "id": "bytestring 1.4.0", + "id": "bytestring 1.3.0", "target": "bytestring" }, { @@ -529,7 +529,7 @@ "target": "http" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -601,7 +601,7 @@ "target": "futures_core" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -611,7 +611,7 @@ "proc_macro_deps": { "common": [ { - "id": "actix-macros 0.2.4", + "id": "actix-macros 0.2.3", "target": "actix_macros" } ], @@ -626,14 +626,14 @@ ], "license_file": "LICENSE-APACHE" }, - "actix-server 2.5.0": { + "actix-server 2.2.0": { "name": "actix-server", - "version": "2.5.0", - "package_url": "https://github.com/actix/actix-net/tree/master/actix-server", + "version": "2.2.0", + "package_url": "https://github.com/actix/actix-net.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/actix-server/2.5.0/download", - "sha256": "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894" + "url": "https://static.crates.io/crates/actix-server/2.2.0/download", + "sha256": "3e8613a75dd50cc45f473cee3c34d59ed677c0f7b44480ce3b8247d7dc519327" } }, "targets": [ @@ -684,15 +684,19 @@ "target": "futures_util" }, { - "id": "mio 1.0.3", + "id": "mio 0.8.10", "target": "mio" }, { - "id": "socket2 0.5.8", + "id": "num_cpus 1.16.0", + "target": "num_cpus" + }, + { + "id": "socket2 0.4.9", "target": "socket2" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -702,8 +706,8 @@ ], "selects": {} }, - "edition": "2021", - "version": "2.5.0" + "edition": "2018", + "version": "2.2.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -748,7 +752,7 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], @@ -805,11 +809,11 @@ "deps": { "common": [ { - "id": "local-waker 0.1.4", + "id": "local-waker 0.1.3", "target": "local_waker" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], @@ -873,7 +877,7 @@ "deps": { "common": [ { - "id": "actix-codec 0.5.2", + "id": "actix-codec 0.5.1", "target": "actix_codec" }, { @@ -889,7 +893,7 @@ "target": "actix_rt" }, { - "id": "actix-server 2.5.0", + "id": "actix-server 2.2.0", "target": "actix_server" }, { @@ -909,7 +913,7 @@ "target": "bytes" }, { - "id": "bytestring 1.4.0", + "id": "bytestring 1.3.0", "target": "bytestring" }, { @@ -921,7 +925,7 @@ "target": "cookie" }, { - "id": "encoding_rs 0.8.35", + "id": "encoding_rs 0.8.32", "target": "encoding_rs" }, { @@ -933,11 +937,11 @@ "target": "futures_util" }, { - "id": "impl-more 0.1.9", + "id": "impl-more 0.1.6", "target": "impl_more" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { @@ -945,7 +949,7 @@ "target": "language_tags" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -953,15 +957,15 @@ "target": "mime" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -973,7 +977,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -985,15 +989,15 @@ "target": "smallvec" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" } ], @@ -1003,7 +1007,7 @@ "proc_macro_deps": { "common": [ { - "id": "actix-macros 0.2.4", + "id": "actix-macros 0.2.3", "target": "actix_macros" }, { @@ -1011,7 +1015,7 @@ "target": "actix_web_codegen" }, { - "id": "derive_more 0.99.18", + "id": "derive_more 0.99.17", "target": "derive_more" } ], @@ -1068,15 +1072,15 @@ "target": "actix_router" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -1146,14 +1150,14 @@ ], "license_file": "LICENSE" }, - "addr2line 0.24.2": { + "addr2line 0.20.0": { "name": "addr2line", - "version": "0.24.2", + "version": "0.20.0", "package_url": "https://github.com/gimli-rs/addr2line", "repository": { "Http": { - "url": "https://static.crates.io/crates/addr2line/0.24.2/download", - "sha256": "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" + "url": "https://static.crates.io/crates/addr2line/0.20.0/download", + "sha256": "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" } }, "targets": [ @@ -1178,14 +1182,14 @@ "deps": { "common": [ { - "id": "gimli 0.31.1", + "id": "gimli 0.27.3", "target": "gimli" } ], "selects": {} }, "edition": "2018", - "version": "0.24.2" + "version": "0.20.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -1194,20 +1198,20 @@ ], "license_file": "LICENSE-APACHE" }, - "adler2 2.0.0": { - "name": "adler2", - "version": "2.0.0", - "package_url": "https://github.com/oyvindln/adler2", + "adler 1.0.2": { + "name": "adler", + "version": "1.0.2", + "package_url": "https://github.com/jonas-schievink/adler.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/adler2/2.0.0/download", - "sha256": "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" + "url": "https://static.crates.io/crates/adler/1.0.2/download", + "sha256": "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" } }, "targets": [ { "Library": { - "crate_name": "adler2", + "crate_name": "adler", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -1218,13 +1222,13 @@ } } ], - "library_target_name": "adler2", + "library_target_name": "adler", "common_attrs": { "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "2.0.0" + "edition": "2015", + "version": "1.0.2" }, "license": "0BSD OR MIT OR Apache-2.0", "license_ids": [ @@ -1383,13 +1387,13 @@ "selects": { "cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))": [ { - "id": "getrandom 0.2.15", + "id": "getrandom 0.2.10", "target": "getrandom" } ], "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ] @@ -1408,7 +1412,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.5", + "id": "version_check 0.9.4", "target": "version_check" } ], @@ -1483,18 +1487,18 @@ "target": "cfg_if" }, { - "id": "getrandom 0.2.15", + "id": "getrandom 0.2.10", "target": "getrandom" }, { - "id": "zerocopy 0.7.35", + "id": "zerocopy 0.7.32", "target": "zerocopy" } ], "selects": { "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ] @@ -1513,7 +1517,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.5", + "id": "version_check 0.9.4", "target": "version_check" } ], @@ -1527,14 +1531,14 @@ ], "license_file": "LICENSE-APACHE" }, - "aho-corasick 1.1.3": { + "aho-corasick 1.0.2": { "name": "aho-corasick", - "version": "1.1.3", + "version": "1.0.2", "package_url": "https://github.com/BurntSushi/aho-corasick", "repository": { "Http": { - "url": "https://static.crates.io/crates/aho-corasick/1.1.3/download", - "sha256": "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" + "url": "https://static.crates.io/crates/aho-corasick/1.0.2/download", + "sha256": "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" } }, "targets": [ @@ -1573,7 +1577,7 @@ "selects": {} }, "edition": "2021", - "version": "1.1.3" + "version": "1.0.2" }, "license": "Unlicense OR MIT", "license_ids": [ @@ -1582,14 +1586,14 @@ ], "license_file": "LICENSE-MIT" }, - "aide 0.13.5": { + "aide 0.13.4": { "name": "aide", - "version": "0.13.5", + "version": "0.13.4", "package_url": "https://github.com/tamasfe/aide", "repository": { "Http": { - "url": "https://static.crates.io/crates/aide/0.13.5/download", - "sha256": "5678d2978845ddb4bd736a026f467dd652d831e9e6254b0e41b07f7ee7523309" + "url": "https://static.crates.io/crates/aide/0.13.4/download", + "sha256": "7b0e3b97a21e41ec5c19bfd9b4fc1f7086be104f8b988681230247ffc91cc8ed" } }, "targets": [ @@ -1638,11 +1642,11 @@ "target": "http" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "schemars 0.8.21", + "id": "schemars 0.8.16", "target": "schemars" }, { @@ -1650,11 +1654,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -1673,7 +1677,7 @@ "selects": {} }, "edition": "2021", - "version": "0.13.5" + "version": "0.13.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -1937,7 +1941,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -1998,14 +2002,14 @@ ], "license_file": null }, - "anstream 0.6.18": { + "anstream 0.6.15": { "name": "anstream", - "version": "0.6.18", + "version": "0.6.15", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstream/0.6.18/download", - "sha256": "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" + "url": "https://static.crates.io/crates/anstream/0.6.15/download", + "sha256": "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" } }, "targets": [ @@ -2038,19 +2042,19 @@ "deps": { "common": [ { - "id": "anstyle 1.0.10", + "id": "anstyle 1.0.8", "target": "anstyle" }, { - "id": "anstyle-parse 0.2.6", + "id": "anstyle-parse 0.2.1", "target": "anstyle_parse" }, { - "id": "anstyle-query 1.1.2", + "id": "anstyle-query 1.0.0", "target": "anstyle_query" }, { - "id": "colorchoice 1.0.3", + "id": "colorchoice 1.0.0", "target": "colorchoice" }, { @@ -2058,33 +2062,33 @@ "target": "is_terminal_polyfill" }, { - "id": "utf8parse 0.2.2", + "id": "utf8parse 0.2.1", "target": "utf8parse" } ], "selects": { "aarch64-pc-windows-msvc": [ { - "id": "anstyle-wincon 3.0.7", + "id": "anstyle-wincon 3.0.1", "target": "anstyle_wincon" } ], "i686-pc-windows-msvc": [ { - "id": "anstyle-wincon 3.0.7", + "id": "anstyle-wincon 3.0.1", "target": "anstyle_wincon" } ], "x86_64-pc-windows-msvc": [ { - "id": "anstyle-wincon 3.0.7", + "id": "anstyle-wincon 3.0.1", "target": "anstyle_wincon" } ] } }, "edition": "2021", - "version": "0.6.18" + "version": "0.6.15" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2093,14 +2097,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle 1.0.10": { + "anstyle 1.0.8": { "name": "anstyle", - "version": "1.0.10", + "version": "1.0.8", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle/1.0.10/download", - "sha256": "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" + "url": "https://static.crates.io/crates/anstyle/1.0.8/download", + "sha256": "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" } }, "targets": [ @@ -2130,7 +2134,7 @@ "selects": {} }, "edition": "2021", - "version": "1.0.10" + "version": "1.0.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2139,14 +2143,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle-parse 0.2.6": { + "anstyle-parse 0.2.1": { "name": "anstyle-parse", - "version": "0.2.6", + "version": "0.2.1", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle-parse/0.2.6/download", - "sha256": "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" + "url": "https://static.crates.io/crates/anstyle-parse/0.2.1/download", + "sha256": "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" } }, "targets": [ @@ -2178,14 +2182,14 @@ "deps": { "common": [ { - "id": "utf8parse 0.2.2", + "id": "utf8parse 0.2.1", "target": "utf8parse" } ], "selects": {} }, "edition": "2021", - "version": "0.2.6" + "version": "0.2.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2194,14 +2198,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle-query 1.1.2": { + "anstyle-query 1.0.0": { "name": "anstyle-query", - "version": "1.1.2", - "package_url": "https://github.com/rust-cli/anstyle.git", + "version": "1.0.0", + "package_url": "https://github.com/rust-cli/anstyle", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle-query/1.1.2/download", - "sha256": "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" + "url": "https://static.crates.io/crates/anstyle-query/1.0.0/download", + "sha256": "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" } }, "targets": [ @@ -2228,14 +2232,14 @@ "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.48.0", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "1.1.2" + "version": "1.0.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2244,14 +2248,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle-wincon 3.0.7": { + "anstyle-wincon 3.0.1": { "name": "anstyle-wincon", - "version": "3.0.7", + "version": "3.0.1", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle-wincon/3.0.7/download", - "sha256": "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" + "url": "https://static.crates.io/crates/anstyle-wincon/3.0.1/download", + "sha256": "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" } }, "targets": [ @@ -2276,25 +2280,21 @@ "deps": { "common": [ { - "id": "anstyle 1.0.10", + "id": "anstyle 1.0.8", "target": "anstyle" } ], "selects": { "cfg(windows)": [ { - "id": "once_cell 1.20.2", - "target": "once_cell" - }, - { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.48.0", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "3.0.7" + "version": "3.0.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2303,14 +2303,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anyhow 1.0.95": { + "anyhow 1.0.93": { "name": "anyhow", - "version": "1.0.95", + "version": "1.0.93", "package_url": "https://github.com/dtolnay/anyhow", "repository": { "Http": { - "url": "https://static.crates.io/crates/anyhow/1.0.95/download", - "sha256": "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" + "url": "https://static.crates.io/crates/anyhow/1.0.93/download", + "sha256": "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775" } }, "targets": [ @@ -2354,14 +2354,14 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.0.95" + "version": "1.0.93" }, "build_script_attrs": { "compile_data_glob": [ @@ -2378,14 +2378,14 @@ ], "license_file": "LICENSE-APACHE" }, - "arbitrary 1.4.1": { + "arbitrary 1.3.2": { "name": "arbitrary", - "version": "1.4.1", + "version": "1.3.2", "package_url": "https://github.com/rust-fuzz/arbitrary/", "repository": { "Http": { - "url": "https://static.crates.io/crates/arbitrary/1.4.1/download", - "sha256": "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223" + "url": "https://static.crates.io/crates/arbitrary/1.3.2/download", + "sha256": "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" } }, "targets": [ @@ -2418,13 +2418,13 @@ "proc_macro_deps": { "common": [ { - "id": "derive_arbitrary 1.4.1", + "id": "derive_arbitrary 1.3.2", "target": "derive_arbitrary" } ], "selects": {} }, - "version": "1.4.1" + "version": "1.3.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2518,14 +2518,14 @@ ], "license_file": "LICENSE-APACHE" }, - "arrayvec 0.7.6": { + "arrayvec 0.7.4": { "name": "arrayvec", - "version": "0.7.6", + "version": "0.7.4", "package_url": "https://github.com/bluss/arrayvec", "repository": { "Http": { - "url": "https://static.crates.io/crates/arrayvec/0.7.6/download", - "sha256": "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" + "url": "https://static.crates.io/crates/arrayvec/0.7.4/download", + "sha256": "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" } }, "targets": [ @@ -2555,7 +2555,7 @@ "selects": {} }, "edition": "2018", - "version": "0.7.6" + "version": "0.7.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2682,7 +2682,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -2692,7 +2692,7 @@ "proc_macro_deps": { "common": [ { - "id": "askama_derive 0.12.5", + "id": "askama_derive 0.12.2", "target": "askama_derive" } ], @@ -2707,14 +2707,14 @@ ], "license_file": "LICENSE-APACHE" }, - "askama_derive 0.12.5": { + "askama_derive 0.12.2": { "name": "askama_derive", - "version": "0.12.5", + "version": "0.12.2", "package_url": "https://github.com/djc/askama", "repository": { "Http": { - "url": "https://static.crates.io/crates/askama_derive/0.12.5/download", - "sha256": "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83" + "url": "https://static.crates.io/crates/askama_derive/0.12.2/download", + "sha256": "9a0fc7dcf8bd4ead96b1d36b41df47c14beedf7b0301fc543d8f2384e66a2ec0" } }, "targets": [ @@ -2751,12 +2751,12 @@ "deps": { "common": [ { - "id": "askama_parser 0.2.1", + "id": "askama_parser 0.1.1", "target": "askama_parser", "alias": "parser" }, { - "id": "basic-toml 0.1.9", + "id": "basic-toml 0.1.7", "target": "basic_toml" }, { @@ -2764,15 +2764,15 @@ "target": "mime" }, { - "id": "mime_guess 2.0.5", + "id": "mime_guess 2.0.4", "target": "mime_guess" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -2780,14 +2780,14 @@ "target": "serde" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.12.5" + "version": "0.12.2" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -2841,14 +2841,14 @@ ], "license_file": "LICENSE-APACHE" }, - "askama_parser 0.2.1": { + "askama_parser 0.1.1": { "name": "askama_parser", - "version": "0.2.1", + "version": "0.1.1", "package_url": "https://github.com/djc/askama", "repository": { "Http": { - "url": "https://static.crates.io/crates/askama_parser/0.2.1/download", - "sha256": "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0" + "url": "https://static.crates.io/crates/askama_parser/0.1.1/download", + "sha256": "c268a96e01a4c47c8c5c2472aaa570707e006a875ea63e819f75474ceedaf7b4" } }, "targets": [ @@ -2880,23 +2880,23 @@ "selects": {} }, "edition": "2021", - "version": "0.2.1" + "version": "0.1.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": null }, - "asn1-rs 0.6.2": { + "asn1-rs 0.6.1": { "name": "asn1-rs", - "version": "0.6.2", + "version": "0.6.1", "package_url": "https://github.com/rusticata/asn1-rs.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/asn1-rs/0.6.2/download", - "sha256": "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" + "url": "https://static.crates.io/crates/asn1-rs/0.6.1/download", + "sha256": "22ad1373757efa0f70ec53939aabc7152e1591cb485208052993070ac8d2429d" } }, "targets": [ @@ -2942,11 +2942,11 @@ "target": "rusticata_macros" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -2956,7 +2956,7 @@ "proc_macro_deps": { "common": [ { - "id": "asn1-rs-derive 0.5.1", + "id": "asn1-rs-derive 0.5.0", "target": "asn1_rs_derive" }, { @@ -2964,29 +2964,29 @@ "target": "asn1_rs_impl" }, { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], "selects": {} }, - "version": "0.6.2" + "version": "0.6.1" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "asn1-rs-derive 0.5.1": { + "asn1-rs-derive 0.5.0": { "name": "asn1-rs-derive", - "version": "0.5.1", + "version": "0.5.0", "package_url": "https://github.com/rusticata/asn1-rs.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/asn1-rs-derive/0.5.1/download", - "sha256": "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" + "url": "https://static.crates.io/crates/asn1-rs-derive/0.5.0/download", + "sha256": "7378575ff571966e99a744addeff0bff98b8ada0dedf1956d59e634db95eaac1" } }, "targets": [ @@ -3011,15 +3011,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" }, { @@ -3030,14 +3030,14 @@ "selects": {} }, "edition": "2018", - "version": "0.5.1" + "version": "0.5.0" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": null }, "asn1-rs-impl 0.2.0": { "name": "asn1-rs-impl", @@ -3071,15 +3071,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -3131,7 +3131,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -3190,7 +3190,7 @@ "deps": { "common": [ { - "id": "anstyle 1.0.10", + "id": "anstyle 1.0.8", "target": "anstyle" }, { @@ -3198,7 +3198,7 @@ "target": "build_script_build" }, { - "id": "bstr 1.11.3", + "id": "bstr 1.6.0", "target": "bstr" }, { @@ -3206,15 +3206,15 @@ "target": "doc_comment" }, { - "id": "predicates 3.1.3", + "id": "predicates 3.1.2", "target": "predicates" }, { - "id": "predicates-core 1.0.9", + "id": "predicates-core 1.0.6", "target": "predicates_core" }, { - "id": "predicates-tree 1.0.12", + "id": "predicates-tree 1.0.9", "target": "predicates_tree" }, { @@ -3225,7 +3225,7 @@ "selects": { "cfg(any())": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] @@ -3387,7 +3387,7 @@ "target": "concurrent_queue" }, { - "id": "event-listener-strategy 0.5.3", + "id": "event-listener-strategy 0.5.2", "target": "event_listener_strategy" }, { @@ -3395,7 +3395,7 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], @@ -3411,14 +3411,14 @@ ], "license_file": "LICENSE-APACHE" }, - "async-compression 0.4.18": { + "async-compression 0.4.3": { "name": "async-compression", - "version": "0.4.18", + "version": "0.4.3", "package_url": "https://github.com/Nullus157/async-compression", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-compression/0.4.18/download", - "sha256": "df895a515f70646414f4b45c0b79082783b80552b373a68283012928df56f522" + "url": "https://static.crates.io/crates/async-compression/0.4.3/download", + "sha256": "bb42b2197bf15ccb092b62c74515dbd8b86d0effd934795f6687c93b6e679a2c" } }, "targets": [ @@ -3456,11 +3456,11 @@ "deps": { "common": [ { - "id": "brotli 7.0.0", + "id": "brotli 3.3.4", "target": "brotli" }, { - "id": "flate2 1.0.35", + "id": "flate2 1.0.31", "target": "flate2" }, { @@ -3472,27 +3472,27 @@ "target": "memchr" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { - "id": "zstd 0.13.2", + "id": "zstd 0.12.4", "target": "zstd", "alias": "libzstd" }, { - "id": "zstd-safe 7.2.1", + "id": "zstd-safe 6.0.5+zstd.1.5.4", "target": "zstd_safe" } ], "selects": {} }, "edition": "2018", - "version": "0.4.18" + "version": "0.4.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -3533,7 +3533,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -3545,11 +3545,11 @@ "target": "http" }, { - "id": "httparse 1.9.5", + "id": "httparse 1.8.0", "target": "httparse" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" } ], @@ -3565,14 +3565,14 @@ ], "license_file": null }, - "async-io 2.4.0": { + "async-io 2.3.4": { "name": "async-io", - "version": "2.4.0", + "version": "2.3.4", "package_url": "https://github.com/smol-rs/async-io", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-io/2.4.0/download", - "sha256": "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059" + "url": "https://static.crates.io/crates/async-io/2.3.4/download", + "sha256": "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" } }, "targets": [ @@ -3597,7 +3597,7 @@ "deps": { "common": [ { - "id": "async-lock 3.4.0", + "id": "async-lock 3.3.0", "target": "async_lock" }, { @@ -3613,23 +3613,23 @@ "target": "futures_io" }, { - "id": "futures-lite 2.6.0", + "id": "futures-lite 2.0.0", "target": "futures_lite" }, { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" }, { - "id": "polling 3.7.4", + "id": "polling 3.7.3", "target": "polling" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" }, { - "id": "slab 0.4.9", + "id": "slab 0.4.8", "target": "slab" }, { @@ -3647,7 +3647,7 @@ } }, "edition": "2021", - "version": "2.4.0" + "version": "2.3.4" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -3656,14 +3656,14 @@ ], "license_file": "LICENSE-APACHE" }, - "async-lock 3.4.0": { + "async-lock 3.3.0": { "name": "async-lock", - "version": "3.4.0", + "version": "3.3.0", "package_url": "https://github.com/smol-rs/async-lock", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-lock/3.4.0/download", - "sha256": "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" + "url": "https://static.crates.io/crates/async-lock/3.3.0/download", + "sha256": "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" } }, "targets": [ @@ -3695,22 +3695,22 @@ "deps": { "common": [ { - "id": "event-listener 5.4.0", + "id": "event-listener 4.0.3", "target": "event_listener" }, { - "id": "event-listener-strategy 0.5.3", + "id": "event-listener-strategy 0.4.0", "target": "event_listener_strategy" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], "selects": {} }, "edition": "2021", - "version": "3.4.0" + "version": "3.3.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -3751,7 +3751,7 @@ "deps": { "common": [ { - "id": "async-io 2.4.0", + "id": "async-io 2.3.4", "target": "async_io" }, { @@ -3759,7 +3759,7 @@ "target": "blocking" }, { - "id": "futures-lite 2.6.0", + "id": "futures-lite 2.0.0", "target": "futures_lite" } ], @@ -3775,14 +3775,14 @@ ], "license_file": "LICENSE-APACHE" }, - "async-recursion 1.1.1": { + "async-recursion 1.0.5": { "name": "async-recursion", - "version": "1.1.1", + "version": "1.0.5", "package_url": "https://github.com/dcchut/async-recursion", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-recursion/1.1.1/download", - "sha256": "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" + "url": "https://static.crates.io/crates/async-recursion/1.0.5/download", + "sha256": "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" } }, "targets": [ @@ -3807,22 +3807,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "1.1.1" + "version": "1.0.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -3874,11 +3874,11 @@ "target": "futures" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.2", "target": "pin_project" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -3926,11 +3926,11 @@ "deps": { "common": [ { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -3982,7 +3982,7 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], @@ -4038,15 +4038,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -4107,14 +4107,14 @@ ], "license_file": "LICENSE-APACHE" }, - "async-trait 0.1.85": { + "async-trait 0.1.83": { "name": "async-trait", - "version": "0.1.85", + "version": "0.1.83", "package_url": "https://github.com/dtolnay/async-trait", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-trait/0.1.85/download", - "sha256": "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056" + "url": "https://static.crates.io/crates/async-trait/0.1.83/download", + "sha256": "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" } }, "targets": [ @@ -4139,22 +4139,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.1.85" + "version": "0.1.83" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4270,23 +4270,23 @@ "target": "http" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -4381,7 +4381,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -4402,14 +4402,14 @@ ], "license_file": "LICENSE" }, - "auto_impl 1.2.1": { + "auto_impl 1.1.0": { "name": "auto_impl", - "version": "1.2.1", + "version": "1.1.0", "package_url": "https://github.com/auto-impl-rs/auto_impl/", "repository": { "Http": { - "url": "https://static.crates.io/crates/auto_impl/1.2.1/download", - "sha256": "e12882f59de5360c748c4cbf569a042d5fb0eb515f7bea9c1f470b47f6ffbd73" + "url": "https://static.crates.io/crates/auto_impl/1.1.0/download", + "sha256": "fee3da8ef1276b0bee5dd1c7258010d8fffd31801447323115a25560e1327b89" } }, "targets": [ @@ -4434,22 +4434,26 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro-error 1.0.4", + "target": "proc_macro_error" + }, + { + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 1.0.109", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.2.1" + "version": "1.1.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4490,7 +4494,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -4506,14 +4510,14 @@ ], "license_file": "LICENSE-APACHE" }, - "autocfg 1.4.0": { + "autocfg 1.1.0": { "name": "autocfg", - "version": "1.4.0", + "version": "1.1.0", "package_url": "https://github.com/cuviper/autocfg", "repository": { "Http": { - "url": "https://static.crates.io/crates/autocfg/1.4.0/download", - "sha256": "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" + "url": "https://static.crates.io/crates/autocfg/1.1.0/download", + "sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" } }, "targets": [ @@ -4536,7 +4540,7 @@ "**" ], "edition": "2015", - "version": "1.4.0" + "version": "1.1.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -4617,7 +4621,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -4625,11 +4629,11 @@ "target": "hyper_util" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "matchit 0.7.3", + "id": "matchit 0.7.0", "target": "matchit" }, { @@ -4645,7 +4649,7 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -4653,11 +4657,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "serde_path_to_error 0.1.16", + "id": "serde_path_to_error 0.1.14", "target": "serde_path_to_error" }, { @@ -4665,15 +4669,15 @@ "target": "serde_urlencoded" }, { - "id": "sync_wrapper 1.0.2", + "id": "sync_wrapper 1.0.1", "target": "sync_wrapper" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.1", "target": "tower" }, { @@ -4695,7 +4699,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" }, { @@ -4703,7 +4707,7 @@ "target": "axum_macros" }, { - "id": "rustversion 1.0.19", + "id": "rustversion 1.0.14", "target": "rustversion" } ], @@ -4779,11 +4783,11 @@ "target": "mime" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "sync_wrapper 1.0.2", + "id": "sync_wrapper 1.0.1", "target": "sync_wrapper" }, { @@ -4805,11 +4809,11 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" }, { - "id": "rustversion 1.0.19", + "id": "rustversion 1.0.14", "target": "rustversion" } ], @@ -4876,7 +4880,7 @@ "target": "bytes" }, { - "id": "fastrand 2.3.0", + "id": "fastrand 2.1.0", "target": "fastrand" }, { @@ -4908,7 +4912,7 @@ "target": "multer" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -4916,7 +4920,7 @@ "target": "serde" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.1", "target": "tower" }, { @@ -4977,15 +4981,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -5066,7 +5070,7 @@ "target": "opentelemetry_sdk" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -5156,7 +5160,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -5164,7 +5168,7 @@ "target": "hyper_util" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -5176,7 +5180,7 @@ "target": "rustls_pemfile" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -5250,15 +5254,15 @@ "target": "futures_core" }, { - "id": "getrandom 0.2.15", + "id": "getrandom 0.2.10", "target": "getrandom" }, { - "id": "instant 0.1.13", + "id": "instant 0.1.12", "target": "instant" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -5266,7 +5270,7 @@ "target": "rand" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio", "alias": "tokio_1" } @@ -5283,14 +5287,14 @@ ], "license_file": "LICENSE-APACHE" }, - "backon 0.4.4": { + "backon 0.4.1": { "name": "backon", - "version": "0.4.4", - "package_url": "https://github.com/Xuanwo/backon", + "version": "0.4.1", + "package_url": null, "repository": { "Http": { - "url": "https://static.crates.io/crates/backon/0.4.4/download", - "sha256": "d67782c3f868daa71d3533538e98a8e13713231969def7536e8039606fc46bf0" + "url": "https://static.crates.io/crates/backon/0.4.1/download", + "sha256": "0c1a6197b2120bb2185a267f6515038558b019e92b832bb0320e96d66268dcf9" } }, "targets": [ @@ -5315,7 +5319,7 @@ "deps": { "common": [ { - "id": "fastrand 2.3.0", + "id": "fastrand 1.9.0", "target": "fastrand" }, { @@ -5323,18 +5327,18 @@ "target": "futures_core" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.2", "target": "pin_project" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "0.4.4" + "version": "0.4.1" }, "license": "Apache-2.0", "license_ids": [ @@ -5342,14 +5346,14 @@ ], "license_file": "LICENSE" }, - "backtrace 0.3.74": { + "backtrace 0.3.68": { "name": "backtrace", - "version": "0.3.74", + "version": "0.3.68", "package_url": "https://github.com/rust-lang/backtrace-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/backtrace/0.3.74/download", - "sha256": "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" + "url": "https://static.crates.io/crates/backtrace/0.3.68/download", + "sha256": "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" } }, "targets": [ @@ -5364,6 +5368,18 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], "library_target_name": "backtrace", @@ -5380,44 +5396,56 @@ }, "deps": { "common": [ + { + "id": "addr2line 0.20.0", + "target": "addr2line" + }, + { + "id": "backtrace 0.3.68", + "target": "build_script_build" + }, { "id": "cfg-if 1.0.0", "target": "cfg_if" }, { - "id": "rustc-demangle 0.1.24", + "id": "libc 0.2.158", + "target": "libc" + }, + { + "id": "miniz_oxide 0.7.1", + "target": "miniz_oxide" + }, + { + "id": "object 0.31.1", + "target": "object" + }, + { + "id": "rustc-demangle 0.1.23", "target": "rustc_demangle" } ], - "selects": { - "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))": [ - { - "id": "addr2line 0.24.2", - "target": "addr2line" - }, - { - "id": "libc 0.2.169", - "target": "libc" - }, - { - "id": "miniz_oxide 0.8.3", - "target": "miniz_oxide" - }, - { - "id": "object 0.36.7", - "target": "object" - } - ], - "cfg(windows)": [ - { - "id": "windows-targets 0.52.6", - "target": "windows_targets" - } - ] - } + "selects": {} }, - "edition": "2021", - "version": "0.3.74" + "edition": "2018", + "version": "0.3.68" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "cc 1.0.83", + "target": "cc" + } + ], + "selects": {} + } }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -5654,14 +5682,14 @@ ], "license_file": "LICENSE-APACHE" }, - "base64 0.21.7": { + "base64 0.21.6": { "name": "base64", - "version": "0.21.7", + "version": "0.21.6", "package_url": "https://github.com/marshallpierce/rust-base64", "repository": { "Http": { - "url": "https://static.crates.io/crates/base64/0.21.7/download", - "sha256": "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" + "url": "https://static.crates.io/crates/base64/0.21.6/download", + "sha256": "c79fed4cdb43e993fcdadc7e58a09fd0e3e649c4436fa11da71c9f1f3ee7feb9" } }, "targets": [ @@ -5692,7 +5720,7 @@ "selects": {} }, "edition": "2018", - "version": "0.21.7" + "version": "0.21.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -5787,7 +5815,7 @@ "deps": { "common": [ { - "id": "base64 0.21.7", + "id": "base64 0.21.6", "target": "base64" } ], @@ -5847,14 +5875,14 @@ ], "license_file": "LICENSE-APACHE" }, - "basic-toml 0.1.9": { + "basic-toml 0.1.7": { "name": "basic-toml", - "version": "0.1.9", + "version": "0.1.7", "package_url": "https://github.com/dtolnay/basic-toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/basic-toml/0.1.9/download", - "sha256": "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8" + "url": "https://static.crates.io/crates/basic-toml/0.1.7/download", + "sha256": "2f2139706359229bfa8f19142ac1155b4b80beafb7a60471ac5dd109d4a19778" } }, "targets": [ @@ -5886,7 +5914,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.9" + "version": "0.1.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -6182,11 +6210,11 @@ "target": "cexpr" }, { - "id": "clang-sys 1.8.1", + "id": "clang-sys 1.6.1", "target": "clang_sys" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -6198,19 +6226,19 @@ "target": "peeking_take_while" }, { - "id": "prettyplease 0.2.29", + "id": "prettyplease 0.2.15", "target": "prettyplease" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -6222,7 +6250,7 @@ "target": "shlex" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -6241,11 +6269,11 @@ "link_deps": { "common": [ { - "id": "clang-sys 1.8.1", + "id": "clang-sys 1.6.1", "target": "clang_sys" }, { - "id": "prettyplease 0.2.29", + "id": "prettyplease 0.2.15", "target": "prettyplease" } ], @@ -6258,14 +6286,14 @@ ], "license_file": "LICENSE" }, - "bindgen 0.69.5": { + "bindgen 0.69.4": { "name": "bindgen", - "version": "0.69.5", + "version": "0.69.4", "package_url": "https://github.com/rust-lang/rust-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/bindgen/0.69.5/download", - "sha256": "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" + "url": "https://static.crates.io/crates/bindgen/0.69.4/download", + "sha256": "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" } }, "targets": [ @@ -6308,11 +6336,11 @@ "deps": { "common": [ { - "id": "bindgen 0.69.5", + "id": "bindgen 0.69.4", "target": "build_script_build" }, { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -6320,15 +6348,15 @@ "target": "cexpr" }, { - "id": "clang-sys 1.8.1", + "id": "clang-sys 1.6.1", "target": "clang_sys" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.12.0", "target": "itertools" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -6336,15 +6364,15 @@ "target": "lazycell" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -6356,14 +6384,14 @@ "target": "shlex" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.69.5" + "version": "0.69.4" }, "build_script_attrs": { "compile_data_glob": [ @@ -6375,7 +6403,7 @@ "link_deps": { "common": [ { - "id": "clang-sys 1.8.1", + "id": "clang-sys 1.6.1", "target": "clang_sys" } ], @@ -6429,7 +6457,7 @@ "deps": { "common": [ { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" } ], @@ -6443,7 +6471,7 @@ "target": "binread_derive" }, { - "id": "rustversion 1.0.19", + "id": "rustversion 1.0.14", "target": "rustversion" } ], @@ -6495,15 +6523,15 @@ "deps": { "common": [ { - "id": "either 1.13.0", + "id": "either 1.8.1", "target": "either" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -6522,14 +6550,14 @@ ], "license_file": null }, - "bip32 0.5.2": { + "bip32 0.5.1": { "name": "bip32", - "version": "0.5.2", + "version": "0.5.1", "package_url": "https://github.com/iqlusioninc/crates/tree/main/bip32", "repository": { "Http": { - "url": "https://static.crates.io/crates/bip32/0.5.2/download", - "sha256": "aa13fae8b6255872fd86f7faf4b41168661d7d78609f7bfe6771b85c6739a15b" + "url": "https://static.crates.io/crates/bip32/0.5.1/download", + "sha256": "7e141fb0f8be1c7b45887af94c88b182472b57c96b56773250ae00cd6a14a164" } }, "targets": [ @@ -6568,7 +6596,7 @@ "deps": { "common": [ { - "id": "bs58 0.5.1", + "id": "bs58 0.5.0", "target": "bs58" }, { @@ -6580,7 +6608,7 @@ "target": "k256" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -6611,7 +6639,7 @@ "selects": {} }, "edition": "2021", - "version": "0.5.2" + "version": "0.5.1" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -6645,54 +6673,6 @@ } ], "library_target_name": "bit_set", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bit-vec 0.6.3", - "target": "bit_vec" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.5.3" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "bit-set 0.8.0": { - "name": "bit-set", - "version": "0.8.0", - "package_url": "https://github.com/contain-rs/bit-set", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/bit-set/0.8.0/download", - "sha256": "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" - } - }, - "targets": [ - { - "Library": { - "crate_name": "bit_set", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "bit_set", "common_attrs": { "compile_data_glob": [ "**" @@ -6707,16 +6687,16 @@ "deps": { "common": [ { - "id": "bit-vec 0.8.0", + "id": "bit-vec 0.6.3", "target": "bit_vec" } ], "selects": {} }, "edition": "2015", - "version": "0.8.0" + "version": "0.5.3" }, - "license": "Apache-2.0 OR MIT", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -6769,52 +6749,6 @@ ], "license_file": "LICENSE-APACHE" }, - "bit-vec 0.8.0": { - "name": "bit-vec", - "version": "0.8.0", - "package_url": "https://github.com/contain-rs/bit-vec", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/bit-vec/0.8.0/download", - "sha256": "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" - } - }, - "targets": [ - { - "Library": { - "crate_name": "bit_vec", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "bit_vec", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2015", - "version": "0.8.0" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "bitcoin 0.28.2": { "name": "bitcoin", "version": "0.28.2", @@ -6885,14 +6819,14 @@ ], "license_file": "LICENSE" }, - "bitcoin 0.30.2": { + "bitcoin 0.30.0": { "name": "bitcoin", - "version": "0.30.2", + "version": "0.30.0", "package_url": "https://github.com/rust-bitcoin/rust-bitcoin/", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitcoin/0.30.2/download", - "sha256": "1945a5048598e4189e239d3f809b19bdad4845c4b2ba400d304d2dcf26d2c462" + "url": "https://static.crates.io/crates/bitcoin/0.30.0/download", + "sha256": "b36f4c848f6bd9ff208128f08751135846cc23ae57d66ab10a22efff1c675f3c" } }, "targets": [ @@ -6944,7 +6878,7 @@ "target": "bech32" }, { - "id": "bitcoin 0.30.2", + "id": "bitcoin 0.30.0", "target": "build_script_build" }, { @@ -6973,7 +6907,7 @@ "selects": {} }, "edition": "2018", - "version": "0.30.2" + "version": "0.30.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -6989,14 +6923,14 @@ ], "license_file": null }, - "bitcoin 0.32.5": { + "bitcoin 0.32.2": { "name": "bitcoin", - "version": "0.32.5", + "version": "0.32.2", "package_url": "https://github.com/rust-bitcoin/rust-bitcoin/", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitcoin/0.32.5/download", - "sha256": "ce6bc65742dea50536e35ad42492b234c27904a27f0abdcbce605015cb4ea026" + "url": "https://static.crates.io/crates/bitcoin/0.32.2/download", + "sha256": "ea507acc1cd80fc084ace38544bbcf7ced7c2aa65b653b102de0ce718df668f6" } }, "targets": [ @@ -7042,7 +6976,7 @@ "target": "bech32" }, { - "id": "bitcoin 0.32.5", + "id": "bitcoin 0.32.2", "target": "build_script_build" }, { @@ -7051,7 +6985,7 @@ "alias": "internals" }, { - "id": "bitcoin-io 0.1.3", + "id": "bitcoin-io 0.1.2", "target": "bitcoin_io", "alias": "io" }, @@ -7075,14 +7009,14 @@ "target": "hex_lit" }, { - "id": "secp256k1 0.29.1", + "id": "secp256k1 0.29.0", "target": "secp256k1" } ], "selects": {} }, "edition": "2021", - "version": "0.32.5" + "version": "0.32.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -7172,14 +7106,14 @@ ], "license_file": null }, - "bitcoin-io 0.1.3": { + "bitcoin-io 0.1.2": { "name": "bitcoin-io", - "version": "0.1.3", + "version": "0.1.2", "package_url": "https://github.com/rust-bitcoin/rust-bitcoin", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitcoin-io/0.1.3/download", - "sha256": "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf" + "url": "https://static.crates.io/crates/bitcoin-io/0.1.2/download", + "sha256": "340e09e8399c7bd8912f495af6aa58bea0c9214773417ffaa8f6460f93aaee56" } }, "targets": [ @@ -7194,18 +7128,6 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], "library_target_name": "bitcoin_io", @@ -7219,25 +7141,8 @@ ], "selects": {} }, - "deps": { - "common": [ - { - "id": "bitcoin-io 0.1.3", - "target": "build_script_build" - } - ], - "selects": {} - }, "edition": "2021", - "version": "0.1.3" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] + "version": "0.1.2" }, "license": "CC0-1.0", "license_ids": [ @@ -7528,7 +7433,7 @@ "deps": { "common": [ { - "id": "bitcoin-io 0.1.3", + "id": "bitcoin-io 0.1.2", "target": "bitcoin_io" }, { @@ -7588,7 +7493,7 @@ "target": "jsonrpc" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -7596,7 +7501,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -7651,7 +7556,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -7710,7 +7615,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -7723,15 +7628,15 @@ "alias": "bitcoincore_rpc" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "tempfile 3.15.0", + "id": "tempfile 3.12.0", "target": "tempfile" }, { - "id": "which 4.4.2", + "id": "which 4.4.0", "target": "which" } ], @@ -7750,7 +7655,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" } ], @@ -7808,14 +7713,14 @@ ], "license_file": "LICENSE-APACHE" }, - "bitflags 2.8.0": { + "bitflags 2.6.0": { "name": "bitflags", - "version": "2.8.0", + "version": "2.6.0", "package_url": "https://github.com/bitflags/bitflags", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitflags/2.8.0/download", - "sha256": "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" + "url": "https://static.crates.io/crates/bitflags/2.6.0/download", + "sha256": "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" } }, "targets": [ @@ -7844,7 +7749,7 @@ "selects": {} }, "edition": "2021", - "version": "2.8.0" + "version": "2.6.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8052,7 +7957,7 @@ "target": "futures_io" }, { - "id": "futures-lite 2.6.0", + "id": "futures-lite 2.0.0", "target": "futures_lite" }, { @@ -8072,14 +7977,14 @@ ], "license_file": "LICENSE-APACHE" }, - "borsh 1.5.4": { + "borsh 1.5.2": { "name": "borsh", - "version": "1.5.4", + "version": "1.5.2", "package_url": "https://github.com/near/borsh-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/borsh/1.5.4/download", - "sha256": "9fb65153674e51d3a42c8f27b05b9508cea85edfaade8aa46bc8fc18cecdfef3" + "url": "https://static.crates.io/crates/borsh/1.5.2/download", + "sha256": "f5327f6c99920069d1fe374aa743be1af0031dea9f250852cdf1ae6a0861ee24" } }, "targets": [ @@ -8116,14 +8021,14 @@ "deps": { "common": [ { - "id": "borsh 1.5.4", + "id": "borsh 1.5.2", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.5.4" + "version": "1.5.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -8149,14 +8054,14 @@ ], "license_file": null }, - "borsh-derive 1.5.4": { + "borsh-derive 1.5.2": { "name": "borsh-derive", - "version": "1.5.4", + "version": "1.5.2", "package_url": "https://github.com/near/borsh-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/borsh-derive/1.5.4/download", - "sha256": "a396e17ad94059c650db3d253bb6e25927f1eb462eede7e7a153bb6e75dce0a7" + "url": "https://static.crates.io/crates/borsh-derive/1.5.2/download", + "sha256": "10aedd8f1a81a8aafbfde924b0e3061cd6fedd6f6bbcfc6a76e6fd426d7bfe26" } }, "targets": [ @@ -8181,7 +8086,7 @@ "deps": { "common": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -8189,22 +8094,22 @@ "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "1.5.4" + "version": "1.5.2" }, "license": "Apache-2.0", "license_ids": [ @@ -8212,6 +8117,69 @@ ], "license_file": null }, + "brotli 3.3.4": { + "name": "brotli", + "version": "3.3.4", + "package_url": "https://github.com/dropbox/rust-brotli", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/brotli/3.3.4/download", + "sha256": "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" + } + }, + "targets": [ + { + "Library": { + "crate_name": "brotli", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "brotli", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc-stdlib", + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "alloc-no-stdlib 2.0.4", + "target": "alloc_no_stdlib" + }, + { + "id": "alloc-stdlib 0.2.2", + "target": "alloc_stdlib" + }, + { + "id": "brotli-decompressor 2.3.4", + "target": "brotli_decompressor" + } + ], + "selects": {} + }, + "edition": "2015", + "version": "3.3.4" + }, + "license": "BSD-3-Clause/MIT", + "license_ids": [ + "BSD-3-Clause", + "MIT" + ], + "license_file": "LICENSE" + }, "brotli 6.0.0": { "name": "brotli", "version": "6.0.0", @@ -8308,7 +8276,6 @@ "crate_features": { "common": [ "alloc-stdlib", - "default", "std" ], "selects": {} @@ -8340,6 +8307,65 @@ ], "license_file": "LICENSE.BSD-3-Clause" }, + "brotli-decompressor 2.3.4": { + "name": "brotli-decompressor", + "version": "2.3.4", + "package_url": "https://github.com/dropbox/rust-brotli-decompressor", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/brotli-decompressor/2.3.4/download", + "sha256": "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744" + } + }, + "targets": [ + { + "Library": { + "crate_name": "brotli_decompressor", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "brotli_decompressor", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc-stdlib", + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "alloc-no-stdlib 2.0.4", + "target": "alloc_no_stdlib" + }, + { + "id": "alloc-stdlib 0.2.2", + "target": "alloc_stdlib" + } + ], + "selects": {} + }, + "edition": "2015", + "version": "2.3.4" + }, + "license": "BSD-3-Clause/MIT", + "license_ids": [ + "BSD-3-Clause", + "MIT" + ], + "license_file": "LICENSE" + }, "brotli-decompressor 4.0.1": { "name": "brotli-decompressor", "version": "4.0.1", @@ -8400,14 +8426,14 @@ ], "license_file": "LICENSE" }, - "bs58 0.5.1": { + "bs58 0.5.0": { "name": "bs58", - "version": "0.5.1", + "version": "0.5.0", "package_url": "https://github.com/Nullus157/bs58-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/bs58/0.5.1/download", - "sha256": "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" + "url": "https://static.crates.io/crates/bs58/0.5.0/download", + "sha256": "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896" } }, "targets": [ @@ -8449,7 +8475,7 @@ "selects": {} }, "edition": "2021", - "version": "0.5.1" + "version": "0.5.0" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -8458,14 +8484,14 @@ ], "license_file": "LICENSE-APACHE" }, - "bstr 1.11.3": { + "bstr 1.6.0": { "name": "bstr", - "version": "1.11.3", + "version": "1.6.0", "package_url": "https://github.com/BurntSushi/bstr", "repository": { "Http": { - "url": "https://static.crates.io/crates/bstr/1.11.3/download", - "sha256": "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0" + "url": "https://static.crates.io/crates/bstr/1.6.0/download", + "sha256": "6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05" } }, "targets": [ @@ -8503,14 +8529,14 @@ "target": "memchr" }, { - "id": "regex-automata 0.4.9", + "id": "regex-automata 0.3.3", "target": "regex_automata" } ], "selects": {} }, "edition": "2021", - "version": "1.11.3" + "version": "1.6.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8567,7 +8593,7 @@ "target": "build_info_common" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" } ], @@ -8631,7 +8657,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -8651,23 +8677,23 @@ "target": "cargo_metadata" }, { - "id": "glob 0.3.2", + "id": "glob 0.3.1", "target": "glob" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "pretty_assertions 1.4.1", + "id": "pretty_assertions 1.4.0", "target": "pretty_assertions" }, { - "id": "rustc_version 0.4.1", + "id": "rustc_version 0.4.0", "target": "rustc_version" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -8730,7 +8756,7 @@ "deps": { "common": [ { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -8744,7 +8770,7 @@ "proc_macro_deps": { "common": [ { - "id": "derive_more 0.99.18", + "id": "derive_more 0.99.17", "target": "derive_more" } ], @@ -8801,7 +8827,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -8829,15 +8855,15 @@ "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -8925,14 +8951,14 @@ ], "license_file": "LICENSE-APACHE" }, - "by_address 1.2.1": { + "by_address 1.1.0": { "name": "by_address", - "version": "1.2.1", + "version": "1.1.0", "package_url": "https://github.com/mbrubeck/by_address", "repository": { "Http": { - "url": "https://static.crates.io/crates/by_address/1.2.1/download", - "sha256": "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06" + "url": "https://static.crates.io/crates/by_address/1.1.0/download", + "sha256": "bf8dba2868114ed769a1f2590fc9ae5eb331175b44313b6c9b922f8f7ca813d0" } }, "targets": [ @@ -8954,10 +8980,10 @@ "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "1.2.1" + "edition": "2018", + "version": "1.1.0" }, - "license": "MIT OR Apache-2.0", + "license": "MIT / Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -9054,7 +9080,7 @@ "target": "serde" }, { - "id": "utf8-width 0.1.7", + "id": "utf8-width 0.1.6", "target": "utf8_width" } ], @@ -9069,14 +9095,14 @@ ], "license_file": "LICENSE" }, - "bytecheck 0.6.12": { + "bytecheck 0.6.11": { "name": "bytecheck", - "version": "0.6.12", + "version": "0.6.11", "package_url": "https://github.com/djkoloski/bytecheck", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytecheck/0.6.12/download", - "sha256": "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" + "url": "https://static.crates.io/crates/bytecheck/0.6.11/download", + "sha256": "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627" } }, "targets": [ @@ -9113,7 +9139,7 @@ "deps": { "common": [ { - "id": "bytecheck 0.6.12", + "id": "bytecheck 0.6.11", "target": "build_script_build" }, { @@ -9127,13 +9153,13 @@ "proc_macro_deps": { "common": [ { - "id": "bytecheck_derive 0.6.12", + "id": "bytecheck_derive 0.6.11", "target": "bytecheck_derive" } ], "selects": {} }, - "version": "0.6.12" + "version": "0.6.11" }, "build_script_attrs": { "compile_data_glob": [ @@ -9149,14 +9175,14 @@ ], "license_file": "LICENSE" }, - "bytecheck_derive 0.6.12": { + "bytecheck_derive 0.6.11": { "name": "bytecheck_derive", - "version": "0.6.12", + "version": "0.6.11", "package_url": "https://github.com/djkoloski/bytecheck", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytecheck_derive/0.6.12/download", - "sha256": "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" + "url": "https://static.crates.io/crates/bytecheck_derive/0.6.11/download", + "sha256": "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61" } }, "targets": [ @@ -9181,11 +9207,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -9196,7 +9222,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.12" + "version": "0.6.11" }, "license": "MIT", "license_ids": [ @@ -9204,14 +9230,14 @@ ], "license_file": "LICENSE" }, - "bytemuck 1.21.0": { + "bytemuck 1.13.1": { "name": "bytemuck", - "version": "1.21.0", + "version": "1.13.1", "package_url": "https://github.com/Lokathor/bytemuck", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytemuck/1.21.0/download", - "sha256": "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3" + "url": "https://static.crates.io/crates/bytemuck/1.13.1/download", + "sha256": "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" } }, "targets": [ @@ -9234,7 +9260,7 @@ "**" ], "edition": "2018", - "version": "1.21.0" + "version": "1.13.1" }, "license": "Zlib OR Apache-2.0 OR MIT", "license_ids": [ @@ -9390,14 +9416,14 @@ ], "license_file": "LICENSE" }, - "bytestring 1.4.0": { + "bytestring 1.3.0": { "name": "bytestring", - "version": "1.4.0", - "package_url": "https://github.com/actix/actix-net", + "version": "1.3.0", + "package_url": "https://github.com/actix/actix-net.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytestring/1.4.0/download", - "sha256": "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f" + "url": "https://static.crates.io/crates/bytestring/1.3.0/download", + "sha256": "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae" } }, "targets": [ @@ -9428,8 +9454,8 @@ ], "selects": {} }, - "edition": "2021", - "version": "1.4.0" + "edition": "2018", + "version": "1.3.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -9486,7 +9512,7 @@ "target": "build_script_build" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -9505,11 +9531,11 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" } ], @@ -9563,14 +9589,14 @@ ], "license_file": null }, - "cached 0.49.3": { + "cached 0.49.2": { "name": "cached", - "version": "0.49.3", + "version": "0.49.2", "package_url": "https://github.com/jaemk/cached", "repository": { "Http": { - "url": "https://static.crates.io/crates/cached/0.49.3/download", - "sha256": "8e8e463fceca5674287f32d252fb1d94083758b8709c160efae66d263e5f4eba" + "url": "https://static.crates.io/crates/cached/0.49.2/download", + "sha256": "f251fd1e72720ca07bf5d8e310f54a193fd053479a1f6342c6663ee4fa01cf96" } }, "targets": [ @@ -9599,22 +9625,22 @@ "target": "hashbrown" }, { - "id": "instant 0.1.13", + "id": "instant 0.1.12", "target": "instant" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], "selects": {} }, "edition": "2018", - "version": "0.49.3" + "version": "0.49.2" }, "license": "MIT", "license_ids": [ @@ -9668,15 +9694,15 @@ "target": "hashbrown" }, { - "id": "instant 0.1.13", + "id": "instant 0.1.12", "target": "instant" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -9745,11 +9771,11 @@ "target": "hashbrown" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -9813,15 +9839,15 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -9874,14 +9900,14 @@ ], "license_file": "LICENSE" }, - "camino 1.1.9": { + "camino 1.1.6": { "name": "camino", - "version": "1.1.9", + "version": "1.1.6", "package_url": "https://github.com/camino-rs/camino", "repository": { "Http": { - "url": "https://static.crates.io/crates/camino/1.1.9/download", - "sha256": "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" + "url": "https://static.crates.io/crates/camino/1.1.6/download", + "sha256": "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" } }, "targets": [ @@ -9925,7 +9951,7 @@ "deps": { "common": [ { - "id": "camino 1.1.9", + "id": "camino 1.1.6", "target": "build_script_build" }, { @@ -9936,7 +9962,7 @@ "selects": {} }, "edition": "2018", - "version": "1.1.9" + "version": "1.1.6" }, "build_script_attrs": { "compile_data_glob": [ @@ -10001,19 +10027,19 @@ "target": "canbench_rs" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "clap 4.5.26", + "id": "clap 4.5.20", "target": "clap" }, { - "id": "colored 2.2.0", + "id": "colored 2.0.4", "target": "colored" }, { - "id": "flate2 1.0.35", + "id": "flate2 1.0.31", "target": "flate2" }, { @@ -10029,7 +10055,7 @@ "target": "reqwest" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -10045,7 +10071,7 @@ "target": "sha256" }, { - "id": "tempfile 3.15.0", + "id": "tempfile 3.12.0", "target": "tempfile" }, { @@ -10096,7 +10122,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -10160,11 +10186,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -10183,14 +10209,14 @@ ], "license_file": null }, - "candid 0.10.12": { + "candid 0.10.10": { "name": "candid", - "version": "0.10.12", + "version": "0.10.10", "package_url": "https://github.com/dfinity/candid", "repository": { "Http": { - "url": "https://static.crates.io/crates/candid/0.10.12/download", - "sha256": "51e129c4051c57daf943586e01ef72faae48b04a8f692d5f646febf17a264c38" + "url": "https://static.crates.io/crates/candid/0.10.10/download", + "sha256": "6c30ee7f886f296b6422c0ff017e89dd4f831521dfdcc76f3f71aae1ce817222" } }, "targets": [ @@ -10226,7 +10252,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -10258,7 +10284,7 @@ "target": "num_traits" }, { - "id": "pretty 0.12.3", + "id": "pretty 0.12.1", "target": "pretty" }, { @@ -10270,14 +10296,14 @@ "target": "serde_bytes" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], "selects": { "cfg(not(target_arch = \"wasm32\"))": [ { - "id": "stacker 0.1.17", + "id": "stacker 0.1.15", "target": "stacker" } ] @@ -10297,7 +10323,7 @@ ], "selects": {} }, - "version": "0.10.12" + "version": "0.10.10" }, "license": "Apache-2.0", "license_ids": [ @@ -10337,19 +10363,19 @@ "deps": { "common": [ { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -10364,14 +10390,14 @@ ], "license_file": "LICENSE" }, - "candid_parser 0.1.4": { + "candid_parser 0.1.2": { "name": "candid_parser", - "version": "0.1.4", + "version": "0.1.2", "package_url": "https://github.com/dfinity/candid", "repository": { "Http": { - "url": "https://static.crates.io/crates/candid_parser/0.1.4/download", - "sha256": "48a3da76f989cd350b7342c64c6c6008341bb6186f6832ef04e56dc50ba0fd76" + "url": "https://static.crates.io/crates/candid_parser/0.1.2/download", + "sha256": "36381de3ba8a312deb028552c0d63f7c7fe6e204f44bae4c58a3643308cfa9d5" } }, "targets": [ @@ -10408,15 +10434,15 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "candid_parser 0.1.4", + "id": "candid_parser 0.1.2", "target": "build_script_build" }, { @@ -10432,7 +10458,7 @@ "target": "hex" }, { - "id": "lalrpop-util 0.20.2", + "id": "lalrpop-util 0.20.0", "target": "lalrpop_util" }, { @@ -10444,18 +10470,18 @@ "target": "num_bigint" }, { - "id": "pretty 0.12.3", + "id": "pretty 0.12.1", "target": "pretty" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], "selects": {} }, "edition": "2021", - "version": "0.1.4" + "version": "0.1.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -10467,7 +10493,7 @@ "deps": { "common": [ { - "id": "lalrpop 0.20.2", + "id": "lalrpop 0.20.0", "target": "lalrpop" } ], @@ -10480,14 +10506,14 @@ ], "license_file": "LICENSE" }, - "cargo-platform 0.1.9": { + "cargo-platform 0.1.3": { "name": "cargo-platform", - "version": "0.1.9", + "version": "0.1.3", "package_url": "https://github.com/rust-lang/cargo", "repository": { "Http": { - "url": "https://static.crates.io/crates/cargo-platform/0.1.9/download", - "sha256": "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" + "url": "https://static.crates.io/crates/cargo-platform/0.1.3/download", + "sha256": "2cfa25e60aea747ec7e1124f238816749faa93759c6ff5b31f1ccdda137f4479" } }, "targets": [ @@ -10519,7 +10545,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.9" + "version": "0.1.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -10566,15 +10592,15 @@ "deps": { "common": [ { - "id": "camino 1.1.9", + "id": "camino 1.1.6", "target": "camino" }, { - "id": "cargo-platform 0.1.9", + "id": "cargo-platform 0.1.3", "target": "cargo_platform" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -10582,7 +10608,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -10636,14 +10662,14 @@ ], "license_file": "LICENSE-APACHE" }, - "cc 1.2.9": { + "cc 1.0.83": { "name": "cc", - "version": "1.2.9", + "version": "1.0.83", "package_url": "https://github.com/rust-lang/cc-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/cc/1.2.9/download", - "sha256": "c8293772165d9345bdaaa39b45b2109591e63fe5e6fbc23c6ff930a048aa310b", + "url": "https://static.crates.io/crates/cc/1.0.83/download", + "sha256": "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0", "patch_args": [ "-p1" ], @@ -10675,189 +10701,160 @@ "common": [], "selects": { "aarch64-apple-darwin": [ + "jobserver", "parallel" ], "aarch64-pc-windows-msvc": [ + "jobserver", "parallel" ], "aarch64-unknown-linux-gnu": [ + "jobserver", "parallel" ], "aarch64-unknown-nixos-gnu": [ + "jobserver", "parallel" ], "arm-unknown-linux-gnueabi": [ + "jobserver", "parallel" ], "i686-pc-windows-msvc": [ + "jobserver", "parallel" ], "i686-unknown-linux-gnu": [ + "jobserver", "parallel" ], "powerpc-unknown-linux-gnu": [ + "jobserver", "parallel" ], "s390x-unknown-linux-gnu": [ + "jobserver", "parallel" ], "x86_64-apple-darwin": [ + "jobserver", "parallel" ], "x86_64-pc-windows-msvc": [ + "jobserver", "parallel" ], "x86_64-unknown-freebsd": [ + "jobserver", "parallel" ], "x86_64-unknown-linux-gnu": [ + "jobserver", "parallel" ], "x86_64-unknown-nixos-gnu": [ + "jobserver", "parallel" ] } }, "deps": { - "common": [ - { - "id": "shlex 1.3.0", - "target": "shlex" - } - ], + "common": [], "selects": { "aarch64-apple-darwin": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.26", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "aarch64-pc-windows-msvc": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.26", "target": "jobserver" } ], "aarch64-unknown-linux-gnu": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.26", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.26", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "arm-unknown-linux-gnueabi": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.26", "target": "jobserver" - }, + } + ], + "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-pc-windows-msvc": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.26", "target": "jobserver" } ], "i686-unknown-linux-gnu": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.26", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "powerpc-unknown-linux-gnu": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.26", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "s390x-unknown-linux-gnu": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.26", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "x86_64-apple-darwin": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.26", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "x86_64-pc-windows-msvc": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.26", "target": "jobserver" } ], "x86_64-unknown-freebsd": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.26", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "x86_64-unknown-linux-gnu": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.26", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "jobserver 0.1.32", + "id": "jobserver 0.1.26", "target": "jobserver" - }, - { - "id": "libc 0.2.169", - "target": "libc" } ] } }, "edition": "2018", - "version": "1.2.9" + "version": "1.0.83" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -10934,11 +10931,11 @@ "target": "base64_url" }, { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { - "id": "ciborium 0.2.2", + "id": "ciborium 0.2.1", "target": "ciborium" }, { @@ -10950,7 +10947,7 @@ "target": "codespan_reporting" }, { - "id": "data-encoding 2.7.0", + "id": "data-encoding 2.4.0", "target": "data_encoding" }, { @@ -10966,23 +10963,23 @@ "target": "lexical_core" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "pest_meta 2.7.15", + "id": "pest_meta 2.7.1", "target": "pest_meta" }, { - "id": "pest_vm 2.7.15", + "id": "pest_vm 2.7.1", "target": "pest_vm" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { - "id": "regex-syntax 0.7.5", + "id": "regex-syntax 0.7.4", "target": "regex_syntax" }, { @@ -10990,7 +10987,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -11153,7 +11150,7 @@ "target": "serde_wasm_bindgen" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], @@ -11163,7 +11160,7 @@ "target": "serde_wasm_bindgen" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], @@ -11227,7 +11224,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], @@ -11493,7 +11490,7 @@ "selects": { "cfg(any(target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.16", + "id": "cpufeatures 0.2.9", "target": "cpufeatures" } ] @@ -11582,14 +11579,14 @@ ], "license_file": "LICENSE-APACHE" }, - "chrono 0.4.39": { + "chrono 0.4.38": { "name": "chrono", - "version": "0.4.39", + "version": "0.4.38", "package_url": "https://github.com/chronotope/chrono", "repository": { "Http": { - "url": "https://static.crates.io/crates/chrono/0.4.39/download", - "sha256": "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825" + "url": "https://static.crates.io/crates/chrono/0.4.38/download", + "sha256": "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" } }, "targets": [ @@ -11644,19 +11641,19 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "aarch64-apple-ios": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "aarch64-apple-ios-sim": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], @@ -11666,7 +11663,7 @@ "target": "android_tzdata" }, { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], @@ -11678,31 +11675,31 @@ ], "aarch64-unknown-fuchsia": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "aarch64-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "arm-unknown-linux-gnueabi": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], @@ -11712,19 +11709,19 @@ "target": "android_tzdata" }, { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "i686-apple-darwin": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], @@ -11734,7 +11731,7 @@ "target": "android_tzdata" }, { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], @@ -11746,47 +11743,47 @@ ], "i686-unknown-freebsd": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "i686-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "powerpc-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "s390x-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "wasm32-unknown-unknown": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], "x86_64-apple-darwin": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "x86_64-apple-ios": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], @@ -11796,7 +11793,7 @@ "target": "android_tzdata" }, { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], @@ -11808,32 +11805,32 @@ ], "x86_64-unknown-freebsd": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "x86_64-unknown-fuchsia": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "x86_64-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "iana-time-zone 0.1.61", + "id": "iana-time-zone 0.1.59", "target": "iana_time_zone" } ] } }, "edition": "2021", - "version": "0.4.39" + "version": "0.4.38" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -11842,14 +11839,14 @@ ], "license_file": "LICENSE.txt" }, - "ciborium 0.2.2": { + "ciborium 0.2.1": { "name": "ciborium", - "version": "0.2.2", + "version": "0.2.1", "package_url": "https://github.com/enarx/ciborium", "repository": { "Http": { - "url": "https://static.crates.io/crates/ciborium/0.2.2/download", - "sha256": "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" + "url": "https://static.crates.io/crates/ciborium/0.2.1/download", + "sha256": "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" } }, "targets": [ @@ -11881,11 +11878,11 @@ "deps": { "common": [ { - "id": "ciborium-io 0.2.2", + "id": "ciborium-io 0.2.1", "target": "ciborium_io" }, { - "id": "ciborium-ll 0.2.2", + "id": "ciborium-ll 0.2.1", "target": "ciborium_ll" }, { @@ -11896,7 +11893,7 @@ "selects": {} }, "edition": "2021", - "version": "0.2.2" + "version": "0.2.1" }, "license": "Apache-2.0", "license_ids": [ @@ -11904,14 +11901,14 @@ ], "license_file": "LICENSE" }, - "ciborium-io 0.2.2": { + "ciborium-io 0.2.1": { "name": "ciborium-io", - "version": "0.2.2", + "version": "0.2.1", "package_url": "https://github.com/enarx/ciborium", "repository": { "Http": { - "url": "https://static.crates.io/crates/ciborium-io/0.2.2/download", - "sha256": "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" + "url": "https://static.crates.io/crates/ciborium-io/0.2.1/download", + "sha256": "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" } }, "targets": [ @@ -11941,7 +11938,7 @@ "selects": {} }, "edition": "2021", - "version": "0.2.2" + "version": "0.2.1" }, "license": "Apache-2.0", "license_ids": [ @@ -11949,14 +11946,14 @@ ], "license_file": "LICENSE" }, - "ciborium-ll 0.2.2": { + "ciborium-ll 0.2.1": { "name": "ciborium-ll", - "version": "0.2.2", + "version": "0.2.1", "package_url": "https://github.com/enarx/ciborium", "repository": { "Http": { - "url": "https://static.crates.io/crates/ciborium-ll/0.2.2/download", - "sha256": "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" + "url": "https://static.crates.io/crates/ciborium-ll/0.2.1/download", + "sha256": "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" } }, "targets": [ @@ -11981,18 +11978,18 @@ "deps": { "common": [ { - "id": "ciborium-io 0.2.2", + "id": "ciborium-io 0.2.1", "target": "ciborium_io" }, { - "id": "half 2.4.1", + "id": "half 1.8.2", "target": "half" } ], "selects": {} }, "edition": "2021", - "version": "0.2.2" + "version": "0.2.1" }, "license": "Apache-2.0", "license_ids": [ @@ -12107,14 +12104,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clang-sys 1.8.1": { + "clang-sys 1.6.1": { "name": "clang-sys", - "version": "1.8.1", + "version": "1.6.1", "package_url": "https://github.com/KyleMayes/clang-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/clang-sys/1.8.1/download", - "sha256": "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" + "url": "https://static.crates.io/crates/clang-sys/1.6.1/download", + "sha256": "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" } }, "targets": [ @@ -12166,26 +12163,26 @@ "deps": { "common": [ { - "id": "clang-sys 1.8.1", + "id": "clang-sys 1.6.1", "target": "build_script_build" }, { - "id": "glob 0.3.2", + "id": "glob 0.3.1", "target": "glob" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "libloading 0.8.6", + "id": "libloading 0.7.4", "target": "libloading" } ], "selects": {} }, - "edition": "2021", - "version": "1.8.1" + "edition": "2015", + "version": "1.6.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -12197,7 +12194,7 @@ "deps": { "common": [ { - "id": "glob 0.3.2", + "id": "glob 0.3.1", "target": "glob" } ], @@ -12274,7 +12271,7 @@ "target": "indexmap" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -12286,7 +12283,7 @@ "target": "termcolor" }, { - "id": "textwrap 0.16.1", + "id": "textwrap 0.16.0", "target": "textwrap" } ], @@ -12311,14 +12308,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap 4.5.26": { + "clap 4.5.20": { "name": "clap", - "version": "4.5.26", + "version": "4.5.20", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap/4.5.26/download", - "sha256": "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783" + "url": "https://static.crates.io/crates/clap/4.5.20/download", + "sha256": "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" } }, "targets": [ @@ -12359,7 +12356,7 @@ "deps": { "common": [ { - "id": "clap_builder 4.5.26", + "id": "clap_builder 4.5.20", "target": "clap_builder" } ], @@ -12369,13 +12366,13 @@ "proc_macro_deps": { "common": [ { - "id": "clap_derive 4.5.24", + "id": "clap_derive 4.5.18", "target": "clap_derive" } ], "selects": {} }, - "version": "4.5.26" + "version": "4.5.20" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -12384,14 +12381,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_builder 4.5.26": { + "clap_builder 4.5.20": { "name": "clap_builder", - "version": "4.5.26", + "version": "4.5.20", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_builder/4.5.26/download", - "sha256": "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121" + "url": "https://static.crates.io/crates/clap_builder/4.5.20/download", + "sha256": "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" } }, "targets": [ @@ -12430,15 +12427,15 @@ "deps": { "common": [ { - "id": "anstream 0.6.18", + "id": "anstream 0.6.15", "target": "anstream" }, { - "id": "anstyle 1.0.10", + "id": "anstyle 1.0.8", "target": "anstyle" }, { - "id": "clap_lex 0.7.4", + "id": "clap_lex 0.7.2", "target": "clap_lex" }, { @@ -12449,7 +12446,7 @@ "selects": {} }, "edition": "2021", - "version": "4.5.26" + "version": "4.5.20" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -12504,11 +12501,11 @@ "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -12528,14 +12525,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_derive 4.5.24": { + "clap_derive 4.5.18": { "name": "clap_derive", - "version": "4.5.24", + "version": "4.5.18", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_derive/4.5.24/download", - "sha256": "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c" + "url": "https://static.crates.io/crates/clap_derive/4.5.18/download", + "sha256": "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" } }, "targets": [ @@ -12570,22 +12567,22 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "4.5.24" + "version": "4.5.18" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -12626,7 +12623,7 @@ "deps": { "common": [ { - "id": "os_str_bytes 6.6.1", + "id": "os_str_bytes 6.5.1", "target": "os_str_bytes" } ], @@ -12642,14 +12639,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_lex 0.7.4": { + "clap_lex 0.7.2": { "name": "clap_lex", - "version": "0.7.4", + "version": "0.7.2", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_lex/0.7.4/download", - "sha256": "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" + "url": "https://static.crates.io/crates/clap_lex/0.7.2/download", + "sha256": "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" } }, "targets": [ @@ -12672,7 +12669,7 @@ "**" ], "edition": "2021", - "version": "0.7.4" + "version": "0.7.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -12713,11 +12710,11 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -12819,7 +12816,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { @@ -12839,7 +12836,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -12851,15 +12848,15 @@ "target": "serde_with" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" }, { - "id": "uuid 1.12.0", + "id": "uuid 1.11.0", "target": "uuid" } ], @@ -12949,7 +12946,7 @@ "target": "termcolor" }, { - "id": "unicode-width 0.1.14", + "id": "unicode-width 0.1.10", "target": "unicode_width" } ], @@ -12964,14 +12961,14 @@ ], "license_file": null }, - "colorchoice 1.0.3": { + "colorchoice 1.0.0": { "name": "colorchoice", - "version": "1.0.3", - "package_url": "https://github.com/rust-cli/anstyle.git", + "version": "1.0.0", + "package_url": "https://github.com/rust-cli/anstyle", "repository": { "Http": { - "url": "https://static.crates.io/crates/colorchoice/1.0.3/download", - "sha256": "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" + "url": "https://static.crates.io/crates/colorchoice/1.0.0/download", + "sha256": "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" } }, "targets": [ @@ -12994,7 +12991,7 @@ "**" ], "edition": "2021", - "version": "1.0.3" + "version": "1.0.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13003,14 +13000,14 @@ ], "license_file": "LICENSE-APACHE" }, - "colored 2.2.0": { + "colored 2.0.4": { "name": "colored", - "version": "2.2.0", + "version": "2.0.4", "package_url": "https://github.com/mackwic/colored", "repository": { "Http": { - "url": "https://static.crates.io/crates/colored/2.2.0/download", - "sha256": "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c" + "url": "https://static.crates.io/crates/colored/2.0.4/download", + "sha256": "2674ec482fbc38012cf31e6c42ba0177b431a0cb6f15fe40efa5aab1bda516f6" } }, "targets": [ @@ -13035,21 +13032,25 @@ "deps": { "common": [ { - "id": "lazy_static 1.5.0", + "id": "is-terminal 0.4.9", + "target": "is_terminal" + }, + { + "id": "lazy_static 1.4.0", "target": "lazy_static" } ], "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.48.0", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "2.2.0" + "version": "2.0.4" }, "license": "MPL-2.0", "license_ids": [ @@ -13117,14 +13118,14 @@ ], "license_file": "LICENSE" }, - "comparable 0.5.5": { + "comparable 0.5.4": { "name": "comparable", - "version": "0.5.5", + "version": "0.5.4", "package_url": "https://github.com/jwiegley/comparable", "repository": { "Http": { - "url": "https://static.crates.io/crates/comparable/0.5.5/download", - "sha256": "8606f9aa5b5a2df738584b139c79413d0c1545ed0ffd16e76e0944d1de7388c0" + "url": "https://static.crates.io/crates/comparable/0.5.4/download", + "sha256": "eb513ee8037bf08c5270ecefa48da249f4c58e57a71ccfce0a5b0877d2a20eb2" } }, "targets": [ @@ -13156,7 +13157,7 @@ "deps": { "common": [ { - "id": "pretty_assertions 1.4.1", + "id": "pretty_assertions 1.4.0", "target": "pretty_assertions" }, { @@ -13170,17 +13171,17 @@ "proc_macro_deps": { "common": [ { - "id": "comparable_derive 0.5.5", + "id": "comparable_derive 0.5.4", "target": "comparable_derive" }, { - "id": "comparable_helper 0.5.5", + "id": "comparable_helper 0.5.4", "target": "comparable_helper" } ], "selects": {} }, - "version": "0.5.5" + "version": "0.5.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13189,14 +13190,14 @@ ], "license_file": "LICENSE-APACHE" }, - "comparable_derive 0.5.5": { + "comparable_derive 0.5.4": { "name": "comparable_derive", - "version": "0.5.5", + "version": "0.5.4", "package_url": "https://github.com/jwiegley/comparable", "repository": { "Http": { - "url": "https://static.crates.io/crates/comparable_derive/0.5.5/download", - "sha256": "41f36ea7383b9a2a9ae0a4e225d8a9c1c3aeadde78c59cdc35bad5c02b4dad01" + "url": "https://static.crates.io/crates/comparable_derive/0.5.4/download", + "sha256": "a54b9c40054eb8999c5d1d36fdc90e4e5f7ff0d1d9621706f360b3cbc8beb828" } }, "targets": [ @@ -13225,11 +13226,11 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -13240,7 +13241,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.5" + "version": "0.5.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13249,14 +13250,14 @@ ], "license_file": "LICENSE-APACHE" }, - "comparable_helper 0.5.5": { + "comparable_helper 0.5.4": { "name": "comparable_helper", - "version": "0.5.5", + "version": "0.5.4", "package_url": "https://github.com/jwiegley/comparable", "repository": { "Http": { - "url": "https://static.crates.io/crates/comparable_helper/0.5.5/download", - "sha256": "71c9b60259084f32c14d32476f3a299b4997e3c186e1473bd972ff8a8c83d1b4" + "url": "https://static.crates.io/crates/comparable_helper/0.5.4/download", + "sha256": "fb5437e327e861081c91270becff184859f706e3e50f5301a9d4dc8eb50752c3" } }, "targets": [ @@ -13285,11 +13286,11 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -13300,7 +13301,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.5" + "version": "0.5.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13348,7 +13349,7 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], @@ -13407,15 +13408,15 @@ "deps": { "common": [ { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -13423,14 +13424,14 @@ "target": "terminal_size" }, { - "id": "unicode-width 0.1.14", + "id": "unicode-width 0.1.10", "target": "unicode_width" } ], "selects": { "aarch64-pc-windows-msvc": [ { - "id": "winapi-util 0.1.9", + "id": "winapi-util 0.1.5", "target": "winapi_util" } ], @@ -13452,13 +13453,13 @@ ], "i686-pc-windows-msvc": [ { - "id": "winapi-util 0.1.9", + "id": "winapi-util 0.1.5", "target": "winapi_util" } ], "x86_64-pc-windows-msvc": [ { - "id": "winapi-util 0.1.9", + "id": "winapi-util 0.1.5", "target": "winapi_util" } ] @@ -13473,14 +13474,14 @@ ], "license_file": "LICENSE" }, - "console 0.15.10": { + "console 0.15.7": { "name": "console", - "version": "0.15.10", + "version": "0.15.7", "package_url": "https://github.com/console-rs/console", "repository": { "Http": { - "url": "https://static.crates.io/crates/console/0.15.10/download", - "sha256": "ea3c6ecd8059b57859df5c69830340ed3c41d30e3da0c1cbed90a96ac853041b" + "url": "https://static.crates.io/crates/console/0.15.7/download", + "sha256": "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" } }, "targets": [ @@ -13512,33 +13513,33 @@ "deps": { "common": [ { - "id": "libc 0.2.169", - "target": "libc" + "id": "lazy_static 1.4.0", + "target": "lazy_static" }, { - "id": "once_cell 1.20.2", - "target": "once_cell" + "id": "libc 0.2.158", + "target": "libc" }, { - "id": "unicode-width 0.2.0", + "id": "unicode-width 0.1.10", "target": "unicode_width" } ], "selects": { "cfg(windows)": [ { - "id": "encode_unicode 1.0.0", + "id": "encode_unicode 0.3.6", "target": "encode_unicode" }, { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.45.0", "target": "windows_sys" } ] } }, "edition": "2018", - "version": "0.15.10" + "version": "0.15.7" }, "license": "MIT", "license_ids": [ @@ -13582,7 +13583,7 @@ "target": "cfg_if" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], @@ -13598,82 +13599,14 @@ ], "license_file": "LICENSE-APACHE" }, - "const-hex 1.14.0": { - "name": "const-hex", - "version": "1.14.0", - "package_url": "https://github.com/danipopes/const-hex", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/const-hex/1.14.0/download", - "sha256": "4b0485bab839b018a8f1723fc5391819fea5f8f0f32288ef8a735fd096b6160c" - } - }, - "targets": [ - { - "Library": { - "crate_name": "const_hex", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "const_hex", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "hex", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "hex 0.4.3", - "target": "hex" - } - ], - "selects": { - "cfg(any(target_arch = \"x86\", target_arch = \"x86_64\"))": [ - { - "id": "cpufeatures 0.2.16", - "target": "cpufeatures" - } - ] - } - }, - "edition": "2021", - "version": "1.14.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "const-oid 0.9.6": { + "const-oid 0.9.4": { "name": "const-oid", - "version": "0.9.6", + "version": "0.9.4", "package_url": "https://github.com/RustCrypto/formats/tree/master/const-oid", "repository": { "Http": { - "url": "https://static.crates.io/crates/const-oid/0.9.6/download", - "sha256": "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" + "url": "https://static.crates.io/crates/const-oid/0.9.4/download", + "sha256": "795bc6e66a8e340f075fcf6227e417a2dc976b92b91f3cdc778bb858778b6747" } }, "targets": [ @@ -13703,7 +13636,7 @@ "selects": {} }, "edition": "2021", - "version": "0.9.6" + "version": "0.9.4" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -13782,7 +13715,7 @@ "deps": { "common": [ { - "id": "unicode-segmentation 1.12.0", + "id": "unicode-segmentation 1.10.1", "target": "unicode_segmentation" } ], @@ -13856,7 +13789,7 @@ "target": "percent_encoding" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -13875,7 +13808,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.5", + "id": "version_check 0.9.4", "target": "version_check" } ], @@ -13932,7 +13865,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -13948,65 +13881,6 @@ ], "license_file": "LICENSE-APACHE" }, - "core-foundation 0.10.0": { - "name": "core-foundation", - "version": "0.10.0", - "package_url": "https://github.com/servo/core-foundation-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/core-foundation/0.10.0/download", - "sha256": "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" - } - }, - "targets": [ - { - "Library": { - "crate_name": "core_foundation", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "core_foundation", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "link" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "core-foundation-sys 0.8.7", - "target": "core_foundation_sys" - }, - { - "id": "libc 0.2.169", - "target": "libc" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.10.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "core-foundation-sys 0.8.7": { "name": "core-foundation-sys", "version": "0.8.7", @@ -14097,7 +13971,7 @@ "target": "jsonrpc" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -14105,7 +13979,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -14152,7 +14026,7 @@ "deps": { "common": [ { - "id": "bitcoin 0.30.2", + "id": "bitcoin 0.30.0", "target": "bitcoin" }, { @@ -14164,7 +14038,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -14234,14 +14108,14 @@ ], "license_file": "LICENSE-APACHE" }, - "cpufeatures 0.2.16": { + "cpufeatures 0.2.9": { "name": "cpufeatures", - "version": "0.2.16", + "version": "0.2.9", "package_url": "https://github.com/RustCrypto/utils", "repository": { "Http": { - "url": "https://static.crates.io/crates/cpufeatures/0.2.16/download", - "sha256": "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3" + "url": "https://static.crates.io/crates/cpufeatures/0.2.9/download", + "sha256": "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" } }, "targets": [ @@ -14268,32 +14142,26 @@ "selects": { "aarch64-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))": [ { - "id": "libc 0.2.169", - "target": "libc" - } - ], - "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))": [ - { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] } }, "edition": "2018", - "version": "0.2.16" + "version": "0.2.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -14302,14 +14170,14 @@ ], "license_file": "LICENSE-APACHE" }, - "cranelift-bforest 0.115.1": { + "cranelift-bforest 0.115.0": { "name": "cranelift-bforest", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-bforest/0.115.1/download", - "sha256": "88c1d02b72b6c411c0a2e92b25ed791ad5d071184193c08a34aa0fdcdf000b72" + "url": "https://static.crates.io/crates/cranelift-bforest/0.115.0/download", + "sha256": "ac89549be94911dd0e839b4a7db99e9ed29c17517e1c026f61066884c168aa3c" } }, "targets": [ @@ -14334,14 +14202,14 @@ "deps": { "common": [ { - "id": "cranelift-entity 0.115.1", + "id": "cranelift-entity 0.115.0", "target": "cranelift_entity" } ], "selects": {} }, "edition": "2021", - "version": "0.115.1" + "version": "0.115.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14349,14 +14217,14 @@ ], "license_file": "LICENSE" }, - "cranelift-bitset 0.115.1": { + "cranelift-bitset 0.115.0": { "name": "cranelift-bitset", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-bitset/0.115.1/download", - "sha256": "720b93bd86ebbb23ebfb2db1ed44d54b2ecbdbb2d034d485bc64aa605ee787ab" + "url": "https://static.crates.io/crates/cranelift-bitset/0.115.0/download", + "sha256": "b9bd49369f76c77e34e641af85d0956869237832c118964d08bf5f51f210875a" } }, "targets": [ @@ -14403,7 +14271,7 @@ ], "selects": {} }, - "version": "0.115.1" + "version": "0.115.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14411,14 +14279,14 @@ ], "license_file": null }, - "cranelift-codegen 0.115.1": { + "cranelift-codegen 0.115.0": { "name": "cranelift-codegen", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-codegen/0.115.1/download", - "sha256": "aed3d2d9914d30b460eedd7fd507720203023997bef71452ce84873f9c93537c" + "url": "https://static.crates.io/crates/cranelift-codegen/0.115.0/download", + "sha256": "fd96ce9cf8efebd7f5ab8ced5a0ce44250280bbae9f593d74a6d7effc3582a35" } }, "targets": [ @@ -14469,27 +14337,27 @@ "target": "bumpalo" }, { - "id": "cranelift-bforest 0.115.1", + "id": "cranelift-bforest 0.115.0", "target": "cranelift_bforest" }, { - "id": "cranelift-bitset 0.115.1", + "id": "cranelift-bitset 0.115.0", "target": "cranelift_bitset" }, { - "id": "cranelift-codegen 0.115.1", + "id": "cranelift-codegen 0.115.0", "target": "build_script_build" }, { - "id": "cranelift-codegen-shared 0.115.1", + "id": "cranelift-codegen-shared 0.115.0", "target": "cranelift_codegen_shared" }, { - "id": "cranelift-control 0.115.1", + "id": "cranelift-control 0.115.0", "target": "cranelift_control" }, { - "id": "cranelift-entity 0.115.1", + "id": "cranelift-entity 0.115.0", "target": "cranelift_entity" }, { @@ -14501,7 +14369,7 @@ "target": "hashbrown" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -14509,7 +14377,7 @@ "target": "regalloc2" }, { - "id": "rustc-hash 2.1.0", + "id": "rustc-hash 2.0.0", "target": "rustc_hash" }, { @@ -14524,7 +14392,7 @@ "selects": {} }, "edition": "2021", - "version": "0.115.1" + "version": "0.115.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -14536,11 +14404,11 @@ "deps": { "common": [ { - "id": "cranelift-codegen-meta 0.115.1", + "id": "cranelift-codegen-meta 0.115.0", "target": "cranelift_codegen_meta" }, { - "id": "cranelift-isle 0.115.1", + "id": "cranelift-isle 0.115.0", "target": "cranelift_isle" } ], @@ -14553,14 +14421,14 @@ ], "license_file": "LICENSE" }, - "cranelift-codegen-meta 0.115.1": { + "cranelift-codegen-meta 0.115.0": { "name": "cranelift-codegen-meta", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-codegen-meta/0.115.1/download", - "sha256": "888c188d32263ec9e048873ff0b68c700933600d553f4412417916828be25f8e", + "url": "https://static.crates.io/crates/cranelift-codegen-meta/0.115.0/download", + "sha256": "5a68e358827afe4bfb6239fcbf6fbd5ac56206ece8a99c8f5f9bbd518773281a", "patch_args": [ "-p4" ], @@ -14591,14 +14459,14 @@ "deps": { "common": [ { - "id": "cranelift-codegen-shared 0.115.1", + "id": "cranelift-codegen-shared 0.115.0", "target": "cranelift_codegen_shared" } ], "selects": {} }, "edition": "2021", - "version": "0.115.1" + "version": "0.115.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14606,14 +14474,14 @@ ], "license_file": "LICENSE" }, - "cranelift-codegen-shared 0.115.1": { + "cranelift-codegen-shared 0.115.0": { "name": "cranelift-codegen-shared", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-codegen-shared/0.115.1/download", - "sha256": "4ddd5f4114d04ce7e073dd74e2ad16541fc61970726fcc8b2d5644a154ee4127" + "url": "https://static.crates.io/crates/cranelift-codegen-shared/0.115.0/download", + "sha256": "e184c9767afbe73d50c55ec29abcf4c32f9baf0d9d22b86d58c4d55e06dee181" } }, "targets": [ @@ -14636,7 +14504,7 @@ "**" ], "edition": "2021", - "version": "0.115.1" + "version": "0.115.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14644,14 +14512,14 @@ ], "license_file": "LICENSE" }, - "cranelift-control 0.115.1": { + "cranelift-control 0.115.0": { "name": "cranelift-control", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-control/0.115.1/download", - "sha256": "92cc4c98d6a4256a1600d93ccd3536f3e77da9b4ca2c279de786ac22876e67d6" + "url": "https://static.crates.io/crates/cranelift-control/0.115.0/download", + "sha256": "5cc7664f2a66f053e33f149e952bb5971d138e3af637f5097727ed6dc0ed95dd" } }, "targets": [ @@ -14683,14 +14551,14 @@ "deps": { "common": [ { - "id": "arbitrary 1.4.1", + "id": "arbitrary 1.3.2", "target": "arbitrary" } ], "selects": {} }, "edition": "2021", - "version": "0.115.1" + "version": "0.115.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14698,14 +14566,14 @@ ], "license_file": "LICENSE" }, - "cranelift-entity 0.115.1": { + "cranelift-entity 0.115.0": { "name": "cranelift-entity", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-entity/0.115.1/download", - "sha256": "760af4b5e051b5f82097a27274b917e3751736369fa73660513488248d27f23d" + "url": "https://static.crates.io/crates/cranelift-entity/0.115.0/download", + "sha256": "118597e3a9cf86c3556fa579a7a23b955fa18231651a52a77a2475d305a9cf84" } }, "targets": [ @@ -14738,7 +14606,7 @@ "deps": { "common": [ { - "id": "cranelift-bitset 0.115.1", + "id": "cranelift-bitset 0.115.0", "target": "cranelift_bitset" }, { @@ -14758,7 +14626,7 @@ ], "selects": {} }, - "version": "0.115.1" + "version": "0.115.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14766,14 +14634,14 @@ ], "license_file": "LICENSE" }, - "cranelift-frontend 0.115.1": { + "cranelift-frontend 0.115.0": { "name": "cranelift-frontend", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-frontend/0.115.1/download", - "sha256": "c0bf77ec0f470621655ec7539860b5c620d4f91326654ab21b075b83900f8831" + "url": "https://static.crates.io/crates/cranelift-frontend/0.115.0/download", + "sha256": "7638ea1efb069a0aa18d8ee67401b6b0d19f6bfe5de5e9ede348bfc80bb0d8c7" } }, "targets": [ @@ -14805,11 +14673,11 @@ "deps": { "common": [ { - "id": "cranelift-codegen 0.115.1", + "id": "cranelift-codegen 0.115.0", "target": "cranelift_codegen" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -14824,7 +14692,7 @@ "selects": {} }, "edition": "2021", - "version": "0.115.1" + "version": "0.115.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14832,14 +14700,14 @@ ], "license_file": "LICENSE" }, - "cranelift-isle 0.115.1": { + "cranelift-isle 0.115.0": { "name": "cranelift-isle", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime/tree/main/cranelift/isle", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-isle/0.115.1/download", - "sha256": "4b665d0a6932c421620be184f9fc7f7adaf1b0bc2fa77bb7ac5177c49abf645b", + "url": "https://static.crates.io/crates/cranelift-isle/0.115.0/download", + "sha256": "15c53e1152a0b01c4ed2b1e0535602b8e86458777dd9d18b28732b16325c7dc0", "patch_args": [ "-p4" ], @@ -14888,14 +14756,14 @@ "deps": { "common": [ { - "id": "cranelift-isle 0.115.1", + "id": "cranelift-isle 0.115.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.115.1" + "version": "0.115.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -14911,14 +14779,14 @@ ], "license_file": null }, - "cranelift-native 0.115.1": { + "cranelift-native 0.115.0": { "name": "cranelift-native", - "version": "0.115.1", + "version": "0.115.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/cranelift-native/0.115.1/download", - "sha256": "bb2e75d1bd43dfec10924798f15e6474f1dbf63b0024506551aa19394dbe72ab" + "url": "https://static.crates.io/crates/cranelift-native/0.115.0/download", + "sha256": "7b7d8f895444fa52dd7bdd0bed11bf007a7fb43af65a6deac8fcc4094c6372f7" } }, "targets": [ @@ -14950,7 +14818,7 @@ "deps": { "common": [ { - "id": "cranelift-codegen 0.115.1", + "id": "cranelift-codegen 0.115.0", "target": "cranelift_codegen" }, { @@ -14961,14 +14829,14 @@ "selects": { "cfg(any(target_arch = \"s390x\", target_arch = \"riscv64\"))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] } }, "edition": "2021", - "version": "0.115.1" + "version": "0.115.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -14976,14 +14844,14 @@ ], "license_file": "LICENSE" }, - "crc32fast 1.4.2": { + "crc32fast 1.3.2": { "name": "crc32fast", - "version": "1.4.2", + "version": "1.3.2", "package_url": "https://github.com/srijs/rust-crc32fast", "repository": { "Http": { - "url": "https://static.crates.io/crates/crc32fast/1.4.2/download", - "sha256": "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" + "url": "https://static.crates.io/crates/crc32fast/1.3.2/download", + "sha256": "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" } }, "targets": [ @@ -14998,6 +14866,18 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], "library_target_name": "crc32fast", @@ -15017,12 +14897,24 @@ { "id": "cfg-if 1.0.0", "target": "cfg_if" + }, + { + "id": "crc32fast 1.3.2", + "target": "build_script_build" } ], "selects": {} }, "edition": "2015", - "version": "1.4.2" + "version": "1.3.2" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15085,11 +14977,11 @@ "target": "cast" }, { - "id": "ciborium 0.2.2", + "id": "ciborium 0.2.1", "target": "ciborium" }, { - "id": "clap 4.5.26", + "id": "clap 4.5.20", "target": "clap" }, { @@ -15101,7 +14993,7 @@ "target": "futures" }, { - "id": "is-terminal 0.4.13", + "id": "is-terminal 0.4.9", "target": "is_terminal" }, { @@ -15113,15 +15005,15 @@ "target": "num_traits" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "oorandom 11.1.4", + "id": "oorandom 11.1.3", "target": "oorandom" }, { - "id": "plotters 0.3.7", + "id": "plotters 0.3.5", "target": "plotters" }, { @@ -15129,7 +15021,7 @@ "target": "rayon" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -15137,7 +15029,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -15145,11 +15037,11 @@ "target": "tinytemplate" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { - "id": "walkdir 2.5.0", + "id": "walkdir 2.3.3", "target": "walkdir" } ], @@ -15270,11 +15162,11 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { - "id": "crossbeam-deque 0.8.6", + "id": "crossbeam-deque 0.8.5", "target": "crossbeam_deque" }, { @@ -15282,11 +15174,11 @@ "target": "crossbeam_epoch" }, { - "id": "crossbeam-queue 0.3.12", + "id": "crossbeam-queue 0.3.11", "target": "crossbeam_queue" }, { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], @@ -15302,14 +15194,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crossbeam-channel 0.5.14": { + "crossbeam-channel 0.5.13": { "name": "crossbeam-channel", - "version": "0.5.14", + "version": "0.5.13", "package_url": "https://github.com/crossbeam-rs/crossbeam", "repository": { "Http": { - "url": "https://static.crates.io/crates/crossbeam-channel/0.5.14/download", - "sha256": "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471" + "url": "https://static.crates.io/crates/crossbeam-channel/0.5.13/download", + "sha256": "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" } }, "targets": [ @@ -15341,14 +15233,14 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], "selects": {} }, "edition": "2021", - "version": "0.5.14" + "version": "0.5.13" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15357,14 +15249,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crossbeam-deque 0.8.6": { + "crossbeam-deque 0.8.5": { "name": "crossbeam-deque", - "version": "0.8.6", + "version": "0.8.5", "package_url": "https://github.com/crossbeam-rs/crossbeam", "repository": { "Http": { - "url": "https://static.crates.io/crates/crossbeam-deque/0.8.6/download", - "sha256": "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" + "url": "https://static.crates.io/crates/crossbeam-deque/0.8.5/download", + "sha256": "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" } }, "targets": [ @@ -15400,14 +15292,14 @@ "target": "crossbeam_epoch" }, { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], "selects": {} }, "edition": "2021", - "version": "0.8.6" + "version": "0.8.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15456,7 +15348,7 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], @@ -15472,14 +15364,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crossbeam-queue 0.3.12": { + "crossbeam-queue 0.3.11": { "name": "crossbeam-queue", - "version": "0.3.12", + "version": "0.3.11", "package_url": "https://github.com/crossbeam-rs/crossbeam", "repository": { "Http": { - "url": "https://static.crates.io/crates/crossbeam-queue/0.3.12/download", - "sha256": "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" + "url": "https://static.crates.io/crates/crossbeam-queue/0.3.11/download", + "sha256": "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" } }, "targets": [ @@ -15511,14 +15403,14 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], "selects": {} }, "edition": "2021", - "version": "0.3.12" + "version": "0.3.11" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15527,14 +15419,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crossbeam-utils 0.8.21": { + "crossbeam-utils 0.8.19": { "name": "crossbeam-utils", - "version": "0.8.21", + "version": "0.8.19", "package_url": "https://github.com/crossbeam-rs/crossbeam", "repository": { "Http": { - "url": "https://static.crates.io/crates/crossbeam-utils/0.8.21/download", - "sha256": "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" + "url": "https://static.crates.io/crates/crossbeam-utils/0.8.19/download", + "sha256": "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" } }, "targets": [ @@ -15578,14 +15470,14 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.8.21" + "version": "0.8.19" }, "build_script_attrs": { "compile_data_glob": [ @@ -15643,18 +15535,18 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15662,13 +15554,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "aarch64-apple-ios": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15676,13 +15568,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "aarch64-apple-ios-sim": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15690,13 +15582,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "aarch64-linux-android": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15704,7 +15596,7 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], @@ -15720,7 +15612,7 @@ ], "aarch64-unknown-fuchsia": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15728,13 +15620,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "aarch64-unknown-linux-gnu": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15742,13 +15634,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15756,13 +15648,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15770,13 +15662,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "arm-unknown-linux-gnueabi": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15784,13 +15676,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "armv7-linux-androideabi": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15798,13 +15690,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15812,19 +15704,19 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-apple-darwin": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15832,13 +15724,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "i686-linux-android": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15846,7 +15738,7 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], @@ -15862,7 +15754,7 @@ ], "i686-unknown-freebsd": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15870,13 +15762,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "i686-unknown-linux-gnu": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15884,13 +15776,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "powerpc-unknown-linux-gnu": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15898,13 +15790,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "s390x-unknown-linux-gnu": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15912,13 +15804,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "x86_64-apple-darwin": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15926,13 +15818,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "x86_64-apple-ios": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15940,13 +15832,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "x86_64-linux-android": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15954,7 +15846,7 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], @@ -15970,7 +15862,7 @@ ], "x86_64-unknown-freebsd": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15978,13 +15870,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "x86_64-unknown-fuchsia": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -15992,13 +15884,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "x86_64-unknown-linux-gnu": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -16006,13 +15898,13 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio" }, { @@ -16020,7 +15912,7 @@ "target": "signal_hook" }, { - "id": "signal-hook-mio 0.2.4", + "id": "signal-hook-mio 0.2.3", "target": "signal_hook_mio" } ] @@ -16160,14 +16052,14 @@ ], "license_file": null }, - "crypto-bigint 0.5.5": { + "crypto-bigint 0.5.2": { "name": "crypto-bigint", - "version": "0.5.5", + "version": "0.5.2", "package_url": "https://github.com/RustCrypto/crypto-bigint", "repository": { "Http": { - "url": "https://static.crates.io/crates/crypto-bigint/0.5.5/download", - "sha256": "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" + "url": "https://static.crates.io/crates/crypto-bigint/0.5.2/download", + "sha256": "cf4c2f4e1afd912bc40bfd6fed5d9dc1f288e0ba01bfcc835cc5bc3eb13efe15" } }, "targets": [ @@ -16219,7 +16111,7 @@ "selects": {} }, "edition": "2021", - "version": "0.5.5" + "version": "0.5.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -16324,15 +16216,15 @@ "deps": { "common": [ { - "id": "dtoa-short 0.3.5", + "id": "dtoa-short 0.3.4", "target": "dtoa_short" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "phf 0.11.3", + "id": "phf 0.11.2", "target": "phf" }, { @@ -16392,11 +16284,11 @@ "deps": { "common": [ { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -16411,14 +16303,14 @@ ], "license_file": "LICENSE" }, - "csv 1.3.1": { + "csv 1.2.2": { "name": "csv", - "version": "1.3.1", + "version": "1.2.2", "package_url": "https://github.com/BurntSushi/rust-csv", "repository": { "Http": { - "url": "https://static.crates.io/crates/csv/1.3.1/download", - "sha256": "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf" + "url": "https://static.crates.io/crates/csv/1.2.2/download", + "sha256": "626ae34994d3d8d668f4269922248239db4ae42d538b14c398b74a52208e8086" } }, "targets": [ @@ -16443,15 +16335,15 @@ "deps": { "common": [ { - "id": "csv-core 0.1.11", + "id": "csv-core 0.1.10", "target": "csv_core" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "ryu 1.0.18", + "id": "ryu 1.0.15", "target": "ryu" }, { @@ -16462,7 +16354,7 @@ "selects": {} }, "edition": "2021", - "version": "1.3.1" + "version": "1.2.2" }, "license": "Unlicense/MIT", "license_ids": [ @@ -16471,14 +16363,14 @@ ], "license_file": "LICENSE-MIT" }, - "csv-core 0.1.11": { + "csv-core 0.1.10": { "name": "csv-core", - "version": "0.1.11", + "version": "0.1.10", "package_url": "https://github.com/BurntSushi/rust-csv", "repository": { "Http": { - "url": "https://static.crates.io/crates/csv-core/0.1.11/download", - "sha256": "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" + "url": "https://static.crates.io/crates/csv-core/0.1.10/download", + "sha256": "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" } }, "targets": [ @@ -16516,7 +16408,7 @@ "selects": {} }, "edition": "2018", - "version": "0.1.11" + "version": "0.1.10" }, "license": "Unlicense/MIT", "license_ids": [ @@ -16674,13 +16566,13 @@ "selects": { "cfg(curve25519_dalek_backend = \"fiat\")": [ { - "id": "fiat-crypto 0.2.9", + "id": "fiat-crypto 0.2.6", "target": "fiat_crypto" } ], "cfg(target_arch = \"x86_64\")": [ { - "id": "cpufeatures 0.2.16", + "id": "cpufeatures 0.2.9", "target": "cpufeatures" } ] @@ -16717,7 +16609,7 @@ "deps": { "common": [ { - "id": "rustc_version 0.4.1", + "id": "rustc_version 0.4.0", "target": "rustc_version" } ], @@ -16762,15 +16654,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -17077,11 +16969,11 @@ "target": "ident_case" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -17151,11 +17043,11 @@ "target": "ident_case" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -17163,7 +17055,7 @@ "target": "strsim" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -17214,7 +17106,7 @@ "target": "darling_core" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -17269,11 +17161,11 @@ "target": "darling_core" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -17288,14 +17180,14 @@ ], "license_file": "LICENSE" }, - "dary_heap 0.3.7": { + "dary_heap 0.3.6": { "name": "dary_heap", - "version": "0.3.7", + "version": "0.3.6", "package_url": "https://github.com/hanmertens/dary_heap", "repository": { "Http": { - "url": "https://static.crates.io/crates/dary_heap/0.3.7/download", - "sha256": "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728" + "url": "https://static.crates.io/crates/dary_heap/0.3.6/download", + "sha256": "7762d17f1241643615821a8455a0b2c3e803784b058693d990b11f2dce25a0ca" } }, "targets": [ @@ -17318,7 +17210,7 @@ "**" ], "edition": "2018", - "version": "0.3.7" + "version": "0.3.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -17327,14 +17219,14 @@ ], "license_file": "LICENSE-APACHE" }, - "dashmap 5.5.3": { + "dashmap 5.5.0": { "name": "dashmap", - "version": "5.5.3", + "version": "5.5.0", "package_url": "https://github.com/xacrimon/dashmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/dashmap/5.5.3/download", - "sha256": "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" + "url": "https://static.crates.io/crates/dashmap/5.5.0/download", + "sha256": "6943ae99c34386c84a470c499d3414f66502a41340aa895406e0d2e4a207b91d" } }, "targets": [ @@ -17367,22 +17259,22 @@ "target": "hashbrown" }, { - "id": "lock_api 0.4.12", + "id": "lock_api 0.4.10", "target": "lock_api" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "parking_lot_core 0.9.10", + "id": "parking_lot_core 0.9.8", "target": "parking_lot_core" } ], "selects": {} }, "edition": "2018", - "version": "5.5.3" + "version": "5.5.0" }, "license": "MIT", "license_ids": [ @@ -17426,7 +17318,7 @@ "target": "cfg_if" }, { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" }, { @@ -17434,15 +17326,15 @@ "target": "hashbrown" }, { - "id": "lock_api 0.4.12", + "id": "lock_api 0.4.10", "target": "lock_api" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "parking_lot_core 0.9.10", + "id": "parking_lot_core 0.9.8", "target": "parking_lot_core" } ], @@ -17457,14 +17349,14 @@ ], "license_file": "LICENSE" }, - "data-encoding 2.7.0": { + "data-encoding 2.4.0": { "name": "data-encoding", - "version": "2.7.0", + "version": "2.4.0", "package_url": "https://github.com/ia0/data-encoding", "repository": { "Http": { - "url": "https://static.crates.io/crates/data-encoding/2.7.0/download", - "sha256": "0e60eed09d8c01d3cee5b7d30acb059b76614c918fa0f992e0dd6eeb10daad6f" + "url": "https://static.crates.io/crates/data-encoding/2.4.0/download", + "sha256": "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" } }, "targets": [ @@ -17495,7 +17387,7 @@ "selects": {} }, "edition": "2018", - "version": "2.7.0" + "version": "2.4.0" }, "license": "MIT", "license_ids": [ @@ -17535,7 +17427,7 @@ "deps": { "common": [ { - "id": "uuid 1.12.0", + "id": "uuid 1.11.0", "target": "uuid" } ], @@ -17550,14 +17442,14 @@ ], "license_file": "LICENSE" }, - "der 0.7.9": { + "der 0.7.7": { "name": "der", - "version": "0.7.9", + "version": "0.7.7", "package_url": "https://github.com/RustCrypto/formats/tree/master/der", "repository": { "Http": { - "url": "https://static.crates.io/crates/der/0.7.9/download", - "sha256": "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" + "url": "https://static.crates.io/crates/der/0.7.7/download", + "sha256": "0c7ed52955ce76b1554f509074bb357d3fb8ac9b51288a65a3fd480d1dfba946" } }, "targets": [ @@ -17594,11 +17486,11 @@ "deps": { "common": [ { - "id": "const-oid 0.9.6", + "id": "const-oid 0.9.4", "target": "const_oid" }, { - "id": "flagset 0.4.6", + "id": "flagset 0.4.3", "target": "flagset" }, { @@ -17616,13 +17508,13 @@ "proc_macro_deps": { "common": [ { - "id": "der_derive 0.7.3", + "id": "der_derive 0.7.2", "target": "der_derive" } ], "selects": {} }, - "version": "0.7.9" + "version": "0.7.7" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -17672,7 +17564,7 @@ "deps": { "common": [ { - "id": "asn1-rs 0.6.2", + "id": "asn1-rs 0.6.1", "target": "asn1_rs" }, { @@ -17698,7 +17590,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], @@ -17713,14 +17605,14 @@ ], "license_file": "LICENSE-APACHE" }, - "der_derive 0.7.3": { + "der_derive 0.7.2": { "name": "der_derive", - "version": "0.7.3", + "version": "0.7.2", "package_url": "https://github.com/RustCrypto/formats/tree/master/der/derive", "repository": { "Http": { - "url": "https://static.crates.io/crates/der_derive/0.7.3/download", - "sha256": "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18" + "url": "https://static.crates.io/crates/der_derive/0.7.2/download", + "sha256": "5fe87ce4529967e0ba1dcf8450bab64d97dfd5010a6256187ffe2e43e6f0e049" } }, "targets": [ @@ -17745,22 +17637,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.7.3" + "version": "0.7.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -17864,15 +17756,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -17887,14 +17779,14 @@ ], "license_file": "LICENSE" }, - "derive_arbitrary 1.4.1": { + "derive_arbitrary 1.3.2": { "name": "derive_arbitrary", - "version": "1.4.1", + "version": "1.3.2", "package_url": "https://github.com/rust-fuzz/arbitrary", "repository": { "Http": { - "url": "https://static.crates.io/crates/derive_arbitrary/1.4.1/download", - "sha256": "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" + "url": "https://static.crates.io/crates/derive_arbitrary/1.3.2/download", + "sha256": "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" } }, "targets": [ @@ -17919,22 +17811,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.4.1" + "version": "1.3.2" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -17943,14 +17835,14 @@ ], "license_file": "LICENSE-APACHE" }, - "derive_more 0.99.18": { + "derive_more 0.99.17": { "name": "derive_more", - "version": "0.99.18", + "version": "0.99.17", "package_url": "https://github.com/JelteF/derive_more", "repository": { "Http": { - "url": "https://static.crates.io/crates/derive_more/0.99.18/download", - "sha256": "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" + "url": "https://static.crates.io/crates/derive_more/0.99.17/download", + "sha256": "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" } }, "targets": [ @@ -18010,137 +17902,22 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 1.0.109", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.99.18" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "derive_more 1.0.0": { - "name": "derive_more", - "version": "1.0.0", - "package_url": "https://github.com/JelteF/derive_more", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/derive_more/1.0.0/download", - "sha256": "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" - } - }, - "targets": [ - { - "Library": { - "crate_name": "derive_more", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "derive_more", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "from" - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "derive_more-impl 1.0.0", - "target": "derive_more_impl" - } - ], - "selects": {} - }, - "version": "1.0.0" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "derive_more-impl 1.0.0": { - "name": "derive_more-impl", - "version": "1.0.0", - "package_url": "https://github.com/JelteF/derive_more", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/derive_more-impl/1.0.0/download", - "sha256": "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "derive_more_impl", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "derive_more_impl", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "from" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.93", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.38", - "target": "quote" - }, - { - "id": "syn 2.0.96", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.0" + "version": "0.99.17" }, "license": "MIT", "license_ids": [ @@ -18330,7 +18107,7 @@ "target": "block_buffer" }, { - "id": "const-oid 0.9.6", + "id": "const-oid 0.9.4", "target": "const_oid" }, { @@ -18393,15 +18170,15 @@ "target": "addr" }, { - "id": "aide 0.13.5", + "id": "aide 0.13.4", "target": "aide" }, { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "arbitrary 1.4.1", + "id": "arbitrary 1.3.2", "target": "arbitrary" }, { @@ -18409,7 +18186,7 @@ "target": "arc_swap" }, { - "id": "arrayvec 0.7.6", + "id": "arrayvec 0.7.4", "target": "arrayvec" }, { @@ -18453,7 +18230,7 @@ "target": "backoff" }, { - "id": "backon 0.4.4", + "id": "backon 0.4.1", "target": "backon" }, { @@ -18477,7 +18254,7 @@ "target": "bindgen" }, { - "id": "bip32 0.5.2", + "id": "bip32 0.5.1", "target": "bip32" }, { @@ -18489,7 +18266,7 @@ "target": "bitcoin" }, { - "id": "bitcoin 0.32.5", + "id": "bitcoin 0.32.2", "target": "bitcoin", "alias": "bitcoin_0_32" }, @@ -18506,7 +18283,7 @@ "target": "bitflags" }, { - "id": "bs58 0.5.1", + "id": "bs58 0.5.0", "target": "bs58" }, { @@ -18518,7 +18295,7 @@ "target": "build_info_build" }, { - "id": "by_address 1.2.1", + "id": "by_address 1.1.0", "target": "by_address" }, { @@ -18534,7 +18311,7 @@ "target": "bytes" }, { - "id": "cached 0.49.3", + "id": "cached 0.49.2", "target": "cached" }, { @@ -18546,11 +18323,11 @@ "target": "canbench_rs" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "candid_parser 0.1.4", + "id": "candid_parser 0.1.2", "target": "candid_parser" }, { @@ -18558,7 +18335,7 @@ "target": "cargo_metadata" }, { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { @@ -18574,11 +18351,11 @@ "target": "chacha20poly1305" }, { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { - "id": "ciborium 0.2.2", + "id": "ciborium 0.2.1", "target": "ciborium" }, { @@ -18586,7 +18363,7 @@ "target": "cidr" }, { - "id": "clap 4.5.26", + "id": "clap 4.5.20", "target": "clap" }, { @@ -18594,11 +18371,11 @@ "target": "cloudflare" }, { - "id": "colored 2.2.0", + "id": "colored 2.0.4", "target": "colored" }, { - "id": "comparable 0.5.5", + "id": "comparable 0.5.4", "target": "comparable" }, { @@ -18610,7 +18387,7 @@ "target": "convert_case" }, { - "id": "crc32fast 1.4.2", + "id": "crc32fast 1.3.2", "target": "crc32fast" }, { @@ -18622,11 +18399,11 @@ "target": "crossbeam" }, { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { - "id": "csv 1.3.1", + "id": "csv 1.2.2", "target": "csv" }, { @@ -18642,11 +18419,11 @@ "target": "cvt" }, { - "id": "dashmap 5.5.3", + "id": "dashmap 5.5.0", "target": "dashmap" }, { - "id": "dyn-clone 1.0.17", + "id": "dyn-clone 1.0.14", "target": "dyn_clone" }, { @@ -18658,19 +18435,19 @@ "target": "env_file_reader" }, { - "id": "erased-serde 0.3.31", + "id": "erased-serde 0.3.28", "target": "erased_serde" }, { - "id": "escargot 0.5.13", + "id": "escargot 0.5.7", "target": "escargot" }, { - "id": "ethers-core 2.0.14", + "id": "ethers-core 2.0.8", "target": "ethers_core" }, { - "id": "ethnum 1.5.0", + "id": "ethnum 1.3.2", "target": "ethnum" }, { @@ -18682,7 +18459,7 @@ "target": "exec" }, { - "id": "eyre 0.6.12", + "id": "eyre 0.6.8", "target": "eyre" }, { @@ -18690,7 +18467,7 @@ "target": "ff" }, { - "id": "flate2 1.0.35", + "id": "flate2 1.0.31", "target": "flate2" }, { @@ -18698,7 +18475,7 @@ "target": "form_urlencoded" }, { - "id": "fqdn 0.3.12", + "id": "fqdn 0.3.11", "target": "fqdn" }, { @@ -18718,7 +18495,7 @@ "target": "get_if_addrs" }, { - "id": "getrandom 0.2.15", + "id": "getrandom 0.2.10", "target": "getrandom" }, { @@ -18726,7 +18503,7 @@ "target": "group" }, { - "id": "hashlink 0.8.4", + "id": "hashlink 0.8.3", "target": "hashlink" }, { @@ -18766,11 +18543,11 @@ "target": "humantime_serde" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { @@ -18846,7 +18623,7 @@ "target": "ic_sha3" }, { - "id": "ic-stable-structures 0.6.7", + "id": "ic-stable-structures 0.6.5", "target": "ic_stable_structures" }, { @@ -18858,7 +18635,7 @@ "target": "ic_transport_types" }, { - "id": "ic-utils 0.39.2", + "id": "ic-utils 0.39.0", "target": "ic_utils" }, { @@ -18866,7 +18643,7 @@ "target": "ic_verify_bls_signature" }, { - "id": "ic-wasm 0.8.6", + "id": "ic-wasm 0.8.4", "target": "ic_wasm" }, { @@ -18898,19 +18675,19 @@ "target": "idna" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "indicatif 0.17.9", + "id": "indicatif 0.17.5", "target": "indicatif" }, { - "id": "inferno 0.12.1", + "id": "inferno 0.12.0", "target": "inferno" }, { - "id": "insta 1.42.0", + "id": "insta 1.31.0", "target": "insta" }, { @@ -18930,7 +18707,7 @@ "target": "isocountry" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.12.0", "target": "itertools" }, { @@ -18954,7 +18731,7 @@ "target": "kube" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -18962,7 +18739,7 @@ "target": "leb128" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -18970,7 +18747,7 @@ "target": "libflate" }, { - "id": "libfuzzer-sys 0.4.8", + "id": "libfuzzer-sys 0.4.7", "target": "libfuzzer_sys" }, { @@ -18990,7 +18767,7 @@ "target": "lmdb_sys" }, { - "id": "local-ip-address 0.5.7", + "id": "local-ip-address 0.5.6", "target": "local_ip_address" }, { @@ -19022,15 +18799,15 @@ "target": "minicbor" }, { - "id": "mockall 0.13.1", + "id": "mockall 0.13.0", "target": "mockall" }, { - "id": "mockito 1.6.1", + "id": "mockito 1.2.0", "target": "mockito" }, { - "id": "moka 0.12.10", + "id": "moka 0.12.8", "target": "moka" }, { @@ -19066,7 +18843,7 @@ "target": "num_cpus" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -19079,7 +18856,7 @@ "alias": "opentelemetry_0_20_0" }, { - "id": "opentelemetry 0.27.1", + "id": "opentelemetry 0.27.0", "target": "opentelemetry" }, { @@ -19103,11 +18880,11 @@ "target": "pairing" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { - "id": "pcre2 0.2.9", + "id": "pcre2 0.2.6", "target": "pcre2" }, { @@ -19115,11 +18892,11 @@ "target": "pem" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "ping 0.5.2", + "id": "ping 0.5.0", "target": "ping" }, { @@ -19127,7 +18904,7 @@ "target": "pkcs8" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" }, { @@ -19135,7 +18912,7 @@ "target": "pprof" }, { - "id": "predicates 3.1.3", + "id": "predicates 3.1.2", "target": "predicates" }, { @@ -19143,15 +18920,15 @@ "target": "pretty_bytes" }, { - "id": "pretty_assertions 1.4.1", + "id": "pretty_assertions 1.4.0", "target": "pretty_assertions" }, { - "id": "priority-queue 1.4.0", + "id": "priority-queue 1.3.2", "target": "priority_queue" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { @@ -19163,24 +18940,24 @@ "target": "prometheus" }, { - "id": "prometheus-parse 0.2.5", + "id": "prometheus-parse 0.2.4", "target": "prometheus_parse" }, { - "id": "proptest 1.6.0", + "id": "proptest 1.5.0", "target": "proptest" }, { - "id": "prost 0.12.6", + "id": "prost 0.12.2", "target": "prost", "alias": "prost_0_12_0" }, { - "id": "prost 0.13.4", + "id": "prost 0.13.3", "target": "prost" }, { - "id": "prost-build 0.13.4", + "id": "prost-build 0.13.3", "target": "prost_build" }, { @@ -19188,7 +18965,7 @@ "target": "protobuf" }, { - "id": "publicsuffix 2.3.0", + "id": "publicsuffix 2.2.3", "target": "publicsuffix" }, { @@ -19196,15 +18973,15 @@ "target": "quickcheck" }, { - "id": "quinn 0.11.6", + "id": "quinn 0.11.5", "target": "quinn" }, { - "id": "quinn-udp 0.5.9", + "id": "quinn-udp 0.5.5", "target": "quinn_udp" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -19232,23 +19009,23 @@ "target": "rayon" }, { - "id": "rcgen 0.13.2", + "id": "rcgen 0.13.1", "target": "rcgen" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { - "id": "reqwest 0.12.12", + "id": "reqwest 0.12.9", "target": "reqwest" }, { - "id": "rgb 0.8.50", + "id": "rgb 0.8.37", "target": "rgb" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { @@ -19268,7 +19045,7 @@ "target": "rolling_file" }, { - "id": "rsa 0.9.7", + "id": "rsa 0.9.6", "target": "rsa" }, { @@ -19276,7 +19053,7 @@ "target": "rstest" }, { - "id": "rusb 0.9.4", + "id": "rusb 0.9.3", "target": "rusb" }, { @@ -19288,7 +19065,7 @@ "target": "rust_decimal" }, { - "id": "rustc-demangle 0.1.24", + "id": "rustc-demangle 0.1.23", "target": "rustc_demangle" }, { @@ -19296,7 +19073,7 @@ "target": "rustc_hash" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { @@ -19308,7 +19085,7 @@ "target": "rusty_fork" }, { - "id": "schemars 0.8.21", + "id": "schemars 0.8.16", "target": "schemars" }, { @@ -19328,7 +19105,7 @@ "target": "secp256k1" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -19348,7 +19125,7 @@ "target": "serde_cbor" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -19380,7 +19157,7 @@ "target": "signature" }, { - "id": "simple_asn1 0.6.3", + "id": "simple_asn1 0.6.2", "target": "simple_asn1" }, { @@ -19412,7 +19189,7 @@ "target": "slog_term" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { @@ -19428,7 +19205,7 @@ "target": "strum" }, { - "id": "stubborn-io 0.3.5", + "id": "stubborn-io 0.3.2", "target": "stubborn_io" }, { @@ -19440,7 +19217,7 @@ "target": "syn" }, { - "id": "tar 0.4.43", + "id": "tar 0.4.39", "target": "tar" }, { @@ -19448,7 +19225,7 @@ "target": "tarpc" }, { - "id": "tempfile 3.15.0", + "id": "tempfile 3.12.0", "target": "tempfile" }, { @@ -19456,11 +19233,11 @@ "target": "tester" }, { - "id": "textplots 0.8.6", + "id": "textplots 0.8.4", "target": "textplots" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 2.0.3", "target": "thiserror" }, { @@ -19480,11 +19257,11 @@ "target": "tikv_jemallocator" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -19496,7 +19273,7 @@ "target": "tokio_metrics" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -19532,7 +19309,7 @@ "target": "tonic_build" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.1", "target": "tower" }, { @@ -19548,7 +19325,7 @@ "target": "tower_test" }, { - "id": "tower_governor 0.4.3", + "id": "tower_governor 0.4.2", "target": "tower_governor" }, { @@ -19588,11 +19365,11 @@ "target": "turmoil" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" }, { - "id": "uuid 1.12.0", + "id": "uuid 1.11.0", "target": "uuid" }, { @@ -19600,7 +19377,7 @@ "target": "vsock" }, { - "id": "walkdir 2.5.0", + "id": "walkdir 2.3.3", "target": "walkdir" }, { @@ -19608,7 +19385,7 @@ "target": "warp" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" }, { @@ -19628,11 +19405,11 @@ "target": "wasmprinter" }, { - "id": "wasmtime 28.0.1", + "id": "wasmtime 28.0.0", "target": "wasmtime" }, { - "id": "wasmtime-environ 28.0.1", + "id": "wasmtime-environ 28.0.0", "target": "wasmtime_environ" }, { @@ -19640,7 +19417,7 @@ "target": "wast" }, { - "id": "wat 1.223.0", + "id": "wat 1.212.0", "target": "wat" }, { @@ -19648,7 +19425,7 @@ "target": "wee_alloc" }, { - "id": "which 4.4.2", + "id": "which 4.4.0", "target": "which" }, { @@ -19686,15 +19463,15 @@ "proc_macro_deps": { "common": [ { - "id": "async-recursion 1.1.1", + "id": "async-recursion 1.0.5", "target": "async_recursion" }, { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" }, { - "id": "educe 0.4.23", + "id": "educe 0.4.22", "target": "educe" }, { @@ -19714,7 +19491,7 @@ "target": "paste" }, { - "id": "proptest-derive 0.5.1", + "id": "proptest-derive 0.5.0", "target": "proptest_derive" }, { @@ -19722,7 +19499,7 @@ "target": "rust_decimal_macros" }, { - "id": "rustversion 1.0.19", + "id": "rustversion 1.0.14", "target": "rustversion" }, { @@ -19880,13 +19657,13 @@ "selects": { "cfg(target_os = \"redox\")": [ { - "id": "redox_users 0.4.6", + "id": "redox_users 0.4.3", "target": "redox_users" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -19942,13 +19719,13 @@ "selects": { "cfg(target_os = \"redox\")": [ { - "id": "redox_users 0.4.6", + "id": "redox_users 0.4.3", "target": "redox_users" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -19970,14 +19747,14 @@ ], "license_file": "LICENSE-APACHE" }, - "displaydoc 0.2.5": { + "displaydoc 0.2.4": { "name": "displaydoc", - "version": "0.2.5", + "version": "0.2.4", "package_url": "https://github.com/yaahc/displaydoc", "repository": { "Http": { - "url": "https://static.crates.io/crates/displaydoc/0.2.5/download", - "sha256": "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" + "url": "https://static.crates.io/crates/displaydoc/0.2.4/download", + "sha256": "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" } }, "targets": [ @@ -20009,22 +19786,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, - "edition": "2021", - "version": "0.2.5" + "edition": "2018", + "version": "0.2.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -20177,7 +19954,7 @@ "deps": { "common": [ { - "id": "colored 2.2.0", + "id": "colored 2.0.4", "target": "colored" }, { @@ -20236,14 +20013,14 @@ ], "license_file": "LICENSE-APACHE" }, - "dtoa-short 0.3.5": { + "dtoa-short 0.3.4": { "name": "dtoa-short", - "version": "0.3.5", + "version": "0.3.4", "package_url": "https://github.com/upsuper/dtoa-short", "repository": { "Http": { - "url": "https://static.crates.io/crates/dtoa-short/0.3.5/download", - "sha256": "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" + "url": "https://static.crates.io/crates/dtoa-short/0.3.4/download", + "sha256": "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74" } }, "targets": [ @@ -20275,7 +20052,7 @@ "selects": {} }, "edition": "2015", - "version": "0.3.5" + "version": "0.3.4" }, "license": "MPL-2.0", "license_ids": [ @@ -20334,14 +20111,14 @@ "license_ids": [], "license_file": "LICENSE" }, - "dyn-clone 1.0.17": { + "dyn-clone 1.0.14": { "name": "dyn-clone", - "version": "1.0.17", + "version": "1.0.14", "package_url": "https://github.com/dtolnay/dyn-clone", "repository": { "Http": { - "url": "https://static.crates.io/crates/dyn-clone/1.0.17/download", - "sha256": "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" + "url": "https://static.crates.io/crates/dyn-clone/1.0.14/download", + "sha256": "23d2f3407d9a573d666de4b5bdf10569d73ca9478087346697dcbae6244bfbcd" } }, "targets": [ @@ -20364,7 +20141,7 @@ "**" ], "edition": "2018", - "version": "1.0.17" + "version": "1.0.14" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -20423,7 +20200,7 @@ "deps": { "common": [ { - "id": "der 0.7.9", + "id": "der 0.7.7", "target": "der" }, { @@ -20582,7 +20359,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -20695,14 +20472,14 @@ ], "license_file": "LICENSE" }, - "educe 0.4.23": { + "educe 0.4.22": { "name": "educe", - "version": "0.4.23", + "version": "0.4.22", "package_url": "https://github.com/magiclen/educe", "repository": { "Http": { - "url": "https://static.crates.io/crates/educe/0.4.23/download", - "sha256": "0f0042ff8246a363dbe77d2ceedb073339e85a804b9a47636c6e016a9a32c05f" + "url": "https://static.crates.io/crates/educe/0.4.22/download", + "sha256": "079044df30bb07de7d846d41a184c4b00e66ebdac93ee459253474f3a47e50ae" } }, "targets": [ @@ -20744,11 +20521,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -20762,13 +20539,13 @@ "proc_macro_deps": { "common": [ { - "id": "enum-ordinalize 3.1.15", + "id": "enum-ordinalize 3.1.13", "target": "enum_ordinalize" } ], "selects": {} }, - "version": "0.4.23" + "version": "0.4.22" }, "license": "MIT", "license_ids": [ @@ -20776,14 +20553,14 @@ ], "license_file": "LICENSE" }, - "ego-tree 0.6.3": { + "ego-tree 0.6.2": { "name": "ego-tree", - "version": "0.6.3", - "package_url": "https://github.com/rust-scraper/ego-tree", + "version": "0.6.2", + "package_url": "https://github.com/programble/ego-tree", "repository": { "Http": { - "url": "https://static.crates.io/crates/ego-tree/0.6.3/download", - "sha256": "12a0bb14ac04a9fcf170d0bbbef949b44cc492f4452bd20c095636956f653642" + "url": "https://static.crates.io/crates/ego-tree/0.6.2/download", + "sha256": "3a68a4904193147e0a8dec3314640e6db742afd5f6e634f428a6af230d9b3591" } }, "targets": [ @@ -20806,7 +20583,7 @@ "**" ], "edition": "2015", - "version": "0.6.3" + "version": "0.6.2" }, "license": "ISC", "license_ids": [ @@ -20814,14 +20591,14 @@ ], "license_file": "LICENSE" }, - "either 1.13.0": { + "either 1.8.1": { "name": "either", - "version": "1.13.0", - "package_url": "https://github.com/rayon-rs/either", + "version": "1.8.1", + "package_url": "https://github.com/bluss/either", "repository": { "Http": { - "url": "https://static.crates.io/crates/either/1.13.0/download", - "sha256": "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" + "url": "https://static.crates.io/crates/either/1.8.1/download", + "sha256": "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" } }, "targets": [ @@ -20851,7 +20628,7 @@ "selects": {} }, "edition": "2018", - "version": "1.13.0" + "version": "1.8.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -20912,7 +20689,7 @@ "target": "base16ct" }, { - "id": "crypto-bigint 0.5.5", + "id": "crypto-bigint 0.5.2", "target": "crypto_bigint" }, { @@ -20997,6 +20774,12 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "alloc" + ], + "selects": {} + }, "edition": "2021", "version": "0.4.0" }, @@ -21007,53 +20790,14 @@ ], "license_file": "LICENSE-APACHE" }, - "embedded-io 0.6.1": { - "name": "embedded-io", - "version": "0.6.1", - "package_url": "https://github.com/rust-embedded/embedded-hal", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/embedded-io/0.6.1/download", - "sha256": "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "embedded_io", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "embedded_io", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.6.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "ena 0.14.3": { + "ena 0.14.2": { "name": "ena", - "version": "0.14.3", + "version": "0.14.2", "package_url": "https://github.com/rust-lang/ena", "repository": { "Http": { - "url": "https://static.crates.io/crates/ena/0.14.3/download", - "sha256": "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5" + "url": "https://static.crates.io/crates/ena/0.14.2/download", + "sha256": "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1" } }, "targets": [ @@ -21078,14 +20822,14 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" } ], "selects": {} }, "edition": "2015", - "version": "0.14.3" + "version": "0.14.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -21140,60 +20884,14 @@ ], "license_file": "LICENSE-APACHE" }, - "encode_unicode 1.0.0": { - "name": "encode_unicode", - "version": "1.0.0", - "package_url": "https://github.com/tormol/encode_unicode", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/encode_unicode/1.0.0/download", - "sha256": "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" - } - }, - "targets": [ - { - "Library": { - "crate_name": "encode_unicode", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "encode_unicode", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.0" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "encoding_rs 0.8.35": { + "encoding_rs 0.8.32": { "name": "encoding_rs", - "version": "0.8.35", + "version": "0.8.32", "package_url": "https://github.com/hsivonen/encoding_rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/encoding_rs/0.8.35/download", - "sha256": "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" + "url": "https://static.crates.io/crates/encoding_rs/0.8.32/download", + "sha256": "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" } }, "targets": [ @@ -21232,7 +20930,7 @@ "selects": {} }, "edition": "2018", - "version": "0.8.35" + "version": "0.8.32" }, "license": "(Apache-2.0 OR MIT) AND BSD-3-Clause", "license_ids": [ @@ -21278,11 +20976,11 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -21302,14 +21000,14 @@ ], "license_file": "LICENSE-APACHE" }, - "enum-as-inner 0.6.1": { + "enum-as-inner 0.6.0": { "name": "enum-as-inner", - "version": "0.6.1", + "version": "0.6.0", "package_url": "https://github.com/bluejekyll/enum-as-inner", "repository": { "Http": { - "url": "https://static.crates.io/crates/enum-as-inner/0.6.1/download", - "sha256": "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" + "url": "https://static.crates.io/crates/enum-as-inner/0.6.0/download", + "sha256": "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" } }, "targets": [ @@ -21334,26 +21032,26 @@ "deps": { "common": [ { - "id": "heck 0.5.0", + "id": "heck 0.4.1", "target": "heck" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.6.1" + "version": "0.6.0" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -21362,14 +21060,14 @@ ], "license_file": "LICENSE-APACHE" }, - "enum-ordinalize 3.1.15": { + "enum-ordinalize 3.1.13": { "name": "enum-ordinalize", - "version": "3.1.15", + "version": "3.1.13", "package_url": "https://github.com/magiclen/enum-ordinalize", "repository": { "Http": { - "url": "https://static.crates.io/crates/enum-ordinalize/3.1.15/download", - "sha256": "1bf1fa3f06bbff1ea5b1a9c7b14aa992a39657db60a2759457328d7e058f49ee" + "url": "https://static.crates.io/crates/enum-ordinalize/3.1.13/download", + "sha256": "e4f76552f53cefc9a7f64987c3701b99d982f7690606fd67de1d09712fbf52f1" } }, "targets": [ @@ -21402,22 +21100,22 @@ "target": "num_traits" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "3.1.15" + "version": "3.1.13" }, "license": "MIT", "license_ids": [ @@ -21509,14 +21207,14 @@ ], "license_file": "LICENSE" }, - "env_filter 0.1.3": { + "env_filter 0.1.2": { "name": "env_filter", - "version": "0.1.3", + "version": "0.1.2", "package_url": "https://github.com/rust-cli/env_logger", "repository": { "Http": { - "url": "https://static.crates.io/crates/env_filter/0.1.3/download", - "sha256": "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" + "url": "https://static.crates.io/crates/env_filter/0.1.2/download", + "sha256": "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" } }, "targets": [ @@ -21541,14 +21239,14 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" } ], "selects": {} }, "edition": "2021", - "version": "0.1.3" + "version": "0.1.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -21595,11 +21293,11 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], @@ -21615,14 +21313,14 @@ ], "license_file": "LICENSE-APACHE" }, - "env_logger 0.11.6": { + "env_logger 0.11.2": { "name": "env_logger", - "version": "0.11.6", + "version": "0.11.2", "package_url": "https://github.com/rust-cli/env_logger", "repository": { "Http": { - "url": "https://static.crates.io/crates/env_logger/0.11.6/download", - "sha256": "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0" + "url": "https://static.crates.io/crates/env_logger/0.11.2/download", + "sha256": "6c012a26a7f605efc424dd53697843a72be7dc86ad2d01f7814337794a12231d" } }, "targets": [ @@ -21647,18 +21345,18 @@ "deps": { "common": [ { - "id": "env_filter 0.1.3", + "id": "env_filter 0.1.2", "target": "env_filter" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" } ], "selects": {} }, "edition": "2021", - "version": "0.11.6" + "version": "0.11.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -21746,15 +21444,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -21808,14 +21506,14 @@ ], "license_file": "LICENSE-APACHE" }, - "erased-serde 0.3.31": { + "erased-serde 0.3.28": { "name": "erased-serde", - "version": "0.3.31", + "version": "0.3.28", "package_url": "https://github.com/dtolnay/erased-serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/erased-serde/0.3.31/download", - "sha256": "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c" + "url": "https://static.crates.io/crates/erased-serde/0.3.28/download", + "sha256": "da96524cc884f6558f1769b6c46686af2fe8e8b4cd253bd5a3cdba8181b8e070" } }, "targets": [ @@ -21830,6 +21528,18 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], "library_target_name": "erased_serde", @@ -21846,6 +21556,10 @@ }, "deps": { "common": [ + { + "id": "erased-serde 0.3.28", + "target": "build_script_build" + }, { "id": "serde 1.0.217", "target": "serde" @@ -21854,7 +21568,15 @@ "selects": {} }, "edition": "2021", - "version": "0.3.31" + "version": "0.3.28" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -21910,19 +21632,19 @@ ], "cfg(target_os = \"hermit\")": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -21944,14 +21666,14 @@ ], "license_file": "LICENSE-APACHE" }, - "errno 0.3.10": { + "errno 0.3.8": { "name": "errno", - "version": "0.3.10", + "version": "0.3.8", "package_url": "https://github.com/lambda-fairy/rust-errno", "repository": { "Http": { - "url": "https://static.crates.io/crates/errno/0.3.10/download", - "sha256": "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" + "url": "https://static.crates.io/crates/errno/0.3.8/download", + "sha256": "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" } }, "targets": [ @@ -21984,32 +21706,32 @@ "selects": { "cfg(target_os = \"hermit\")": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(windows)": [ { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.52.0", "target": "windows_sys" } ] } }, "edition": "2018", - "version": "0.3.10" + "version": "0.3.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -22066,7 +21788,7 @@ "target": "build_script_build" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -22085,7 +21807,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -22098,14 +21820,14 @@ ], "license_file": "LICENSE" }, - "escargot 0.5.13": { + "escargot 0.5.7": { "name": "escargot", - "version": "0.5.13", + "version": "0.5.7", "package_url": "https://github.com/crate-ci/escargot.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/escargot/0.5.13/download", - "sha256": "05a3ac187a16b5382fef8c69fd1bad123c67b7cf3932240a2d43dcdd32cded88" + "url": "https://static.crates.io/crates/escargot/0.5.7/download", + "sha256": "f5584ba17d7ab26a8a7284f13e5bd196294dd2f2d79773cff29b9e9edef601a6" } }, "targets": [ @@ -22148,15 +21870,15 @@ "deps": { "common": [ { - "id": "escargot 0.5.13", + "id": "escargot 0.5.7", "target": "build_script_build" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -22164,14 +21886,14 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], "selects": {} }, - "edition": "2021", - "version": "0.5.13" + "edition": "2018", + "version": "0.5.7" }, "build_script_attrs": { "compile_data_glob": [ @@ -22242,11 +21964,11 @@ "target": "hex" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -22254,7 +21976,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -22262,7 +21984,7 @@ "target": "sha3" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -22346,7 +22068,7 @@ "target": "impl_serde" }, { - "id": "scale-info 2.11.6", + "id": "scale-info 2.9.0", "target": "scale_info" }, { @@ -22433,11 +22155,11 @@ "target": "impl_serde" }, { - "id": "primitive-types 0.12.2", + "id": "primitive-types 0.12.1", "target": "primitive_types" }, { - "id": "scale-info 2.11.6", + "id": "scale-info 2.9.0", "target": "scale_info" }, { @@ -22458,14 +22180,14 @@ ], "license_file": null }, - "ethers-core 2.0.14": { + "ethers-core 2.0.8": { "name": "ethers-core", - "version": "2.0.14", + "version": "2.0.8", "package_url": "https://github.com/gakonst/ethers-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ethers-core/2.0.14/download", - "sha256": "82d80cc6ad30b14a48ab786523af33b37f28a8623fc06afd55324816ef18fb1f" + "url": "https://static.crates.io/crates/ethers-core/2.0.8/download", + "sha256": "60ca2514feb98918a0a31de7e1983c29f2267ebf61b2dc5d4294f91e5b866623" } }, "targets": [ @@ -22490,7 +22212,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.6", + "id": "arrayvec 0.7.4", "target": "arrayvec" }, { @@ -22498,14 +22220,9 @@ "target": "bytes" }, { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, - { - "id": "const-hex 1.14.0", - "target": "const_hex", - "alias": "hex" - }, { "id": "elliptic-curve 0.13.8", "target": "elliptic_curve" @@ -22518,12 +22235,16 @@ "id": "generic-array 0.14.7", "target": "generic_array" }, + { + "id": "hex 0.4.3", + "target": "hex" + }, { "id": "k256 0.13.4", "target": "k256" }, { - "id": "num_enum 0.7.3", + "id": "num_enum 0.6.1", "target": "num_enum" }, { @@ -22543,15 +22264,15 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "strum 0.26.3", + "id": "strum 0.25.0", "target": "strum" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -22559,21 +22280,21 @@ "target": "tiny_keccak" }, { - "id": "unicode-xid 0.2.6", + "id": "unicode-xid 0.2.4", "target": "unicode_xid" } ], "selects": { "cfg(not(target_arch = \"wasm32\"))": [ { - "id": "tempfile 3.15.0", + "id": "tempfile 3.12.0", "target": "tempfile" } ] } }, "edition": "2021", - "version": "2.0.14" + "version": "2.0.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -22582,14 +22303,14 @@ ], "license_file": null }, - "ethnum 1.5.0": { + "ethnum 1.3.2": { "name": "ethnum", - "version": "1.5.0", + "version": "1.3.2", "package_url": "https://github.com/nlordell/ethnum-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ethnum/1.5.0/download", - "sha256": "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c" + "url": "https://static.crates.io/crates/ethnum/1.3.2/download", + "sha256": "0198b9d0078e0f30dedc7acbb21c974e838fc8fae3ee170128658a98cb2c1c04" } }, "targets": [ @@ -22627,7 +22348,7 @@ "selects": {} }, "edition": "2021", - "version": "1.5.0" + "version": "1.3.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -22675,14 +22396,266 @@ ], "license_file": "LICENSE-APACHE" }, - "event-listener 5.4.0": { + "event-listener 4.0.3": { + "name": "event-listener", + "version": "4.0.3", + "package_url": "https://github.com/smol-rs/event-listener", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/event-listener/4.0.3/download", + "sha256": "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" + } + }, + "targets": [ + { + "Library": { + "crate_name": "event_listener", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "event_listener", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "parking", + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "concurrent-queue 2.5.0", + "target": "concurrent_queue" + }, + { + "id": "pin-project-lite 0.2.13", + "target": "pin_project_lite" + } + ], + "selects": { + "aarch64-apple-darwin": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "aarch64-apple-ios": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "aarch64-apple-ios-sim": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "aarch64-linux-android": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "aarch64-pc-windows-msvc": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "aarch64-unknown-fuchsia": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "aarch64-unknown-linux-gnu": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "aarch64-unknown-nixos-gnu": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "aarch64-unknown-nto-qnx710": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "arm-unknown-linux-gnueabi": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "armv7-linux-androideabi": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "armv7-unknown-linux-gnueabi": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "i686-apple-darwin": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "i686-linux-android": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "i686-pc-windows-msvc": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "i686-unknown-freebsd": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "i686-unknown-linux-gnu": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "powerpc-unknown-linux-gnu": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "riscv32imc-unknown-none-elf": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "riscv64gc-unknown-none-elf": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "s390x-unknown-linux-gnu": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "thumbv7em-none-eabi": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "thumbv8m.main-none-eabi": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "x86_64-apple-darwin": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "x86_64-apple-ios": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "x86_64-linux-android": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "x86_64-pc-windows-msvc": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "x86_64-unknown-freebsd": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "x86_64-unknown-fuchsia": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "x86_64-unknown-linux-gnu": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "x86_64-unknown-nixos-gnu": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ], + "x86_64-unknown-none": [ + { + "id": "parking 2.1.0", + "target": "parking" + } + ] + } + }, + "edition": "2021", + "version": "4.0.3" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "event-listener 5.3.1": { "name": "event-listener", - "version": "5.4.0", + "version": "5.3.1", "package_url": "https://github.com/smol-rs/event-listener", "repository": { "Http": { - "url": "https://static.crates.io/crates/event-listener/5.4.0/download", - "sha256": "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" + "url": "https://static.crates.io/crates/event-listener/5.3.1/download", + "sha256": "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" } }, "targets": [ @@ -22719,207 +22692,207 @@ "target": "concurrent_queue" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "aarch64-apple-ios": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "aarch64-apple-ios-sim": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "aarch64-linux-android": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "aarch64-pc-windows-msvc": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "aarch64-unknown-fuchsia": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "aarch64-unknown-linux-gnu": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "arm-unknown-linux-gnueabi": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "armv7-linux-androideabi": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "i686-apple-darwin": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "i686-linux-android": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "i686-pc-windows-msvc": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "i686-unknown-freebsd": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "i686-unknown-linux-gnu": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "powerpc-unknown-linux-gnu": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "riscv32imc-unknown-none-elf": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "riscv64gc-unknown-none-elf": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "s390x-unknown-linux-gnu": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "thumbv7em-none-eabi": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "thumbv8m.main-none-eabi": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "x86_64-apple-darwin": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "x86_64-apple-ios": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "x86_64-linux-android": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "x86_64-pc-windows-msvc": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "x86_64-unknown-freebsd": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "x86_64-unknown-fuchsia": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "x86_64-unknown-linux-gnu": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ], "x86_64-unknown-none": [ { - "id": "parking 2.2.1", + "id": "parking 2.1.0", "target": "parking" } ] } }, "edition": "2021", - "version": "5.4.0" + "version": "5.3.1" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -22928,14 +22901,72 @@ ], "license_file": "LICENSE-APACHE" }, - "event-listener-strategy 0.5.3": { + "event-listener-strategy 0.4.0": { "name": "event-listener-strategy", - "version": "0.5.3", + "version": "0.4.0", + "package_url": "https://github.com/smol-rs/event-listener", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/event-listener-strategy/0.4.0/download", + "sha256": "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" + } + }, + "targets": [ + { + "Library": { + "crate_name": "event_listener_strategy", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "event_listener_strategy", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "event-listener 4.0.3", + "target": "event_listener" + }, + { + "id": "pin-project-lite 0.2.13", + "target": "pin_project_lite" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.4.0" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "event-listener-strategy 0.5.2": { + "name": "event-listener-strategy", + "version": "0.5.2", "package_url": "https://github.com/smol-rs/event-listener-strategy", "repository": { "Http": { - "url": "https://static.crates.io/crates/event-listener-strategy/0.5.3/download", - "sha256": "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2" + "url": "https://static.crates.io/crates/event-listener-strategy/0.5.2/download", + "sha256": "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" } }, "targets": [ @@ -22966,18 +22997,18 @@ "deps": { "common": [ { - "id": "event-listener 5.4.0", + "id": "event-listener 5.3.1", "target": "event_listener" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], "selects": {} }, "edition": "2021", - "version": "0.5.3" + "version": "0.5.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -23018,7 +23049,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -23042,11 +23073,11 @@ "target": "strum" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" } ], @@ -23097,7 +23128,7 @@ "target": "errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -23151,14 +23182,14 @@ ], "license_file": "LICENSE" }, - "eyre 0.6.12": { + "eyre 0.6.8": { "name": "eyre", - "version": "0.6.12", - "package_url": "https://github.com/eyre-rs/eyre", + "version": "0.6.8", + "package_url": "https://github.com/yaahc/eyre", "repository": { "Http": { - "url": "https://static.crates.io/crates/eyre/0.6.12/download", - "sha256": "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec" + "url": "https://static.crates.io/crates/eyre/0.6.8/download", + "sha256": "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb" } }, "targets": [ @@ -23203,7 +23234,7 @@ "deps": { "common": [ { - "id": "eyre 0.6.12", + "id": "eyre 0.6.8", "target": "build_script_build" }, { @@ -23211,14 +23242,14 @@ "target": "indenter" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "selects": {} }, "edition": "2018", - "version": "0.6.12" + "version": "0.6.8" }, "build_script_attrs": { "compile_data_glob": [ @@ -23359,14 +23390,64 @@ ], "license_file": "LICENSE-APACHE" }, - "fastrand 2.3.0": { + "fastrand 1.9.0": { + "name": "fastrand", + "version": "1.9.0", + "package_url": "https://github.com/smol-rs/fastrand", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/fastrand/1.9.0/download", + "sha256": "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" + } + }, + "targets": [ + { + "Library": { + "crate_name": "fastrand", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "fastrand", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [], + "selects": { + "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ + { + "id": "instant 0.1.12", + "target": "instant" + } + ] + } + }, + "edition": "2018", + "version": "1.9.0" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "fastrand 2.1.0": { "name": "fastrand", - "version": "2.3.0", + "version": "2.1.0", "package_url": "https://github.com/smol-rs/fastrand", "repository": { "Http": { - "url": "https://static.crates.io/crates/fastrand/2.3.0/download", - "sha256": "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" + "url": "https://static.crates.io/crates/fastrand/2.1.0/download", + "sha256": "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" } }, "targets": [ @@ -23397,7 +23478,7 @@ "selects": {} }, "edition": "2018", - "version": "2.3.0" + "version": "2.1.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -23523,14 +23604,14 @@ ], "license_file": "LICENSE-APACHE" }, - "fiat-crypto 0.2.9": { + "fiat-crypto 0.2.6": { "name": "fiat-crypto", - "version": "0.2.9", + "version": "0.2.6", "package_url": "https://github.com/mit-plv/fiat-crypto", "repository": { "Http": { - "url": "https://static.crates.io/crates/fiat-crypto/0.2.9/download", - "sha256": "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" + "url": "https://static.crates.io/crates/fiat-crypto/0.2.6/download", + "sha256": "1676f435fc1dadde4d03e43f5d62b259e1ce5f40bd4ffb21db2b42ebe59c1382" } }, "targets": [ @@ -23553,7 +23634,7 @@ "**" ], "edition": "2018", - "version": "0.2.9" + "version": "0.2.6" }, "license": "MIT OR Apache-2.0 OR BSD-1-Clause", "license_ids": [ @@ -23563,14 +23644,14 @@ ], "license_file": "LICENSE-APACHE" }, - "filetime 0.2.25": { + "filetime 0.2.21": { "name": "filetime", - "version": "0.2.25", + "version": "0.2.21", "package_url": "https://github.com/alexcrichton/filetime", "repository": { "Http": { - "url": "https://static.crates.io/crates/filetime/0.2.25/download", - "sha256": "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" + "url": "https://static.crates.io/crates/filetime/0.2.21/download", + "sha256": "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153" } }, "targets": [ @@ -23602,26 +23683,26 @@ "selects": { "cfg(target_os = \"redox\")": [ { - "id": "libredox 0.1.3", - "target": "libredox" + "id": "redox_syscall 0.2.16", + "target": "syscall" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(windows)": [ { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.48.0", "target": "windows_sys" } ] } }, "edition": "2018", - "version": "0.2.25" + "version": "0.2.21" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -23678,14 +23759,14 @@ "target": "build_script_build" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "selects": { "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" } ], @@ -23710,7 +23791,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -23832,14 +23913,14 @@ ], "license_file": "LICENSE-APACHE" }, - "flagset 0.4.6": { + "flagset 0.4.3": { "name": "flagset", - "version": "0.4.6", + "version": "0.4.3", "package_url": "https://github.com/enarx/flagset", "repository": { "Http": { - "url": "https://static.crates.io/crates/flagset/0.4.6/download", - "sha256": "b3ea1ec5f8307826a5b71094dd91fc04d4ae75d5709b20ad351c7fb4815c86ec" + "url": "https://static.crates.io/crates/flagset/0.4.3/download", + "sha256": "cda653ca797810c02f7ca4b804b40b8b95ae046eb989d356bce17919a8c25499" } }, "targets": [ @@ -23861,8 +23942,8 @@ "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "0.4.6" + "edition": "2018", + "version": "0.4.3" }, "license": "Apache-2.0", "license_ids": [ @@ -23870,14 +23951,14 @@ ], "license_file": "LICENSE" }, - "flate2 1.0.35": { + "flate2 1.0.31": { "name": "flate2", - "version": "1.0.35", + "version": "1.0.31", "package_url": "https://github.com/rust-lang/flate2-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/flate2/1.0.35/download", - "sha256": "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c" + "url": "https://static.crates.io/crates/flate2/1.0.31/download", + "sha256": "7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920" } }, "targets": [ @@ -23911,18 +23992,18 @@ "deps": { "common": [ { - "id": "crc32fast 1.4.2", + "id": "crc32fast 1.3.2", "target": "crc32fast" }, { - "id": "miniz_oxide 0.8.3", + "id": "miniz_oxide 0.7.1", "target": "miniz_oxide" } ], "selects": {} }, "edition": "2018", - "version": "1.0.35" + "version": "1.0.31" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -23931,14 +24012,14 @@ ], "license_file": "LICENSE-APACHE" }, - "float-cmp 0.10.0": { + "float-cmp 0.9.0": { "name": "float-cmp", - "version": "0.10.0", + "version": "0.9.0", "package_url": "https://github.com/mikedilger/float-cmp", "repository": { "Http": { - "url": "https://static.crates.io/crates/float-cmp/0.10.0/download", - "sha256": "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8" + "url": "https://static.crates.io/crates/float-cmp/0.9.0/download", + "sha256": "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" } }, "targets": [ @@ -23978,7 +24059,7 @@ "selects": {} }, "edition": "2018", - "version": "0.10.0" + "version": "0.9.0" }, "license": "MIT", "license_ids": [ @@ -24162,7 +24243,7 @@ "target": "nonempty" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -24177,14 +24258,14 @@ ], "license_file": "LICENSE.txt" }, - "fqdn 0.3.12": { + "fqdn 0.3.11": { "name": "fqdn", - "version": "0.3.12", + "version": "0.3.11", "package_url": "https://github.com/Orange-OpenSource/fqdn", "repository": { "Http": { - "url": "https://static.crates.io/crates/fqdn/0.3.12/download", - "sha256": "eb540cf7bc4fe6df9d8f7f0c974cfd0dce8ed4e9e8884e73433b503ee78b4e7d" + "url": "https://static.crates.io/crates/fqdn/0.3.11/download", + "sha256": "08b1eaa7dfddeab6036292995620bf0435712e619db6d7690605897e76975eb0" } }, "targets": [ @@ -24214,7 +24295,7 @@ "selects": {} }, "edition": "2021", - "version": "0.3.12" + "version": "0.3.11" }, "license": "MIT", "license_ids": [ @@ -24222,14 +24303,14 @@ ], "license_file": null }, - "fqdn 0.4.4": { + "fqdn 0.4.1": { "name": "fqdn", - "version": "0.4.4", + "version": "0.4.1", "package_url": "https://github.com/Orange-OpenSource/fqdn", "repository": { "Http": { - "url": "https://static.crates.io/crates/fqdn/0.4.4/download", - "sha256": "8f66e93156d144bd3a9a970033d04c6fbfb4b641275d8eaa3ff83f5b9c232496" + "url": "https://static.crates.io/crates/fqdn/0.4.1/download", + "sha256": "5eeee501d87b436020fcd3065cc981b5e4d22f2066735268b36b9d513d23e553" } }, "targets": [ @@ -24259,7 +24340,7 @@ "selects": {} }, "edition": "2021", - "version": "0.4.4" + "version": "0.4.1" }, "license": "MIT", "license_ids": [ @@ -24453,7 +24534,7 @@ "target": "mac" }, { - "id": "new_debug_unreachable 1.0.6", + "id": "new_debug_unreachable 1.0.4", "target": "debug_unreachable" } ], @@ -24770,14 +24851,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-lite 2.6.0": { + "futures-lite 2.0.0": { "name": "futures-lite", - "version": "2.6.0", + "version": "2.0.0", "package_url": "https://github.com/smol-rs/futures-lite", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-lite/2.6.0/download", - "sha256": "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" + "url": "https://static.crates.io/crates/futures-lite/2.0.0/download", + "sha256": "9c1155db57329dca6d018b61e76b1488ce9a2e5e44028cac420a5898f4fcef63" } }, "targets": [ @@ -24805,16 +24886,18 @@ "default", "fastrand", "futures-io", + "memchr", "parking", "race", - "std" + "std", + "waker-fn" ], "selects": {} }, "deps": { "common": [ { - "id": "fastrand 2.3.0", + "id": "fastrand 2.1.0", "target": "fastrand" }, { @@ -24826,18 +24909,26 @@ "target": "futures_io" }, { - "id": "parking 2.2.1", + "id": "memchr 2.7.4", + "target": "memchr" + }, + { + "id": "parking 2.1.0", "target": "parking" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" + }, + { + "id": "waker-fn 1.1.0", + "target": "waker_fn" } ], "selects": {} }, - "edition": "2021", - "version": "2.6.0" + "edition": "2018", + "version": "2.0.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -24878,15 +24969,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -24945,11 +25036,11 @@ "target": "futures_io" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" } @@ -25059,14 +25150,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-timer 3.0.3": { + "futures-timer 3.0.2": { "name": "futures-timer", - "version": "3.0.3", + "version": "3.0.2", "package_url": "https://github.com/async-rs/futures-timer", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-timer/3.0.3/download", - "sha256": "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" + "url": "https://static.crates.io/crates/futures-timer/3.0.2/download", + "sha256": "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" } }, "targets": [ @@ -25089,7 +25180,7 @@ "**" ], "edition": "2018", - "version": "3.0.3" + "version": "3.0.2" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -25173,7 +25264,7 @@ "target": "memchr" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -25181,7 +25272,7 @@ "target": "pin_utils" }, { - "id": "slab 0.4.9", + "id": "slab 0.4.8", "target": "slab" } ], @@ -25293,104 +25384,6 @@ ], "license_file": "LICENSE-APACHE" }, - "generator 0.8.4": { - "name": "generator", - "version": "0.8.4", - "package_url": "https://github.com/Xudong-Huang/generator-rs.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/generator/0.8.4/download", - "sha256": "cc6bd114ceda131d3b1d665eba35788690ad37f5916457286b32ab6fd3c438dd" - } - }, - "targets": [ - { - "Library": { - "crate_name": "generator", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "generator", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "generator 0.8.4", - "target": "build_script_build" - }, - { - "id": "log 0.4.25", - "target": "log" - } - ], - "selects": { - "cfg(unix)": [ - { - "id": "libc 0.2.169", - "target": "libc" - } - ], - "cfg(windows)": [ - { - "id": "windows 0.58.0", - "target": "windows" - } - ] - } - }, - "edition": "2021", - "version": "0.8.4" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ], - "proc_macro_deps": { - "common": [ - { - "id": "rustversion 1.0.19", - "target": "rustversion" - } - ], - "selects": {} - } - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "generic-array 0.14.7": { "name": "generic-array", "version": "0.14.7", @@ -25469,7 +25462,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.5", + "id": "version_check 0.9.4", "target": "version_check" } ], @@ -25518,7 +25511,7 @@ "target": "c_linked_list" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -25595,7 +25588,7 @@ "target": "build_script_build" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -25661,7 +25654,7 @@ "deps": { "common": [ { - "id": "unicode-width 0.1.14", + "id": "unicode-width 0.1.10", "target": "unicode_width" } ], @@ -25677,14 +25670,14 @@ ], "license_file": "LICENSE-APACHE" }, - "getrandom 0.2.15": { + "getrandom 0.2.10": { "name": "getrandom", - "version": "0.2.15", + "version": "0.2.10", "package_url": "https://github.com/rust-random/getrandom", "repository": { "Http": { - "url": "https://static.crates.io/crates/getrandom/0.2.15/download", - "sha256": "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" + "url": "https://static.crates.io/crates/getrandom/0.2.10/download", + "sha256": "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" } }, "targets": [ @@ -25711,13 +25704,7 @@ "custom", "std" ], - "selects": { - "wasm32-unknown-unknown": [ - "js", - "js-sys", - "wasm-bindgen" - ] - } + "selects": {} }, "deps": { "common": [ @@ -25735,24 +25722,14 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } - ], - "wasm32-unknown-unknown": [ - { - "id": "js-sys 0.3.77", - "target": "js_sys" - }, - { - "id": "wasm-bindgen 0.2.100", - "target": "wasm_bindgen" - } ] } }, "edition": "2018", - "version": "0.2.15" + "version": "0.2.10" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -25831,6 +25808,52 @@ ], "license_file": "LICENSE-APACHE" }, + "gimli 0.27.3": { + "name": "gimli", + "version": "0.27.3", + "package_url": "https://github.com/gimli-rs/gimli", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/gimli/0.27.3/download", + "sha256": "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" + } + }, + "targets": [ + { + "Library": { + "crate_name": "gimli", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "gimli", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "read", + "read-core" + ], + "selects": {} + }, + "edition": "2018", + "version": "0.27.3" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "gimli 0.31.1": { "name": "gimli", "version": "0.31.1", @@ -25872,7 +25895,7 @@ "deps": { "common": [ { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" } ], @@ -25888,14 +25911,14 @@ ], "license_file": "LICENSE-APACHE" }, - "glob 0.3.2": { + "glob 0.3.1": { "name": "glob", - "version": "0.3.2", + "version": "0.3.1", "package_url": "https://github.com/rust-lang/glob", "repository": { "Http": { - "url": "https://static.crates.io/crates/glob/0.3.2/download", - "sha256": "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" + "url": "https://static.crates.io/crates/glob/0.3.1/download", + "sha256": "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" } }, "targets": [ @@ -25918,7 +25941,7 @@ "**" ], "edition": "2015", - "version": "0.3.2" + "version": "0.3.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -25927,14 +25950,14 @@ ], "license_file": "LICENSE-APACHE" }, - "governor 0.6.3": { + "governor 0.6.0": { "name": "governor", - "version": "0.6.3", - "package_url": "https://github.com/boinkor-net/governor.git", + "version": "0.6.0", + "package_url": "https://github.com/antifuchs/governor.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/governor/0.6.3/download", - "sha256": "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b" + "url": "https://static.crates.io/crates/governor/0.6.0/download", + "sha256": "821239e5672ff23e2a7060901fa622950bbd80b649cdaadd78d1c1767ed14eb4" } }, "targets": [ @@ -25976,7 +25999,7 @@ "target": "cfg_if" }, { - "id": "dashmap 5.5.3", + "id": "dashmap 5.5.0", "target": "dashmap" }, { @@ -25984,7 +26007,7 @@ "target": "futures" }, { - "id": "futures-timer 3.0.3", + "id": "futures-timer 3.0.2", "target": "futures_timer" }, { @@ -25996,15 +26019,11 @@ "target": "nonzero_ext" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { - "id": "portable-atomic 1.10.0", - "target": "portable_atomic" - }, - { - "id": "quanta 0.12.5", + "id": "quanta 0.11.1", "target": "quanta" }, { @@ -26014,16 +26033,12 @@ { "id": "smallvec 1.13.2", "target": "smallvec" - }, - { - "id": "spinning_top 0.3.0", - "target": "spinning_top" } ], "selects": {} }, "edition": "2018", - "version": "0.6.3" + "version": "0.6.0" }, "license": "MIT", "license_ids": [ @@ -26156,15 +26171,15 @@ "target": "http" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "slab 0.4.9", + "id": "slab 0.4.8", "target": "slab" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -26187,14 +26202,14 @@ ], "license_file": "LICENSE" }, - "h2 0.4.7": { + "h2 0.4.4": { "name": "h2", - "version": "0.4.7", + "version": "0.4.4", "package_url": "https://github.com/hyperium/h2", "repository": { "Http": { - "url": "https://static.crates.io/crates/h2/0.4.7/download", - "sha256": "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e" + "url": "https://static.crates.io/crates/h2/0.4.4/download", + "sha256": "816ec7294445779408f36fe57bc5b7fc1cf59664059096c65f905c1c61f58069" } }, "targets": [ @@ -26218,10 +26233,6 @@ ], "deps": { "common": [ - { - "id": "atomic-waker 1.1.2", - "target": "atomic_waker" - }, { "id": "bytes 1.9.0", "target": "bytes" @@ -26238,20 +26249,24 @@ "id": "futures-sink 0.3.31", "target": "futures_sink" }, + { + "id": "futures-util 0.3.31", + "target": "futures_util" + }, { "id": "http 1.2.0", "target": "http" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "slab 0.4.9", + "id": "slab 0.4.8", "target": "slab" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -26266,7 +26281,7 @@ "selects": {} }, "edition": "2021", - "version": "0.4.7" + "version": "0.4.4" }, "license": "MIT", "license_ids": [ @@ -26274,14 +26289,14 @@ ], "license_file": "LICENSE" }, - "half 1.8.3": { + "half 1.8.2": { "name": "half", - "version": "1.8.3", + "version": "1.8.2", "package_url": "https://github.com/starkat99/half-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/half/1.8.3/download", - "sha256": "1b43ede17f21864e81be2fa654110bf1e793774238d86ef8555c37e6519c0403" + "url": "https://static.crates.io/crates/half/1.8.2/download", + "sha256": "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" } }, "targets": [ @@ -26304,62 +26319,7 @@ "**" ], "edition": "2018", - "version": "1.8.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE" - }, - "half 2.4.1": { - "name": "half", - "version": "2.4.1", - "package_url": "https://github.com/starkat99/half-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/half/2.4.1/download", - "sha256": "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" - } - }, - "targets": [ - { - "Library": { - "crate_name": "half", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "half", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - } - ], - "selects": { - "cfg(target_arch = \"spirv\")": [ - { - "id": "crunchy 0.2.2", - "target": "crunchy" - } - ] - } - }, - "edition": "2021", - "version": "2.4.1" + "version": "1.8.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -26534,14 +26494,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hashlink 0.8.4": { + "hashlink 0.8.3": { "name": "hashlink", - "version": "0.8.4", + "version": "0.8.3", "package_url": "https://github.com/kyren/hashlink", "repository": { "Http": { - "url": "https://static.crates.io/crates/hashlink/0.8.4/download", - "sha256": "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" + "url": "https://static.crates.io/crates/hashlink/0.8.3/download", + "sha256": "312f66718a2d7789ffef4f4b7b213138ed9f1eb3aa1d0d82fc99f88fb3ffd26f" } }, "targets": [ @@ -26573,7 +26533,7 @@ "selects": {} }, "edition": "2018", - "version": "0.8.4" + "version": "0.8.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -26582,14 +26542,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hdrhistogram 7.5.4": { + "hdrhistogram 7.5.2": { "name": "hdrhistogram", - "version": "7.5.4", + "version": "7.5.2", "package_url": "https://github.com/HdrHistogram/HdrHistogram_rust.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/hdrhistogram/7.5.4/download", - "sha256": "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d" + "url": "https://static.crates.io/crates/hdrhistogram/7.5.2/download", + "sha256": "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8" } }, "targets": [ @@ -26625,7 +26585,7 @@ "selects": {} }, "edition": "2018", - "version": "7.5.4" + "version": "7.5.2" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -26634,14 +26594,14 @@ ], "license_file": "LICENSE-APACHE" }, - "headers 0.3.9": { + "headers 0.3.8": { "name": "headers", - "version": "0.3.9", + "version": "0.3.8", "package_url": "https://github.com/hyperium/headers", "repository": { "Http": { - "url": "https://static.crates.io/crates/headers/0.3.9/download", - "sha256": "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" + "url": "https://static.crates.io/crates/headers/0.3.8/download", + "sha256": "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" } }, "targets": [ @@ -26666,9 +26626,13 @@ "deps": { "common": [ { - "id": "base64 0.21.7", + "id": "base64 0.13.1", "target": "base64" }, + { + "id": "bitflags 1.3.2", + "target": "bitflags" + }, { "id": "bytes 1.9.0", "target": "bytes" @@ -26682,7 +26646,7 @@ "target": "http" }, { - "id": "httpdate 1.0.3", + "id": "httpdate 1.0.2", "target": "httpdate" }, { @@ -26697,7 +26661,7 @@ "selects": {} }, "edition": "2015", - "version": "0.3.9" + "version": "0.3.8" }, "license": "MIT", "license_ids": [ @@ -26737,7 +26701,7 @@ "deps": { "common": [ { - "id": "base64 0.21.7", + "id": "base64 0.21.6", "target": "base64" }, { @@ -26753,7 +26717,7 @@ "target": "http" }, { - "id": "httpdate 1.0.3", + "id": "httpdate 1.0.2", "target": "httpdate" }, { @@ -26902,7 +26866,7 @@ "deps": { "common": [ { - "id": "unicode-segmentation 1.12.0", + "id": "unicode-segmentation 1.10.1", "target": "unicode_segmentation" } ], @@ -27034,7 +26998,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -27223,7 +27187,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.6", + "id": "arrayvec 0.7.4", "target": "arrayvec" } ], @@ -27382,14 +27346,14 @@ ], "license_file": null }, - "hickory-proto 0.24.2": { + "hickory-proto 0.24.1": { "name": "hickory-proto", - "version": "0.24.2", + "version": "0.24.1", "package_url": "https://github.com/hickory-dns/hickory-dns", "repository": { "Http": { - "url": "https://static.crates.io/crates/hickory-proto/0.24.2/download", - "sha256": "447afdcdb8afb9d0a852af6dc65d9b285ce720ed7a59e42a8bf2e931c67bc1b5" + "url": "https://static.crates.io/crates/hickory-proto/0.24.1/download", + "sha256": "07698b8420e2f0d6447a436ba999ec85d8fbf2a398bbd737b82cac4a2e96e512" } }, "targets": [ @@ -27444,7 +27408,7 @@ "target": "cfg_if" }, { - "id": "data-encoding 2.7.0", + "id": "data-encoding 2.4.0", "target": "data_encoding" }, { @@ -27468,7 +27432,7 @@ "target": "http" }, { - "id": "idna 1.0.3", + "id": "idna 0.4.0", "target": "idna" }, { @@ -27476,7 +27440,7 @@ "target": "ipnet" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -27492,19 +27456,19 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tinyvec 1.8.1", + "id": "tinyvec 1.6.0", "target": "tinyvec" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -27516,11 +27480,11 @@ "target": "tracing" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], @@ -27530,17 +27494,17 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" }, { - "id": "enum-as-inner 0.6.1", + "id": "enum-as-inner 0.6.0", "target": "enum_as_inner" } ], "selects": {} }, - "version": "0.24.2" + "version": "0.24.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -27549,14 +27513,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hickory-resolver 0.24.2": { + "hickory-resolver 0.24.1": { "name": "hickory-resolver", - "version": "0.24.2", + "version": "0.24.1", "package_url": "https://github.com/hickory-dns/hickory-dns", "repository": { "Http": { - "url": "https://static.crates.io/crates/hickory-resolver/0.24.2/download", - "sha256": "0a2e2aba9c389ce5267d31cf1e4dace82390ae276b0b364ea55630b1fa1b44b4" + "url": "https://static.crates.io/crates/hickory-resolver/0.24.1/download", + "sha256": "28757f23aa75c98f254cf0405e6d8c25b831b32921b050a66692427679b1f243" } }, "targets": [ @@ -27609,7 +27573,7 @@ "target": "futures_util" }, { - "id": "hickory-proto 0.24.2", + "id": "hickory-proto 0.24.1", "target": "hickory_proto" }, { @@ -27617,11 +27581,11 @@ "target": "lru_cache" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { @@ -27641,11 +27605,11 @@ "target": "smallvec" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -27657,7 +27621,7 @@ "target": "tracing" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], @@ -27683,7 +27647,7 @@ } }, "edition": "2021", - "version": "0.24.2" + "version": "0.24.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -27794,14 +27758,14 @@ ], "license_file": "LICENSE-APACHE" }, - "home 0.5.11": { + "home 0.5.9": { "name": "home", - "version": "0.5.11", + "version": "0.5.9", "package_url": "https://github.com/rust-lang/cargo", "repository": { "Http": { - "url": "https://static.crates.io/crates/home/0.5.11/download", - "sha256": "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" + "url": "https://static.crates.io/crates/home/0.5.9/download", + "sha256": "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" } }, "targets": [ @@ -27828,14 +27792,14 @@ "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.52.0", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "0.5.11" + "version": "0.5.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -27889,7 +27853,7 @@ "selects": { "cfg(any(unix, target_os = \"redox\"))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -27958,7 +27922,7 @@ "target": "build_script_build" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -27985,11 +27949,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -28047,7 +28011,7 @@ "target": "fnv" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" } ], @@ -28110,7 +28074,7 @@ "target": "fnv" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" } ], @@ -28166,7 +28130,7 @@ "target": "http" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], @@ -28280,7 +28244,7 @@ "target": "http_body" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], @@ -28295,14 +28259,14 @@ ], "license_file": "LICENSE" }, - "httparse 1.9.5": { + "httparse 1.8.0": { "name": "httparse", - "version": "1.9.5", + "version": "1.8.0", "package_url": "https://github.com/seanmonstar/httparse", "repository": { "Http": { - "url": "https://static.crates.io/crates/httparse/1.9.5/download", - "sha256": "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" + "url": "https://static.crates.io/crates/httparse/1.8.0/download", + "sha256": "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" } }, "targets": [ @@ -28346,14 +28310,14 @@ "deps": { "common": [ { - "id": "httparse 1.9.5", + "id": "httparse 1.8.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.9.5" + "version": "1.8.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -28363,21 +28327,21 @@ "**" ] }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "httpdate 1.0.3": { + "httpdate 1.0.2": { "name": "httpdate", - "version": "1.0.3", + "version": "1.0.2", "package_url": "https://github.com/pyfisch/httpdate", "repository": { "Http": { - "url": "https://static.crates.io/crates/httpdate/1.0.3/download", - "sha256": "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + "url": "https://static.crates.io/crates/httpdate/1.0.2/download", + "sha256": "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" } }, "targets": [ @@ -28399,10 +28363,10 @@ "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "1.0.3" + "edition": "2018", + "version": "1.0.2" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -28441,7 +28405,7 @@ "deps": { "common": [ { - "id": "libm 0.2.11", + "id": "libm 0.2.7", "target": "libm" } ], @@ -28548,14 +28512,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hyper 0.14.32": { + "hyper 0.14.27": { "name": "hyper", - "version": "0.14.32", + "version": "0.14.27", "package_url": "https://github.com/hyperium/hyper", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper/0.14.32/download", - "sha256": "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" + "url": "https://static.crates.io/crates/hyper/0.14.27/download", + "sha256": "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" } }, "targets": [ @@ -28581,6 +28545,7 @@ "common": [ "client", "default", + "full", "h2", "http1", "http2", @@ -28623,27 +28588,27 @@ "target": "http_body" }, { - "id": "httparse 1.9.5", + "id": "httparse 1.8.0", "target": "httparse" }, { - "id": "httpdate 1.0.3", + "id": "httpdate 1.0.2", "target": "httpdate" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.4.9", "target": "socket2" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -28662,7 +28627,7 @@ "selects": {} }, "edition": "2018", - "version": "0.14.32" + "version": "0.14.27" }, "license": "MIT", "license_ids": [ @@ -28670,14 +28635,14 @@ ], "license_file": "LICENSE" }, - "hyper 1.5.2": { + "hyper 1.5.1": { "name": "hyper", - "version": "1.5.2", + "version": "1.5.1", "package_url": "https://github.com/hyperium/hyper", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper/1.5.2/download", - "sha256": "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0" + "url": "https://static.crates.io/crates/hyper/1.5.1/download", + "sha256": "97818827ef4f364230e16705d4706e2897df2bb60617d6ca15d598025a3c481f" } }, "targets": [ @@ -28725,7 +28690,7 @@ "target": "futures_util" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { @@ -28737,19 +28702,19 @@ "target": "http_body" }, { - "id": "httparse 1.9.5", + "id": "httparse 1.8.0", "target": "httparse" }, { - "id": "httpdate 1.0.3", + "id": "httpdate 1.0.2", "target": "httpdate" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -28757,7 +28722,7 @@ "target": "smallvec" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -28768,7 +28733,7 @@ "selects": {} }, "edition": "2021", - "version": "1.5.2" + "version": "1.5.1" }, "license": "MIT", "license_ids": [ @@ -28824,7 +28789,7 @@ "target": "http" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -28832,11 +28797,11 @@ "target": "hyper_util" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -28909,11 +28874,11 @@ "target": "http" }, { - "id": "hyper 0.14.32", + "id": "hyper 0.14.27", "target": "hyper" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -28925,7 +28890,7 @@ "target": "rustls_native_certs" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -28946,14 +28911,14 @@ ], "license_file": "LICENSE" }, - "hyper-rustls 0.27.5": { + "hyper-rustls 0.27.3": { "name": "hyper-rustls", - "version": "0.27.5", + "version": "0.27.3", "package_url": "https://github.com/rustls/hyper-rustls", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper-rustls/0.27.5/download", - "sha256": "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2" + "url": "https://static.crates.io/crates/hyper-rustls/0.27.3/download", + "sha256": "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" } }, "targets": [ @@ -29128,7 +29093,7 @@ "target": "http" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -29136,28 +29101,28 @@ "target": "hyper_util" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -29168,200 +29133,200 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "aarch64-apple-ios": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "aarch64-apple-ios-sim": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "aarch64-linux-android": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "aarch64-pc-windows-msvc": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "aarch64-unknown-fuchsia": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "aarch64-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "arm-unknown-linux-gnueabi": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "armv7-linux-androideabi": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "i686-apple-darwin": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "i686-linux-android": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "i686-pc-windows-msvc": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "i686-unknown-freebsd": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "i686-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "powerpc-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "riscv32imc-unknown-none-elf": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "riscv64gc-unknown-none-elf": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "s390x-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "thumbv7em-none-eabi": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "thumbv8m.main-none-eabi": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-apple-darwin": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-apple-ios": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-linux-android": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-pc-windows-msvc": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-unknown-freebsd": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-unknown-fuchsia": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-unknown-linux-gnu": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "x86_64-unknown-none": [ { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ] } }, "edition": "2021", - "version": "0.27.5" + "version": "0.27.3" }, "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ @@ -29411,7 +29376,7 @@ "target": "http" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -29419,11 +29384,11 @@ "target": "hyper_util" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -29443,14 +29408,14 @@ ], "license_file": "LICENSE-APACHE.md" }, - "hyper-timeout 0.5.2": { + "hyper-timeout 0.5.1": { "name": "hyper-timeout", - "version": "0.5.2", + "version": "0.5.1", "package_url": "https://github.com/hjr3/hyper-timeout", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper-timeout/0.5.2/download", - "sha256": "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" + "url": "https://static.crates.io/crates/hyper-timeout/0.5.1/download", + "sha256": "3203a961e5c83b6f5498933e78b6b263e208c197b63e9c6c53cc82ffd3f63793" } }, "targets": [ @@ -29475,7 +29440,7 @@ "deps": { "common": [ { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -29483,11 +29448,11 @@ "target": "hyper_util" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -29498,7 +29463,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.2" + "version": "0.5.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -29575,19 +29540,19 @@ "target": "http_body" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -29610,14 +29575,14 @@ ], "license_file": "LICENSE" }, - "iana-time-zone 0.1.61": { + "iana-time-zone 0.1.59": { "name": "iana-time-zone", - "version": "0.1.61", + "version": "0.1.59", "package_url": "https://github.com/strawlab/iana-time-zone", "repository": { "Http": { - "url": "https://static.crates.io/crates/iana-time-zone/0.1.61/download", - "sha256": "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" + "url": "https://static.crates.io/crates/iana-time-zone/0.1.59/download", + "sha256": "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539" } }, "targets": [ @@ -29648,22 +29613,22 @@ "deps": { "common": [], "selects": { - "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [ + "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ + { + "id": "core-foundation-sys 0.8.7", + "target": "core_foundation_sys" + } + ], + "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], - "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ - { - "id": "core-foundation-sys 0.8.7", - "target": "core_foundation_sys" - } - ], "cfg(target_os = \"android\")": [ { "id": "android_system_properties 0.1.5", @@ -29685,7 +29650,7 @@ } }, "edition": "2018", - "version": "0.1.61" + "version": "0.1.59" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -29757,7 +29722,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -29819,7 +29784,7 @@ "target": "async_channel" }, { - "id": "async-lock 3.4.0", + "id": "async-lock 3.3.0", "target": "async_lock" }, { @@ -29835,11 +29800,11 @@ "target": "cached" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "der 0.7.9", + "id": "der 0.7.7", "target": "der" }, { @@ -29895,7 +29860,7 @@ "target": "p256" }, { - "id": "pem 3.0.4", + "id": "pem 3.0.3", "target": "pem" }, { @@ -29907,15 +29872,15 @@ "target": "rand" }, { - "id": "rangemap 1.5.1", + "id": "rangemap 1.4.0", "target": "rangemap" }, { - "id": "reqwest 0.12.12", + "id": "reqwest 0.12.9", "target": "reqwest" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { @@ -29939,7 +29904,7 @@ "target": "sha2" }, { - "id": "simple_asn1 0.6.3", + "id": "simple_asn1 0.6.2", "target": "simple_asn1" }, { @@ -29947,11 +29912,11 @@ "target": "stop_token" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 2.0.3", "target": "thiserror" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" }, { @@ -29959,14 +29924,14 @@ "target": "tower_service" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" } ], "selects": { "cfg(not(target_family = \"wasm\"))": [ { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ] @@ -29976,7 +29941,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" }, { @@ -30032,7 +29997,7 @@ "target": "ahash" }, { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -30060,7 +30025,7 @@ "target": "chacha20poly1305" }, { - "id": "clap 4.5.26", + "id": "clap 4.5.20", "target": "clap" }, { @@ -30068,7 +30033,7 @@ "target": "cloudflare" }, { - "id": "fqdn 0.4.4", + "id": "fqdn 0.4.1", "target": "fqdn" }, { @@ -30080,11 +30045,11 @@ "target": "futures_util" }, { - "id": "hickory-proto 0.24.2", + "id": "hickory-proto 0.24.1", "target": "hickory_proto" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { @@ -30104,7 +30069,7 @@ "target": "humantime" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -30116,7 +30081,7 @@ "target": "instant_acme" }, { - "id": "moka 0.12.10", + "id": "moka 0.12.8", "target": "moka" }, { @@ -30128,11 +30093,11 @@ "target": "prometheus" }, { - "id": "prost 0.13.4", + "id": "prost 0.13.3", "target": "prost" }, { - "id": "prost-types 0.13.4", + "id": "prost-types 0.13.3", "target": "prost_types" }, { @@ -30140,15 +30105,15 @@ "target": "rand" }, { - "id": "rcgen 0.13.2", + "id": "rcgen 0.13.1", "target": "rcgen" }, { - "id": "reqwest 0.12.12", + "id": "reqwest 0.12.9", "target": "reqwest" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { @@ -30172,7 +30137,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -30184,15 +30149,15 @@ "target": "strum" }, { - "id": "systemstat 0.2.4", + "id": "systemstat 0.2.3", "target": "systemstat" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 2.0.3", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -30200,7 +30165,7 @@ "target": "tokio_io_timeout" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -30208,7 +30173,7 @@ "target": "tokio_util" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.1", "target": "tower" }, { @@ -30220,11 +30185,11 @@ "target": "tracing" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" }, { - "id": "uuid 1.12.0", + "id": "uuid 1.11.0", "target": "uuid" }, { @@ -30232,7 +30197,7 @@ "target": "vrl" }, { - "id": "webpki-root-certs 0.26.7", + "id": "webpki-root-certs 0.26.6", "target": "webpki_root_certs" }, { @@ -30250,11 +30215,11 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" }, { - "id": "clap_derive 4.5.24", + "id": "clap_derive 4.5.18", "target": "clap_derive" }, { @@ -30306,7 +30271,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -30410,7 +30375,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -30418,7 +30383,7 @@ "target": "hex" }, { - "id": "ic-cdk 0.17.1", + "id": "ic-cdk 0.17.0", "target": "ic_cdk" }, { @@ -30430,7 +30395,7 @@ "target": "ic_representation_independent_hash" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -30450,7 +30415,7 @@ "target": "sha2" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 2.0.3", "target": "thiserror" } ], @@ -30497,7 +30462,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -30513,7 +30478,7 @@ "target": "nom" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -30560,7 +30525,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -30628,7 +30593,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -30664,14 +30629,14 @@ ], "license_file": "LICENSE" }, - "ic-cdk 0.17.1": { + "ic-cdk 0.17.0": { "name": "ic-cdk", - "version": "0.17.1", + "version": "0.17.0", "package_url": "https://github.com/dfinity/cdk-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-cdk/0.17.1/download", - "sha256": "122efbcb0af5280d408a75a57b7dc6e9d92893bf6ed9cc98fe4dcff51f18b67c" + "url": "https://static.crates.io/crates/ic-cdk/0.17.0/download", + "sha256": "b2abdf9341da9f9f6b451a40609cb69645a05a8e9eb7784c16209f16f2c0f76f" } }, "targets": [ @@ -30696,7 +30661,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -30718,13 +30683,13 @@ "proc_macro_deps": { "common": [ { - "id": "ic-cdk-macros 0.17.1", + "id": "ic-cdk-macros 0.17.0", "target": "ic_cdk_macros" } ], "selects": {} }, - "version": "0.17.1" + "version": "0.17.0" }, "license": "Apache-2.0", "license_ids": [ @@ -30764,15 +30729,15 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -30831,15 +30796,15 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -30898,15 +30863,15 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -30914,11 +30879,11 @@ "target": "serde" }, { - "id": "serde_tokenstream 0.2.2", + "id": "serde_tokenstream 0.2.1", "target": "serde_tokenstream" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -30933,14 +30898,14 @@ ], "license_file": "LICENSE" }, - "ic-cdk-macros 0.17.1": { + "ic-cdk-macros 0.17.0": { "name": "ic-cdk-macros", - "version": "0.17.1", + "version": "0.17.0", "package_url": "https://github.com/dfinity/cdk-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-cdk-macros/0.17.1/download", - "sha256": "c792bf0d1621c893ccf2bcdeac4ee70121103a03030a1827031a6b3c60488944" + "url": "https://static.crates.io/crates/ic-cdk-macros/0.17.0/download", + "sha256": "b8df41980e95dead28735ab0f748c75477b0c5eab37a09a5641c78ec406a1db0" } }, "targets": [ @@ -30965,15 +30930,15 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -30981,18 +30946,18 @@ "target": "serde" }, { - "id": "serde_tokenstream 0.2.2", + "id": "serde_tokenstream 0.2.1", "target": "serde_tokenstream" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.17.1" + "version": "0.17.0" }, "license": "Apache-2.0", "license_ids": [ @@ -31036,7 +31001,7 @@ "target": "futures" }, { - "id": "ic-cdk 0.17.1", + "id": "ic-cdk 0.17.0", "target": "ic_cdk" }, { @@ -31052,7 +31017,7 @@ "target": "serde_bytes" }, { - "id": "slotmap 1.0.7", + "id": "slotmap 1.0.6", "target": "slotmap" } ], @@ -31103,7 +31068,7 @@ "target": "cached" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -31115,7 +31080,7 @@ "target": "ic_certification" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -31131,7 +31096,7 @@ "target": "nom" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { @@ -31139,7 +31104,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -31378,7 +31343,7 @@ "target": "base64" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -31402,7 +31367,7 @@ "target": "serde_cbor" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -31457,7 +31422,7 @@ "target": "bytes" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -31489,11 +31454,11 @@ "target": "ic_response_verification" }, { - "id": "ic-utils 0.39.2", + "id": "ic-utils 0.39.0", "target": "ic_utils" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -31633,11 +31598,11 @@ "target": "base64" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "flate2 1.0.35", + "id": "flate2 1.0.31", "target": "flate2" }, { @@ -31673,7 +31638,7 @@ "target": "leb128" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -31685,7 +31650,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -31751,14 +31716,14 @@ ], "license_file": "LICENSE" }, - "ic-stable-structures 0.6.7": { + "ic-stable-structures 0.6.5": { "name": "ic-stable-structures", - "version": "0.6.7", + "version": "0.6.5", "package_url": "https://github.com/dfinity/stable-structures", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-stable-structures/0.6.7/download", - "sha256": "b492c5a16455ae78623eaa12ead96dda6c69a83c535b1b00789f19b381c8a24c" + "url": "https://static.crates.io/crates/ic-stable-structures/0.6.5/download", + "sha256": "03f3044466a69802de74e710dc0300b706a05696a0531c942ca856751a13b0db" } }, "targets": [ @@ -31790,7 +31755,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.7" + "version": "0.6.5" }, "license": "Apache-2.0", "license_ids": [ @@ -31830,11 +31795,11 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "ciborium 0.2.2", + "id": "ciborium 0.2.1", "target": "ciborium" }, { @@ -31889,7 +31854,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -31917,7 +31882,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -31973,7 +31938,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -32005,7 +31970,7 @@ "target": "sha2" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 2.0.3", "target": "thiserror" } ], @@ -32029,14 +31994,14 @@ ], "license_file": null }, - "ic-utils 0.39.2": { + "ic-utils 0.39.0": { "name": "ic-utils", - "version": "0.39.2", + "version": "0.39.0", "package_url": "https://github.com/dfinity/agent-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-utils/0.39.2/download", - "sha256": "e1fb9c35ef4976a71d37f3ebf73ee43bb52b360be60d91d3a77f74fbc875dda4" + "url": "https://static.crates.io/crates/ic-utils/0.39.0/download", + "sha256": "bb1da4a68c45146018b8496c157ad94126b9c202ab4400c6c0a9030c1ef0f0ba" } }, "targets": [ @@ -32067,7 +32032,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -32079,11 +32044,11 @@ "target": "ic_agent" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -32103,15 +32068,15 @@ "target": "strum" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -32121,7 +32086,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" }, { @@ -32131,7 +32096,7 @@ ], "selects": {} }, - "version": "0.39.2" + "version": "0.39.0" }, "license": "Apache-2.0", "license_ids": [ @@ -32189,7 +32154,7 @@ "alias": "bls12_381" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -32265,7 +32230,7 @@ "alias": "bls12_381" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -32288,14 +32253,14 @@ ], "license_file": null }, - "ic-wasm 0.8.6": { + "ic-wasm 0.8.4": { "name": "ic-wasm", - "version": "0.8.6", + "version": "0.8.4", "package_url": "https://github.com/dfinity/ic-wasm", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-wasm/0.8.6/download", - "sha256": "19fabaeecfe37f24b433c62489242fc54503d98d4cc8d0f9ef7544dfdfc0ddcb" + "url": "https://static.crates.io/crates/ic-wasm/0.8.4/download", + "sha256": "45bc33855672981ae4a2f4e77c1a77d1bdc0756fb1b36ad0dbe47df77a955e2d" } }, "targets": [ @@ -32341,15 +32306,15 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { - "id": "clap 4.5.26", + "id": "clap 4.5.20", "target": "clap" }, { @@ -32357,7 +32322,7 @@ "target": "libflate" }, { - "id": "rustc-demangle 0.1.24", + "id": "rustc-demangle 0.1.23", "target": "rustc_demangle" }, { @@ -32365,22 +32330,22 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "walrus 0.21.3", + "id": "walrus 0.21.1", "target": "walrus" } ], "selects": {} }, "edition": "2021", - "version": "0.8.6" + "version": "0.8.4" }, "license": "Apache-2.0", "license_ids": [ @@ -32420,7 +32385,7 @@ "deps": { "common": [ { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -32687,15 +32652,15 @@ "deps": { "common": [ { - "id": "arbitrary 1.4.1", + "id": "arbitrary 1.3.2", "target": "arbitrary" }, { - "id": "crc32fast 1.4.2", + "id": "crc32fast 1.3.2", "target": "crc32fast" }, { - "id": "data-encoding 2.7.0", + "id": "data-encoding 2.4.0", "target": "data_encoding" }, { @@ -32707,7 +32672,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -32757,11 +32722,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -32769,7 +32734,7 @@ "target": "serde" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -32779,7 +32744,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -32828,11 +32793,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -32887,11 +32852,11 @@ "deps": { "common": [ { - "id": "yoke 0.7.5", + "id": "yoke 0.7.4", "target": "yoke" }, { - "id": "zerofrom 0.1.5", + "id": "zerofrom 0.1.4", "target": "zerofrom" }, { @@ -32905,7 +32870,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], @@ -32957,7 +32922,7 @@ "deps": { "common": [ { - "id": "litemap 0.7.4", + "id": "litemap 0.7.3", "target": "litemap" }, { @@ -32979,7 +32944,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], @@ -33057,7 +33022,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], @@ -33190,7 +33155,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], @@ -33311,7 +33276,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], @@ -33417,11 +33382,11 @@ "target": "writeable" }, { - "id": "yoke 0.7.5", + "id": "yoke 0.7.4", "target": "yoke" }, { - "id": "zerofrom 0.1.5", + "id": "zerofrom 0.1.4", "target": "zerofrom" }, { @@ -33435,7 +33400,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" }, { @@ -33485,15 +33450,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -33629,11 +33594,11 @@ "target": "matches" }, { - "id": "unicode-bidi 0.3.18", + "id": "unicode-bidi 0.3.13", "target": "unicode_bidi" }, { - "id": "unicode-normalization 0.1.24", + "id": "unicode-normalization 0.1.22", "target": "unicode_normalization" } ], @@ -33649,6 +33614,118 @@ ], "license_file": "LICENSE-APACHE" }, + "idna 0.3.0": { + "name": "idna", + "version": "0.3.0", + "package_url": "https://github.com/servo/rust-url/", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/idna/0.3.0/download", + "sha256": "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" + } + }, + "targets": [ + { + "Library": { + "crate_name": "idna", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "idna", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "unicode-bidi 0.3.13", + "target": "unicode_bidi" + }, + { + "id": "unicode-normalization 0.1.22", + "target": "unicode_normalization" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.3.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "idna 0.4.0": { + "name": "idna", + "version": "0.4.0", + "package_url": "https://github.com/servo/rust-url/", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/idna/0.4.0/download", + "sha256": "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" + } + }, + "targets": [ + { + "Library": { + "crate_name": "idna", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "idna", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc", + "default", + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "unicode-bidi 0.3.13", + "target": "unicode_bidi" + }, + { + "id": "unicode-normalization 0.1.22", + "target": "unicode_normalization" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.4.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "idna 1.0.3": { "name": "idna", "version": "1.0.3", @@ -33810,7 +33887,7 @@ "deps": { "common": [ { - "id": "parity-scale-codec 3.6.12", + "id": "parity-scale-codec 3.6.3", "target": "parity_scale_codec" } ], @@ -33826,14 +33903,14 @@ ], "license_file": null }, - "impl-more 0.1.9": { + "impl-more 0.1.6": { "name": "impl-more", - "version": "0.1.9", + "version": "0.1.6", "package_url": "https://github.com/robjtede/impl-more", "repository": { "Http": { - "url": "https://static.crates.io/crates/impl-more/0.1.9/download", - "sha256": "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" + "url": "https://static.crates.io/crates/impl-more/0.1.6/download", + "sha256": "206ca75c9c03ba3d4ace2460e57b189f39f43de612c2f85836e65c929701bb2d" } }, "targets": [ @@ -33856,7 +33933,7 @@ "**" ], "edition": "2018", - "version": "0.1.9" + "version": "0.1.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -33961,14 +34038,14 @@ ], "license_file": null }, - "impl-trait-for-tuples 0.2.3": { + "impl-trait-for-tuples 0.2.2": { "name": "impl-trait-for-tuples", - "version": "0.2.3", + "version": "0.2.2", "package_url": "https://github.com/bkchr/impl-trait-for-tuples", "repository": { "Http": { - "url": "https://static.crates.io/crates/impl-trait-for-tuples/0.2.3/download", - "sha256": "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" + "url": "https://static.crates.io/crates/impl-trait-for-tuples/0.2.2/download", + "sha256": "11d7a9f6330b71fea57921c9b61c47ee6e84f72d394754eff6163ae67e7395eb" } }, "targets": [ @@ -33993,22 +34070,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 1.0.109", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.2.3" + "version": "0.2.2" }, "license": "Apache-2.0/MIT", "license_ids": [ @@ -34135,7 +34212,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -34149,14 +34226,14 @@ ], "license_file": "LICENSE-APACHE" }, - "indexmap 2.7.0": { + "indexmap 2.2.6": { "name": "indexmap", - "version": "2.7.0", + "version": "2.2.6", "package_url": "https://github.com/indexmap-rs/indexmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/indexmap/2.7.0/download", - "sha256": "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f" + "url": "https://static.crates.io/crates/indexmap/2.2.6/download", + "sha256": "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" } }, "targets": [ @@ -34193,7 +34270,7 @@ "target": "equivalent" }, { - "id": "hashbrown 0.15.2", + "id": "hashbrown 0.14.5", "target": "hashbrown" }, { @@ -34204,7 +34281,7 @@ "selects": {} }, "edition": "2021", - "version": "2.7.0" + "version": "2.2.6" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -34213,14 +34290,14 @@ ], "license_file": "LICENSE-APACHE" }, - "indicatif 0.17.9": { + "indicatif 0.17.5": { "name": "indicatif", - "version": "0.17.9", + "version": "0.17.5", "package_url": "https://github.com/console-rs/indicatif", "repository": { "Http": { - "url": "https://static.crates.io/crates/indicatif/0.17.9/download", - "sha256": "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281" + "url": "https://static.crates.io/crates/indicatif/0.17.5/download", + "sha256": "8ff8cc23a7393a397ed1d7f56e6365cba772aba9f9912ab968b03043c395d057" } }, "targets": [ @@ -34252,7 +34329,7 @@ "deps": { "common": [ { - "id": "console 0.15.10", + "id": "console 0.15.7", "target": "console" }, { @@ -34260,25 +34337,25 @@ "target": "number_prefix" }, { - "id": "portable-atomic 1.10.0", + "id": "portable-atomic 1.4.1", "target": "portable_atomic" }, { - "id": "unicode-width 0.2.0", + "id": "unicode-width 0.1.10", "target": "unicode_width" } ], "selects": { "cfg(target_arch = \"wasm32\")": [ { - "id": "web-time 1.1.0", - "target": "web_time" + "id": "instant 0.1.12", + "target": "instant" } ] } }, - "edition": "2021", - "version": "0.17.9" + "edition": "2018", + "version": "0.17.5" }, "license": "MIT", "license_ids": [ @@ -34325,14 +34402,14 @@ ], "license_file": "LICENSE-APACHE" }, - "inferno 0.11.21": { + "inferno 0.11.19": { "name": "inferno", - "version": "0.11.21", + "version": "0.11.19", "package_url": "https://github.com/jonhoo/inferno.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/inferno/0.11.21/download", - "sha256": "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88" + "url": "https://static.crates.io/crates/inferno/0.11.19/download", + "sha256": "321f0f839cd44a4686e9504b0a62b4d69a50b62072144c71c68f5873c167b8d9" } }, "targets": [ @@ -34368,19 +34445,19 @@ "target": "ahash" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "is-terminal 0.4.13", + "id": "is-terminal 0.4.9", "target": "is_terminal" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -34388,7 +34465,7 @@ "target": "num_format" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -34396,7 +34473,7 @@ "target": "quick_xml" }, { - "id": "rgb 0.8.50", + "id": "rgb 0.8.37", "target": "rgb" }, { @@ -34407,7 +34484,7 @@ "selects": {} }, "edition": "2021", - "version": "0.11.21" + "version": "0.11.19" }, "license": "CDDL-1.0", "license_ids": [ @@ -34415,14 +34492,14 @@ ], "license_file": "LICENSE" }, - "inferno 0.12.1": { + "inferno 0.12.0": { "name": "inferno", - "version": "0.12.1", + "version": "0.12.0", "package_url": "https://github.com/jonhoo/inferno.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/inferno/0.12.1/download", - "sha256": "692eda1cc790750b9f5a5e3921ef9c117fd5498b97cfacbc910693e5b29002dc" + "url": "https://static.crates.io/crates/inferno/0.12.0/download", + "sha256": "75a5d75fee4d36809e6b021e4b96b686e763d365ffdb03af2bd00786353f84fe" } }, "targets": [ @@ -34466,15 +34543,15 @@ "target": "ahash" }, { - "id": "clap 4.5.26", + "id": "clap 4.5.20", "target": "clap" }, { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" }, { @@ -34482,19 +34559,19 @@ "target": "dashmap" }, { - "id": "env_logger 0.11.6", + "id": "env_logger 0.11.2", "target": "env_logger" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -34502,15 +34579,15 @@ "target": "num_format" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "quick-xml 0.37.2", + "id": "quick-xml 0.37.1", "target": "quick_xml" }, { - "id": "rgb 0.8.50", + "id": "rgb 0.8.37", "target": "rgb" }, { @@ -34521,7 +34598,7 @@ "selects": {} }, "edition": "2021", - "version": "0.12.1" + "version": "0.12.0" }, "license": "CDDL-1.0", "license_ids": [ @@ -34577,14 +34654,14 @@ ], "license_file": "LICENSE-APACHE" }, - "insta 1.42.0": { + "insta 1.31.0": { "name": "insta", - "version": "1.42.0", + "version": "1.31.0", "package_url": "https://github.com/mitsuhiko/insta", "repository": { "Http": { - "url": "https://static.crates.io/crates/insta/1.42.0/download", - "sha256": "6513e4067e16e69ed1db5ab56048ed65db32d10ba5fc1217f5393f8f17d8b5a5" + "url": "https://static.crates.io/crates/insta/1.31.0/download", + "sha256": "a0770b0a3d4c70567f0d58331f3088b0e4c4f56c9b8d764efe654b4a5d46de3a" } }, "targets": [ @@ -34617,26 +34694,30 @@ "deps": { "common": [ { - "id": "console 0.15.10", + "id": "console 0.15.7", "target": "console" }, + { + "id": "lazy_static 1.4.0", + "target": "lazy_static" + }, { "id": "linked-hash-map 0.5.6", "target": "linked_hash_map" }, { - "id": "once_cell 1.20.2", - "target": "once_cell" + "id": "similar 2.2.1", + "target": "similar" }, { - "id": "similar 2.6.0", - "target": "similar" + "id": "yaml-rust 0.4.5", + "target": "yaml_rust" } ], "selects": {} }, - "edition": "2021", - "version": "1.42.0" + "edition": "2018", + "version": "1.31.0" }, "license": "Apache-2.0", "license_ids": [ @@ -34644,14 +34725,14 @@ ], "license_file": "LICENSE" }, - "instant 0.1.13": { + "instant 0.1.12": { "name": "instant", - "version": "0.1.13", + "version": "0.1.12", "package_url": "https://github.com/sebcrozet/instant", "repository": { "Http": { - "url": "https://static.crates.io/crates/instant/0.1.13/download", - "sha256": "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" + "url": "https://static.crates.io/crates/instant/0.1.12/download", + "sha256": "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" } }, "targets": [ @@ -34683,7 +34764,7 @@ "selects": {} }, "edition": "2018", - "version": "0.1.13" + "version": "0.1.12" }, "license": "BSD-3-Clause", "license_ids": [ @@ -34751,11 +34832,11 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { @@ -34763,11 +34844,11 @@ "target": "hyper_util" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { @@ -34775,11 +34856,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -34789,7 +34870,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -34919,11 +35000,11 @@ "selects": { "cfg(windows)": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { - "id": "widestring 1.1.0", + "id": "widestring 1.0.2", "target": "widestring" }, { @@ -35062,14 +35143,14 @@ ], "license_file": "LICENSE-APACHE.md" }, - "is-terminal 0.4.13": { + "is-terminal 0.4.9": { "name": "is-terminal", - "version": "0.4.13", + "version": "0.4.9", "package_url": "https://github.com/sunfishcode/is-terminal", "repository": { "Http": { - "url": "https://static.crates.io/crates/is-terminal/0.4.13/download", - "sha256": "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" + "url": "https://static.crates.io/crates/is-terminal/0.4.9/download", + "sha256": "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" } }, "targets": [ @@ -35094,28 +35175,28 @@ "deps": { "common": [], "selects": { - "cfg(any(unix, target_os = \"wasi\"))": [ + "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))": [ { - "id": "libc 0.2.169", - "target": "libc" + "id": "rustix 0.38.32", + "target": "rustix" } ], "cfg(target_os = \"hermit\")": [ { - "id": "hermit-abi 0.4.0", + "id": "hermit-abi 0.3.9", "target": "hermit_abi" } ], "cfg(windows)": [ { - "id": "windows-sys 0.52.0", + "id": "windows-sys 0.48.0", "target": "windows_sys" } ] } }, "edition": "2018", - "version": "0.4.13" + "version": "0.4.9" }, "license": "MIT", "license_ids": [ @@ -35204,7 +35285,7 @@ "target": "serde" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -35259,7 +35340,7 @@ "deps": { "common": [ { - "id": "either 1.13.0", + "id": "either 1.8.1", "target": "either" } ], @@ -35315,7 +35396,7 @@ "deps": { "common": [ { - "id": "either 1.13.0", + "id": "either 1.8.1", "target": "either" } ], @@ -35331,14 +35412,14 @@ ], "license_file": "LICENSE-APACHE" }, - "itertools 0.12.1": { + "itertools 0.12.0": { "name": "itertools", - "version": "0.12.1", + "version": "0.12.0", "package_url": "https://github.com/rust-itertools/itertools", "repository": { "Http": { - "url": "https://static.crates.io/crates/itertools/0.12.1/download", - "sha256": "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" + "url": "https://static.crates.io/crates/itertools/0.12.0/download", + "sha256": "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" } }, "targets": [ @@ -35371,125 +35452,14 @@ "deps": { "common": [ { - "id": "either 1.13.0", + "id": "either 1.8.1", "target": "either" } ], "selects": {} }, "edition": "2018", - "version": "0.12.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "itertools 0.13.0": { - "name": "itertools", - "version": "0.13.0", - "package_url": "https://github.com/rust-itertools/itertools", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/itertools/0.13.0/download", - "sha256": "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" - } - }, - "targets": [ - { - "Library": { - "crate_name": "itertools", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "itertools", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "use_alloc" - ], - "selects": { - "aarch64-apple-darwin": [ - "default", - "use_std" - ], - "aarch64-pc-windows-msvc": [ - "default", - "use_std" - ], - "aarch64-unknown-linux-gnu": [ - "default", - "use_std" - ], - "aarch64-unknown-nixos-gnu": [ - "default", - "use_std" - ], - "arm-unknown-linux-gnueabi": [ - "default", - "use_std" - ], - "i686-pc-windows-msvc": [ - "default", - "use_std" - ], - "i686-unknown-linux-gnu": [ - "default", - "use_std" - ], - "powerpc-unknown-linux-gnu": [ - "default", - "use_std" - ], - "s390x-unknown-linux-gnu": [ - "default", - "use_std" - ], - "x86_64-apple-darwin": [ - "default", - "use_std" - ], - "x86_64-pc-windows-msvc": [ - "default", - "use_std" - ], - "x86_64-unknown-freebsd": [ - "default", - "use_std" - ], - "x86_64-unknown-linux-gnu": [ - "default", - "use_std" - ], - "x86_64-unknown-nixos-gnu": [ - "default", - "use_std" - ] - } - }, - "deps": { - "common": [ - { - "id": "either 1.13.0", - "target": "either" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.13.0" + "version": "0.12.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -35498,14 +35468,14 @@ ], "license_file": "LICENSE-APACHE" }, - "itoa 1.0.14": { + "itoa 1.0.9": { "name": "itoa", - "version": "1.0.14", + "version": "1.0.9", "package_url": "https://github.com/dtolnay/itoa", "repository": { "Http": { - "url": "https://static.crates.io/crates/itoa/1.0.14/download", - "sha256": "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" + "url": "https://static.crates.io/crates/itoa/1.0.9/download", + "sha256": "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" } }, "targets": [ @@ -35528,7 +35498,7 @@ "**" ], "edition": "2018", - "version": "1.0.14" + "version": "1.0.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -35597,11 +35567,11 @@ "target": "jni_sys" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -35620,7 +35590,7 @@ "deps": { "common": [ { - "id": "walkdir 2.5.0", + "id": "walkdir 2.3.3", "target": "walkdir" } ], @@ -35673,14 +35643,14 @@ ], "license_file": "LICENSE-APACHE" }, - "jobserver 0.1.32": { + "jobserver 0.1.26": { "name": "jobserver", - "version": "0.1.32", - "package_url": "https://github.com/rust-lang/jobserver-rs", + "version": "0.1.26", + "package_url": "https://github.com/alexcrichton/jobserver-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/jobserver/0.1.32/download", - "sha256": "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" + "url": "https://static.crates.io/crates/jobserver/0.1.26/download", + "sha256": "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" } }, "targets": [ @@ -35707,30 +35677,30 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] } }, - "edition": "2021", - "version": "0.1.32" + "edition": "2018", + "version": "0.1.26" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "js-sys 0.3.77": { + "js-sys 0.3.64": { "name": "js-sys", - "version": "0.3.77", + "version": "0.3.64", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/js-sys/0.3.77/download", - "sha256": "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" + "url": "https://static.crates.io/crates/js-sys/0.3.64/download", + "sha256": "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" } }, "targets": [ @@ -35752,30 +35722,19 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "once_cell 1.20.2", - "target": "once_cell" - }, - { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], "selects": {} }, - "edition": "2021", - "version": "0.3.77" + "edition": "2018", + "version": "0.3.64" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -35826,7 +35785,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -35878,7 +35837,7 @@ "deps": { "common": [ { - "id": "pest 2.7.15", + "id": "pest 2.7.1", "target": "pest" }, { @@ -35892,7 +35851,7 @@ "proc_macro_deps": { "common": [ { - "id": "pest_derive 2.7.15", + "id": "pest_derive 2.7.1", "target": "pest_derive" } ], @@ -35938,27 +35897,27 @@ "deps": { "common": [ { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "pest 2.7.15", + "id": "pest 2.7.1", "target": "pest" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -35968,7 +35927,7 @@ "proc_macro_deps": { "common": [ { - "id": "pest_derive 2.7.15", + "id": "pest_derive 2.7.1", "target": "pest_derive" } ], @@ -36031,7 +35990,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -36095,7 +36054,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -36175,7 +36134,7 @@ "target": "elliptic_curve" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -36260,7 +36219,7 @@ "target": "base64" }, { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { @@ -36276,7 +36235,7 @@ "target": "serde_value" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -36300,14 +36259,14 @@ ], "license_file": "LICENSE" }, - "keccak 0.1.5": { + "keccak 0.1.4": { "name": "keccak", - "version": "0.1.5", + "version": "0.1.4", "package_url": "https://github.com/RustCrypto/sponges/tree/master/keccak", "repository": { "Http": { - "url": "https://static.crates.io/crates/keccak/0.1.5/download", - "sha256": "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" + "url": "https://static.crates.io/crates/keccak/0.1.4/download", + "sha256": "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940" } }, "targets": [ @@ -36334,14 +36293,14 @@ "selects": { "cfg(target_arch = \"aarch64\")": [ { - "id": "cpufeatures 0.2.16", + "id": "cpufeatures 0.2.9", "target": "cpufeatures" } ] } }, "edition": "2018", - "version": "0.1.5" + "version": "0.1.4" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -36486,11 +36445,11 @@ "target": "bytes" }, { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { - "id": "either 1.13.0", + "id": "either 1.8.1", "target": "either" }, { @@ -36498,7 +36457,7 @@ "target": "futures" }, { - "id": "home 0.5.11", + "id": "home 0.5.9", "target": "home" }, { @@ -36514,15 +36473,15 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "hyper-timeout 0.5.2", + "id": "hyper-timeout 0.5.1", "target": "hyper_timeout" }, { @@ -36542,11 +36501,11 @@ "target": "kube_core" }, { - "id": "pem 3.0.4", + "id": "pem 3.0.3", "target": "pem" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { @@ -36562,7 +36521,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -36570,11 +36529,11 @@ "target": "serde_yaml" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -36637,7 +36596,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { @@ -36657,11 +36616,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -36727,11 +36686,11 @@ "target": "diff" }, { - "id": "ena 0.14.3", + "id": "ena 0.14.2", "target": "ena" }, { - "id": "is-terminal 0.4.13", + "id": "is-terminal 0.4.9", "target": "is_terminal" }, { @@ -36743,11 +36702,11 @@ "target": "lalrpop_util" }, { - "id": "petgraph 0.6.5", + "id": "petgraph 0.6.3", "target": "petgraph" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -36767,7 +36726,7 @@ "target": "tiny_keccak" }, { - "id": "unicode-xid 0.2.6", + "id": "unicode-xid 0.2.4", "target": "unicode_xid" } ], @@ -36783,14 +36742,14 @@ ], "license_file": null }, - "lalrpop 0.20.2": { + "lalrpop 0.20.0": { "name": "lalrpop", - "version": "0.20.2", + "version": "0.20.0", "package_url": "https://github.com/lalrpop/lalrpop", "repository": { "Http": { - "url": "https://static.crates.io/crates/lalrpop/0.20.2/download", - "sha256": "55cb077ad656299f160924eb2912aa147d7339ea7d69e1b5517326fdcec3c1ca" + "url": "https://static.crates.io/crates/lalrpop/0.20.0/download", + "sha256": "da4081d44f4611b66c6dd725e6de3169f9f63905421e8626fcb86b6a898998b8" } }, "targets": [ @@ -36832,19 +36791,27 @@ "target": "bit_set" }, { - "id": "ena 0.14.3", + "id": "diff 0.1.13", + "target": "diff" + }, + { + "id": "ena 0.14.2", "target": "ena" }, { - "id": "itertools 0.11.0", + "id": "is-terminal 0.4.9", + "target": "is_terminal" + }, + { + "id": "itertools 0.10.5", "target": "itertools" }, { - "id": "lalrpop-util 0.20.2", + "id": "lalrpop-util 0.20.0", "target": "lalrpop_util" }, { - "id": "petgraph 0.6.5", + "id": "petgraph 0.6.3", "target": "petgraph" }, { @@ -36852,11 +36819,11 @@ "target": "pico_args" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { - "id": "regex-syntax 0.8.5", + "id": "regex-syntax 0.7.4", "target": "regex_syntax" }, { @@ -36872,25 +36839,21 @@ "target": "tiny_keccak" }, { - "id": "unicode-xid 0.2.6", + "id": "unicode-xid 0.2.4", "target": "unicode_xid" - }, - { - "id": "walkdir 2.5.0", - "target": "walkdir" } ], "selects": {} }, "edition": "2021", - "version": "0.20.2" + "version": "0.20.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": null }, "lalrpop-util 0.19.12": { "name": "lalrpop-util", @@ -36990,85 +36953,85 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "aarch64-pc-windows-msvc": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "aarch64-unknown-linux-gnu": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "arm-unknown-linux-gnueabi": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "i686-pc-windows-msvc": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "i686-unknown-linux-gnu": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "powerpc-unknown-linux-gnu": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "s390x-unknown-linux-gnu": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "x86_64-apple-darwin": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "x86_64-pc-windows-msvc": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "x86_64-unknown-freebsd": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "x86_64-unknown-linux-gnu": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ] @@ -37084,14 +37047,14 @@ ], "license_file": null }, - "lalrpop-util 0.20.2": { + "lalrpop-util 0.20.0": { "name": "lalrpop-util", - "version": "0.20.2", + "version": "0.20.0", "package_url": "https://github.com/lalrpop/lalrpop", "repository": { "Http": { - "url": "https://static.crates.io/crates/lalrpop-util/0.20.2/download", - "sha256": "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553" + "url": "https://static.crates.io/crates/lalrpop-util/0.20.0/download", + "sha256": "3f35c735096c0293d313e8f2a641627472b83d01b937177fe76e5e2708d31e0d" } }, "targets": [ @@ -37116,65 +37079,64 @@ "crate_features": { "common": [ "default", - "std", - "unicode" + "std" ], "selects": { "aarch64-apple-darwin": [ "lexer", - "regex-automata" + "regex" ], "aarch64-pc-windows-msvc": [ "lexer", - "regex-automata" + "regex" ], "aarch64-unknown-linux-gnu": [ "lexer", - "regex-automata" + "regex" ], "aarch64-unknown-nixos-gnu": [ "lexer", - "regex-automata" + "regex" ], "arm-unknown-linux-gnueabi": [ "lexer", - "regex-automata" + "regex" ], "i686-pc-windows-msvc": [ "lexer", - "regex-automata" + "regex" ], "i686-unknown-linux-gnu": [ "lexer", - "regex-automata" + "regex" ], "powerpc-unknown-linux-gnu": [ "lexer", - "regex-automata" + "regex" ], "s390x-unknown-linux-gnu": [ "lexer", - "regex-automata" + "regex" ], "x86_64-apple-darwin": [ "lexer", - "regex-automata" + "regex" ], "x86_64-pc-windows-msvc": [ "lexer", - "regex-automata" + "regex" ], "x86_64-unknown-freebsd": [ "lexer", - "regex-automata" + "regex" ], "x86_64-unknown-linux-gnu": [ "lexer", - "regex-automata" + "regex" ], "x86_64-unknown-nixos-gnu": [ "lexer", - "regex-automata" + "regex" ] } }, @@ -37183,99 +37145,99 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "aarch64-pc-windows-msvc": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "aarch64-unknown-linux-gnu": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "arm-unknown-linux-gnueabi": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "i686-pc-windows-msvc": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "i686-unknown-linux-gnu": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "powerpc-unknown-linux-gnu": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "s390x-unknown-linux-gnu": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "x86_64-apple-darwin": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "x86_64-pc-windows-msvc": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "x86_64-unknown-freebsd": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "x86_64-unknown-linux-gnu": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "regex-automata 0.4.9", - "target": "regex_automata" + "id": "regex 1.11.0", + "target": "regex" } ] } }, "edition": "2021", - "version": "0.20.2" + "version": "0.20.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": null }, "language-tags 0.3.2": { "name": "language-tags", @@ -37316,14 +37278,14 @@ ], "license_file": "LICENSE" }, - "lazy_static 1.5.0": { + "lazy_static 1.4.0": { "name": "lazy_static", - "version": "1.5.0", + "version": "1.4.0", "package_url": "https://github.com/rust-lang-nursery/lazy-static.rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/lazy_static/1.5.0/download", - "sha256": "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" + "url": "https://static.crates.io/crates/lazy_static/1.4.0/download", + "sha256": "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" } }, "targets": [ @@ -37355,16 +37317,16 @@ "deps": { "common": [ { - "id": "spin 0.9.8", + "id": "spin 0.5.2", "target": "spin" } ], "selects": {} }, "edition": "2015", - "version": "1.5.0" + "version": "1.4.0" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -37834,14 +37796,14 @@ ], "license_file": "LICENSE-APACHE" }, - "libc 0.2.169": { + "libc 0.2.158": { "name": "libc", - "version": "0.2.169", + "version": "0.2.158", "package_url": "https://github.com/rust-lang/libc", "repository": { "Http": { - "url": "https://static.crates.io/crates/libc/0.2.169/download", - "sha256": "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" + "url": "https://static.crates.io/crates/libc/0.2.158/download", + "sha256": "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" } }, "targets": [ @@ -37886,14 +37848,14 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.2.169" + "edition": "2015", + "version": "0.2.158" }, "build_script_attrs": { "compile_data_glob": [ @@ -37957,11 +37919,11 @@ "target": "core2" }, { - "id": "crc32fast 1.4.2", + "id": "crc32fast 1.3.2", "target": "crc32fast" }, { - "id": "dary_heap 0.3.7", + "id": "dary_heap 0.3.6", "target": "dary_heap" }, { @@ -38041,14 +38003,14 @@ ], "license_file": "LICENSE" }, - "libfuzzer-sys 0.4.8": { + "libfuzzer-sys 0.4.7": { "name": "libfuzzer-sys", - "version": "0.4.8", + "version": "0.4.7", "package_url": "https://github.com/rust-fuzz/libfuzzer", "repository": { "Http": { - "url": "https://static.crates.io/crates/libfuzzer-sys/0.4.8/download", - "sha256": "9b9569d2f74e257076d8c6bfa73fb505b46b851e51ddaecc825944aa3bed17fa" + "url": "https://static.crates.io/crates/libfuzzer-sys/0.4.7/download", + "sha256": "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7" } }, "targets": [ @@ -38085,18 +38047,22 @@ "deps": { "common": [ { - "id": "arbitrary 1.4.1", + "id": "arbitrary 1.3.2", "target": "arbitrary" }, { - "id": "libfuzzer-sys 0.4.8", + "id": "libfuzzer-sys 0.4.7", "target": "build_script_build" + }, + { + "id": "once_cell 1.19.0", + "target": "once_cell" } ], "selects": {} }, "edition": "2018", - "version": "0.4.8" + "version": "0.4.7" }, "build_script_attrs": { "compile_data_glob": [ @@ -38108,7 +38074,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -38123,14 +38089,14 @@ ], "license_file": "LICENSE-APACHE" }, - "libloading 0.8.6": { + "libloading 0.7.4": { "name": "libloading", - "version": "0.8.6", + "version": "0.7.4", "package_url": "https://github.com/nagisa/rust_libloading/", "repository": { "Http": { - "url": "https://static.crates.io/crates/libloading/0.8.6/download", - "sha256": "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" + "url": "https://static.crates.io/crates/libloading/0.7.4/download", + "sha256": "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" } }, "targets": [ @@ -38163,14 +38129,14 @@ ], "cfg(windows)": [ { - "id": "windows-targets 0.52.6", - "target": "windows_targets" + "id": "winapi 0.3.9", + "target": "winapi" } ] } }, "edition": "2015", - "version": "0.8.6" + "version": "0.7.4" }, "license": "ISC", "license_ids": [ @@ -38178,14 +38144,14 @@ ], "license_file": "LICENSE" }, - "libm 0.2.11": { + "libm 0.2.7": { "name": "libm", - "version": "0.2.11", + "version": "0.2.7", "package_url": "https://github.com/rust-lang/libm", "repository": { "Http": { - "url": "https://static.crates.io/crates/libm/0.2.11/download", - "sha256": "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa" + "url": "https://static.crates.io/crates/libm/0.2.7/download", + "sha256": "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" } }, "targets": [ @@ -38228,14 +38194,14 @@ "deps": { "common": [ { - "id": "libm 0.2.11", + "id": "libm 0.2.7", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.2.11" + "edition": "2018", + "version": "0.2.7" }, "build_script_attrs": { "compile_data_glob": [ @@ -38245,12 +38211,12 @@ "**" ] }, - "license": "MIT AND (MIT OR Apache-2.0)", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE.txt" + "license_file": "LICENSE-APACHE" }, "libnss 0.5.0": { "name": "libnss", @@ -38284,11 +38250,11 @@ "deps": { "common": [ { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -38312,61 +38278,6 @@ ], "license_file": null }, - "libredox 0.1.3": { - "name": "libredox", - "version": "0.1.3", - "package_url": "https://gitlab.redox-os.org/redox-os/libredox.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/libredox/0.1.3/download", - "sha256": "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "libredox", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "libredox", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bitflags 2.8.0", - "target": "bitflags" - }, - { - "id": "libc 0.2.169", - "target": "libc" - }, - { - "id": "redox_syscall 0.5.8", - "target": "syscall" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.3" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, "librocksdb-sys 0.16.0+8.10.0": { "name": "librocksdb-sys", "version": "0.16.0+8.10.0", @@ -38418,7 +38329,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -38441,15 +38352,15 @@ "deps": { "common": [ { - "id": "bindgen 0.69.5", + "id": "bindgen 0.69.4", "target": "bindgen" }, { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "glob 0.3.2", + "id": "glob 0.3.1", "target": "glob" } ], @@ -38546,11 +38457,11 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" }, { @@ -38618,7 +38529,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -38626,14 +38537,14 @@ "target": "build_script_build" }, { - "id": "libz-sys 1.1.21", + "id": "libz-sys 1.1.9", "target": "libz_sys" } ], "selects": { "cfg(unix)": [ { - "id": "openssl-sys 0.9.104", + "id": "openssl-sys 0.9.102", "target": "openssl_sys" } ] @@ -38652,11 +38563,11 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" } ], @@ -38672,14 +38583,14 @@ "link_deps": { "common": [ { - "id": "libz-sys 1.1.21", + "id": "libz-sys 1.1.9", "target": "libz_sys" } ], "selects": { "cfg(unix)": [ { - "id": "openssl-sys 0.9.104", + "id": "openssl-sys 0.9.102", "target": "openssl_sys" } ] @@ -38694,14 +38605,14 @@ ], "license_file": null }, - "libusb1-sys 0.7.0": { + "libusb1-sys 0.6.4": { "name": "libusb1-sys", - "version": "0.7.0", + "version": "0.6.4", "package_url": "https://github.com/a1ien/rusb.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/libusb1-sys/0.7.0/download", - "sha256": "da050ade7ac4ff1ba5379af847a10a10a8e284181e060105bf8d86960ce9ce0f" + "url": "https://static.crates.io/crates/libusb1-sys/0.6.4/download", + "sha256": "f9d0e2afce4245f2c9a418511e5af8718bcaf2fa408aefb259504d1a9cb25f27" } }, "targets": [ @@ -38738,18 +38649,18 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "libusb1-sys 0.7.0", + "id": "libusb1-sys 0.6.4", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.7.0" + "version": "0.6.4" }, "build_script_attrs": { "compile_data_glob": [ @@ -38761,16 +38672,16 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" } ], "selects": { - "cfg(target_os = \"windows\")": [ + "cfg(target_env = \"msvc\")": [ { "id": "vcpkg 0.2.15", "target": "vcpkg" @@ -38786,14 +38697,14 @@ ], "license_file": "LICENSE" }, - "libz-sys 1.1.21": { + "libz-sys 1.1.9": { "name": "libz-sys", - "version": "1.1.21", + "version": "1.1.9", "package_url": "https://github.com/rust-lang/libz-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/libz-sys/1.1.21/download", - "sha256": "df9b68e50e6e0b26f672573834882eb57759f6db9b3be2ea3c35c91188bb4eaa" + "url": "https://static.crates.io/crates/libz-sys/1.1.9/download", + "sha256": "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db" } }, "targets": [ @@ -38836,18 +38747,18 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "libz-sys 1.1.21", + "id": "libz-sys 1.1.9", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.1.21" + "version": "1.1.9" }, "build_script_attrs": { "compile_data_glob": [ @@ -38859,19 +38770,22 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" - }, - { - "id": "vcpkg 0.2.15", - "target": "vcpkg" } ], - "selects": {} + "selects": { + "cfg(target_env = \"msvc\")": [ + { + "id": "vcpkg 0.2.15", + "target": "vcpkg" + } + ] + } }, "links": "z" }, @@ -38921,14 +38835,14 @@ ], "license_file": "LICENSE-APACHE" }, - "linux-raw-sys 0.4.15": { + "linux-raw-sys 0.4.13": { "name": "linux-raw-sys", - "version": "0.4.15", + "version": "0.4.13", "package_url": "https://github.com/sunfishcode/linux-raw-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/linux-raw-sys/0.4.15/download", - "sha256": "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" + "url": "https://static.crates.io/crates/linux-raw-sys/0.4.13/download", + "sha256": "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" } }, "targets": [ @@ -38965,57 +38879,48 @@ "aarch64-unknown-linux-gnu": [ "elf", "errno", - "std", "system" ], "aarch64-unknown-nixos-gnu": [ "elf", "errno", - "std", "system" ], "arm-unknown-linux-gnueabi": [ "elf", "errno", - "std", "system" ], "armv7-unknown-linux-gnueabi": [ "elf", "errno", - "std", "system" ], "i686-unknown-linux-gnu": [ "elf", "errno", - "std", "system" ], "powerpc-unknown-linux-gnu": [ - "std", "system" ], "s390x-unknown-linux-gnu": [ - "std", "system" ], "x86_64-unknown-linux-gnu": [ "elf", "errno", - "std", "system" ], "x86_64-unknown-nixos-gnu": [ "elf", "errno", - "std", "system" ] } }, "edition": "2021", - "version": "0.4.15" + "version": "0.4.13" }, "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ @@ -39024,14 +38929,14 @@ ], "license_file": "LICENSE-APACHE" }, - "litemap 0.7.4": { + "litemap 0.7.3": { "name": "litemap", - "version": "0.7.4", + "version": "0.7.3", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/litemap/0.7.4/download", - "sha256": "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" + "url": "https://static.crates.io/crates/litemap/0.7.3/download", + "sha256": "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" } }, "targets": [ @@ -39060,7 +38965,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.4" + "version": "0.7.3" }, "license": "Unicode-3.0", "license_ids": [ @@ -39100,7 +39005,7 @@ "deps": { "common": [ { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -39168,7 +39073,7 @@ "target": "byteorder" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -39246,7 +39151,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -39276,11 +39181,11 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" } ], @@ -39300,14 +39205,14 @@ ], "license_file": null }, - "local-channel 0.1.5": { + "local-channel 0.1.3": { "name": "local-channel", - "version": "0.1.5", - "package_url": "https://github.com/actix/actix-net", + "version": "0.1.3", + "package_url": "https://github.com/actix/actix-net.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/local-channel/0.1.5/download", - "sha256": "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" + "url": "https://static.crates.io/crates/local-channel/0.1.3/download", + "sha256": "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c" } }, "targets": [ @@ -39340,14 +39245,18 @@ "target": "futures_sink" }, { - "id": "local-waker 0.1.4", + "id": "futures-util 0.3.31", + "target": "futures_util" + }, + { + "id": "local-waker 0.1.3", "target": "local_waker" } ], "selects": {} }, - "edition": "2021", - "version": "0.1.5" + "edition": "2018", + "version": "0.1.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -39356,14 +39265,14 @@ ], "license_file": "LICENSE-APACHE" }, - "local-ip-address 0.5.7": { + "local-ip-address 0.5.6": { "name": "local-ip-address", - "version": "0.5.7", + "version": "0.5.6", "package_url": "https://github.com/EstebanBorai/local-ip-address", "repository": { "Http": { - "url": "https://static.crates.io/crates/local-ip-address/0.5.7/download", - "sha256": "612ed4ea9ce5acfb5d26339302528a5e1e59dfed95e9e11af3c083236ff1d15d" + "url": "https://static.crates.io/crates/local-ip-address/0.5.6/download", + "sha256": "66357e687a569abca487dc399a9c9ac19beb3f13991ed49f00c144e02cbd42ab" } }, "targets": [ @@ -39388,20 +39297,20 @@ "deps": { "common": [ { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], "selects": { "cfg(target_os = \"linux\")": [ { - "id": "neli 0.6.5", + "id": "neli 0.6.4", "target": "neli" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -39414,7 +39323,7 @@ } }, "edition": "2021", - "version": "0.5.7" + "version": "0.5.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -39423,14 +39332,14 @@ ], "license_file": "LICENSE-APACHE" }, - "local-waker 0.1.4": { + "local-waker 0.1.3": { "name": "local-waker", - "version": "0.1.4", - "package_url": "https://github.com/actix/actix-net", + "version": "0.1.3", + "package_url": "https://github.com/actix/actix-net.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/local-waker/0.1.4/download", - "sha256": "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" + "url": "https://static.crates.io/crates/local-waker/0.1.3/download", + "sha256": "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1" } }, "targets": [ @@ -39452,8 +39361,8 @@ "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "0.1.4" + "edition": "2018", + "version": "0.1.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -39462,14 +39371,14 @@ ], "license_file": "LICENSE-APACHE" }, - "lock_api 0.4.12": { + "lock_api 0.4.10": { "name": "lock_api", - "version": "0.4.12", + "version": "0.4.10", "package_url": "https://github.com/Amanieu/parking_lot", "repository": { "Http": { - "url": "https://static.crates.io/crates/lock_api/0.4.12/download", - "sha256": "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" + "url": "https://static.crates.io/crates/lock_api/0.4.10/download", + "sha256": "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" } }, "targets": [ @@ -39513,7 +39422,7 @@ "deps": { "common": [ { - "id": "lock_api 0.4.12", + "id": "lock_api 0.4.10", "target": "build_script_build" }, { @@ -39523,8 +39432,8 @@ ], "selects": {} }, - "edition": "2021", - "version": "0.4.12" + "edition": "2018", + "version": "0.4.10" }, "build_script_attrs": { "compile_data_glob": [ @@ -39536,7 +39445,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -39550,14 +39459,14 @@ ], "license_file": "LICENSE-APACHE" }, - "log 0.4.25": { + "log 0.4.20": { "name": "log", - "version": "0.4.25", + "version": "0.4.20", "package_url": "https://github.com/rust-lang/log", "repository": { "Http": { - "url": "https://static.crates.io/crates/log/0.4.25/download", - "sha256": "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f" + "url": "https://static.crates.io/crates/log/0.4.20/download", + "sha256": "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" } }, "targets": [ @@ -39585,8 +39494,8 @@ ], "selects": {} }, - "edition": "2021", - "version": "0.4.25" + "edition": "2015", + "version": "0.4.20" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -39749,11 +39658,11 @@ "target": "fnv" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -39761,7 +39670,7 @@ "target": "regex_syntax" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -39817,11 +39726,11 @@ "target": "fnv" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -39893,69 +39802,6 @@ ], "license_file": null }, - "loom 0.7.2": { - "name": "loom", - "version": "0.7.2", - "package_url": "https://github.com/tokio-rs/loom", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/loom/0.7.2/download", - "sha256": "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" - } - }, - "targets": [ - { - "Library": { - "crate_name": "loom", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "loom", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "generator 0.8.4", - "target": "generator" - }, - { - "id": "scoped-tls 1.0.1", - "target": "scoped_tls" - }, - { - "id": "tracing 0.1.41", - "target": "tracing" - }, - { - "id": "tracing-subscriber 0.3.19", - "target": "tracing_subscriber" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.7.2" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, "lru 0.7.8": { "name": "lru", "version": "0.7.8", @@ -40086,7 +39932,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -40109,11 +39955,11 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" } ], @@ -40253,7 +40099,7 @@ "selects": { "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] @@ -40353,7 +40199,7 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -40537,14 +40383,14 @@ ], "license_file": "LICENSE" }, - "matchit 0.7.3": { + "matchit 0.7.0": { "name": "matchit", - "version": "0.7.3", + "version": "0.7.0", "package_url": "https://github.com/ibraheemdev/matchit", "repository": { "Http": { - "url": "https://static.crates.io/crates/matchit/0.7.3/download", - "sha256": "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" + "url": "https://static.crates.io/crates/matchit/0.7.0/download", + "sha256": "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" } }, "targets": [ @@ -40573,11 +40419,10 @@ "selects": {} }, "edition": "2021", - "version": "0.7.3" + "version": "0.7.0" }, - "license": "MIT AND BSD-3-Clause", + "license": "MIT", "license_ids": [ - "BSD-3-Clause", "MIT" ], "license_file": "LICENSE" @@ -40624,7 +40469,7 @@ "target": "ipnetwork" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -40694,7 +40539,7 @@ "target": "digest" }, { - "id": "opaque-debug 0.3.1", + "id": "opaque-debug 0.3.0", "target": "opaque_debug" } ], @@ -40789,7 +40634,7 @@ "deps": { "common": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -40805,14 +40650,14 @@ ], "license_file": "LICENSE-APACHE" }, - "memmap2 0.9.5": { + "memmap2 0.5.10": { "name": "memmap2", - "version": "0.9.5", + "version": "0.5.10", "package_url": "https://github.com/RazrFalcon/memmap2-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/memmap2/0.9.5/download", - "sha256": "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" + "url": "https://static.crates.io/crates/memmap2/0.5.10/download", + "sha256": "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" } }, "targets": [ @@ -40839,14 +40684,14 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] } }, "edition": "2018", - "version": "0.9.5" + "version": "0.5.10" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -40924,7 +40769,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -40937,14 +40782,14 @@ ], "license_file": "LICENSE" }, - "memoffset 0.9.1": { + "memoffset 0.9.0": { "name": "memoffset", - "version": "0.9.1", + "version": "0.9.0", "package_url": "https://github.com/Gilnaa/memoffset", "repository": { "Http": { - "url": "https://static.crates.io/crates/memoffset/0.9.1/download", - "sha256": "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" + "url": "https://static.crates.io/crates/memoffset/0.9.0/download", + "sha256": "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" } }, "targets": [ @@ -40987,14 +40832,14 @@ "deps": { "common": [ { - "id": "memoffset 0.9.1", + "id": "memoffset 0.9.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2015", - "version": "0.9.1" + "version": "0.9.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -41006,7 +40851,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -41093,7 +40938,7 @@ "target": "byteorder" }, { - "id": "keccak 0.1.5", + "id": "keccak 0.1.4", "target": "keccak" }, { @@ -41176,7 +41021,7 @@ "target": "axum_otel_metrics" }, { - "id": "clap 4.5.26", + "id": "clap 4.5.20", "target": "clap" }, { @@ -41204,7 +41049,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -41220,11 +41065,11 @@ "target": "itertools" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -41232,11 +41077,11 @@ "target": "opentelemetry" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "pretty_assertions 1.4.1", + "id": "pretty_assertions 1.4.0", "target": "pretty_assertions" }, { @@ -41244,7 +41089,7 @@ "target": "prometheus" }, { - "id": "prometheus-parse 0.2.5", + "id": "prometheus-parse 0.2.4", "target": "prometheus_parse" }, { @@ -41252,7 +41097,7 @@ "target": "rand" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -41264,7 +41109,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -41280,7 +41125,7 @@ "target": "simple_logger" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -41296,7 +41141,7 @@ "target": "tower_http" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" } ], @@ -41348,14 +41193,14 @@ ], "license_file": "LICENSE-APACHE" }, - "mime_guess 2.0.5": { + "mime_guess 2.0.4": { "name": "mime_guess", - "version": "2.0.5", + "version": "2.0.4", "package_url": "https://github.com/abonander/mime_guess", "repository": { "Http": { - "url": "https://static.crates.io/crates/mime_guess/2.0.5/download", - "sha256": "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" + "url": "https://static.crates.io/crates/mime_guess/2.0.4/download", + "sha256": "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" } }, "targets": [ @@ -41403,18 +41248,18 @@ "target": "mime" }, { - "id": "mime_guess 2.0.5", + "id": "mime_guess 2.0.4", "target": "build_script_build" }, { - "id": "unicase 2.8.1", + "id": "unicase 2.6.0", "target": "unicase" } ], "selects": {} }, "edition": "2015", - "version": "2.0.5" + "version": "2.0.4" }, "build_script_attrs": { "compile_data_glob": [ @@ -41426,7 +41271,7 @@ "deps": { "common": [ { - "id": "unicase 2.8.1", + "id": "unicase 2.6.0", "target": "unicase" } ], @@ -41561,11 +41406,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -41629,14 +41474,14 @@ ], "license_file": "LICENSE-APACHE" }, - "miniz_oxide 0.8.3": { + "miniz_oxide 0.7.1": { "name": "miniz_oxide", - "version": "0.8.3", + "version": "0.7.1", "package_url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", "repository": { "Http": { - "url": "https://static.crates.io/crates/miniz_oxide/0.8.3/download", - "sha256": "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924" + "url": "https://static.crates.io/crates/miniz_oxide/0.7.1/download", + "sha256": "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" } }, "targets": [ @@ -41667,14 +41512,14 @@ "deps": { "common": [ { - "id": "adler2 2.0.0", - "target": "adler2" + "id": "adler 1.0.2", + "target": "adler" } ], "selects": {} }, - "edition": "2021", - "version": "0.8.3" + "edition": "2018", + "version": "0.7.1" }, "license": "MIT OR Zlib OR Apache-2.0", "license_ids": [ @@ -41684,14 +41529,14 @@ ], "license_file": "LICENSE" }, - "mio 0.8.11": { + "mio 0.8.10": { "name": "mio", - "version": "0.8.11", + "version": "0.8.10", "package_url": "https://github.com/tokio-rs/mio", "repository": { "Http": { - "url": "https://static.crates.io/crates/mio/0.8.11/download", - "sha256": "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" + "url": "https://static.crates.io/crates/mio/0.8.10/download", + "sha256": "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" } }, "targets": [ @@ -41718,22 +41563,94 @@ "default", "log", "net", - "os-ext", "os-poll" ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + "os-ext" + ], + "aarch64-apple-ios": [ + "os-ext" + ], + "aarch64-apple-ios-sim": [ + "os-ext" + ], + "aarch64-linux-android": [ + "os-ext" + ], + "aarch64-unknown-fuchsia": [ + "os-ext" + ], + "aarch64-unknown-linux-gnu": [ + "os-ext" + ], + "aarch64-unknown-nixos-gnu": [ + "os-ext" + ], + "aarch64-unknown-nto-qnx710": [ + "os-ext" + ], + "arm-unknown-linux-gnueabi": [ + "os-ext" + ], + "armv7-linux-androideabi": [ + "os-ext" + ], + "armv7-unknown-linux-gnueabi": [ + "os-ext" + ], + "i686-apple-darwin": [ + "os-ext" + ], + "i686-linux-android": [ + "os-ext" + ], + "i686-unknown-freebsd": [ + "os-ext" + ], + "i686-unknown-linux-gnu": [ + "os-ext" + ], + "powerpc-unknown-linux-gnu": [ + "os-ext" + ], + "s390x-unknown-linux-gnu": [ + "os-ext" + ], + "x86_64-apple-darwin": [ + "os-ext" + ], + "x86_64-apple-ios": [ + "os-ext" + ], + "x86_64-linux-android": [ + "os-ext" + ], + "x86_64-unknown-freebsd": [ + "os-ext" + ], + "x86_64-unknown-fuchsia": [ + "os-ext" + ], + "x86_64-unknown-linux-gnu": [ + "os-ext" + ], + "x86_64-unknown-nixos-gnu": [ + "os-ext" + ] + } }, "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" } ], "selects": { "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -41743,7 +41660,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -41756,7 +41673,7 @@ } }, "edition": "2018", - "version": "0.8.11" + "version": "0.8.10" }, "license": "MIT", "license_ids": [ @@ -41764,14 +41681,14 @@ ], "license_file": "LICENSE" }, - "mio 1.0.3": { + "mio 1.0.2": { "name": "mio", - "version": "1.0.3", + "version": "1.0.2", "package_url": "https://github.com/tokio-rs/mio", "repository": { "Http": { - "url": "https://static.crates.io/crates/mio/1.0.3/download", - "sha256": "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" + "url": "https://static.crates.io/crates/mio/1.0.2/download", + "sha256": "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" } }, "targets": [ @@ -41795,8 +41712,6 @@ ], "crate_features": { "common": [ - "default", - "log", "net", "os-ext", "os-poll" @@ -41804,22 +41719,18 @@ "selects": {} }, "deps": { - "common": [ - { - "id": "log 0.4.25", - "target": "log" - } - ], + "common": [], "selects": { "cfg(target_os = \"hermit\")": [ { - "id": "libc 0.2.169", - "target": "libc" + "id": "hermit-abi 0.3.9", + "target": "hermit_abi", + "alias": "libc" } ], "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -41829,7 +41740,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -41842,7 +41753,7 @@ } }, "edition": "2021", - "version": "1.0.3" + "version": "1.0.2" }, "license": "MIT", "license_ids": [ @@ -41895,14 +41806,14 @@ ], "license_file": null }, - "mockall 0.13.1": { + "mockall 0.13.0": { "name": "mockall", - "version": "0.13.1", + "version": "0.13.0", "package_url": "https://github.com/asomers/mockall", "repository": { "Http": { - "url": "https://static.crates.io/crates/mockall/0.13.1/download", - "sha256": "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2" + "url": "https://static.crates.io/crates/mockall/0.13.0/download", + "sha256": "d4c28b3fb6d753d28c20e826cd46ee611fda1cf3cde03a443a974043247c065a" } }, "targets": [ @@ -41939,11 +41850,11 @@ "target": "fragile" }, { - "id": "predicates 3.1.3", + "id": "predicates 3.1.2", "target": "predicates" }, { - "id": "predicates-tree 1.0.12", + "id": "predicates-tree 1.0.9", "target": "predicates_tree" } ], @@ -41953,13 +41864,13 @@ "proc_macro_deps": { "common": [ { - "id": "mockall_derive 0.13.1", + "id": "mockall_derive 0.13.0", "target": "mockall_derive" } ], "selects": {} }, - "version": "0.13.1" + "version": "0.13.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -41968,14 +41879,14 @@ ], "license_file": "LICENSE-APACHE" }, - "mockall_derive 0.13.1": { + "mockall_derive 0.13.0": { "name": "mockall_derive", - "version": "0.13.1", + "version": "0.13.0", "package_url": "https://github.com/asomers/mockall", "repository": { "Http": { - "url": "https://static.crates.io/crates/mockall_derive/0.13.1/download", - "sha256": "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898" + "url": "https://static.crates.io/crates/mockall_derive/0.13.0/download", + "sha256": "341014e7f530314e9a1fdbc7400b244efea7122662c96bfa248c31da5bfb2020" } }, "targets": [ @@ -42016,26 +41927,26 @@ "target": "cfg_if" }, { - "id": "mockall_derive 0.13.1", + "id": "mockall_derive 0.13.0", "target": "build_script_build" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.13.1" + "version": "0.13.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -42052,14 +41963,14 @@ ], "license_file": "LICENSE-APACHE" }, - "mockito 1.6.1": { + "mockito 1.2.0": { "name": "mockito", - "version": "1.6.1", + "version": "1.2.0", "package_url": "https://github.com/lipanski/mockito", "repository": { "Http": { - "url": "https://static.crates.io/crates/mockito/1.6.1/download", - "sha256": "652cd6d169a36eaf9d1e6bce1a221130439a966d7f27858af66a33a66e9c4ee2" + "url": "https://static.crates.io/crates/mockito/1.2.0/download", + "sha256": "f8d3038e23466858569c2d30a537f691fa0d53b51626630ae08262943e3bbb8b" } }, "targets": [ @@ -42096,39 +42007,19 @@ "target": "assert_json_diff" }, { - "id": "bytes 1.9.0", - "target": "bytes" - }, - { - "id": "colored 2.2.0", + "id": "colored 2.0.4", "target": "colored" }, { - "id": "futures-util 0.3.31", - "target": "futures_util" - }, - { - "id": "http 1.2.0", - "target": "http" - }, - { - "id": "http-body 1.0.1", - "target": "http_body" - }, - { - "id": "http-body-util 0.1.2", - "target": "http_body_util" + "id": "futures 0.3.31", + "target": "futures" }, { - "id": "hyper 1.5.2", + "id": "hyper 0.14.27", "target": "hyper" }, { - "id": "hyper-util 0.1.10", - "target": "hyper_util" - }, - { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -42136,11 +42027,11 @@ "target": "rand" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -42148,18 +42039,18 @@ "target": "serde_urlencoded" }, { - "id": "similar 2.6.0", + "id": "similar 2.2.1", "target": "similar" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "1.6.1" + "version": "1.2.0" }, "license": "MIT", "license_ids": [ @@ -42167,14 +42058,14 @@ ], "license_file": "LICENSE" }, - "moka 0.12.10": { + "moka 0.12.8": { "name": "moka", - "version": "0.12.10", + "version": "0.12.8", "package_url": "https://github.com/moka-rs/moka", "repository": { "Http": { - "url": "https://static.crates.io/crates/moka/0.12.10/download", - "sha256": "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" + "url": "https://static.crates.io/crates/moka/0.12.8/download", + "sha256": "32cf62eb4dd975d2dde76432fb1075c49e3ee2331cf36f1f8fd4b66550d32b6f" } }, "targets": [ @@ -42211,10 +42102,13 @@ "crate_features": { "common": [ "async-lock", + "async-trait", + "atomic64", "default", "event-listener", "future", "futures-util", + "quanta", "sync" ], "selects": {} @@ -42222,11 +42116,11 @@ "deps": { "common": [ { - "id": "async-lock 3.4.0", + "id": "async-lock 3.3.0", "target": "async_lock" }, { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { @@ -42234,11 +42128,11 @@ "target": "crossbeam_epoch" }, { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" }, { - "id": "event-listener 5.4.0", + "id": "event-listener 5.3.1", "target": "event_listener" }, { @@ -42246,16 +42140,20 @@ "target": "futures_util" }, { - "id": "moka 0.12.10", + "id": "moka 0.12.8", "target": "build_script_build" }, { - "id": "parking_lot 0.12.3", + "id": "once_cell 1.19.0", + "target": "once_cell" + }, + { + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { - "id": "portable-atomic 1.10.0", - "target": "portable_atomic" + "id": "quanta 0.12.3", + "target": "quanta" }, { "id": "smallvec 1.13.2", @@ -42266,25 +42164,31 @@ "target": "tagptr" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "uuid 1.12.0", + "id": "triomphe 0.1.9", + "target": "triomphe" + }, + { + "id": "uuid 1.11.0", "target": "uuid" } ], - "selects": { - "cfg(moka_loom)": [ - { - "id": "loom 0.7.2", - "target": "loom" - } - ] - } + "selects": {} }, "edition": "2021", - "version": "0.12.10" + "proc_macro_deps": { + "common": [ + { + "id": "async-trait 0.1.83", + "target": "async_trait" + } + ], + "selects": {} + }, + "version": "0.12.8" }, "build_script_attrs": { "compile_data_glob": [ @@ -42298,7 +42202,7 @@ "selects": { "cfg(rustver)": [ { - "id": "rustc_version 0.4.1", + "id": "rustc_version 0.4.0", "target": "rustc_version" } ] @@ -42407,7 +42311,7 @@ "target": "bytes" }, { - "id": "encoding_rs 0.8.35", + "id": "encoding_rs 0.8.32", "target": "encoding_rs" }, { @@ -42419,11 +42323,11 @@ "target": "http" }, { - "id": "httparse 1.9.5", + "id": "httparse 1.8.0", "target": "httparse" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -42458,7 +42362,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.5", + "id": "version_check 0.9.4", "target": "version_check" } ], @@ -42525,7 +42429,7 @@ "target": "bytes" }, { - "id": "encoding_rs 0.8.35", + "id": "encoding_rs 0.8.32", "target": "encoding_rs" }, { @@ -42537,7 +42441,7 @@ "target": "http" }, { - "id": "httparse 1.9.5", + "id": "httparse 1.8.0", "target": "httparse" }, { @@ -42572,7 +42476,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.5", + "id": "version_check 0.9.4", "target": "version_check" } ], @@ -42585,14 +42489,14 @@ ], "license_file": "LICENSE" }, - "multimap 0.10.0": { + "multimap 0.8.3": { "name": "multimap", - "version": "0.10.0", + "version": "0.8.3", "package_url": "https://github.com/havarnov/multimap", "repository": { "Http": { - "url": "https://static.crates.io/crates/multimap/0.10.0/download", - "sha256": "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" + "url": "https://static.crates.io/crates/multimap/0.8.3/download", + "sha256": "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" } }, "targets": [ @@ -42615,23 +42519,23 @@ "**" ], "edition": "2015", - "version": "0.10.0" + "version": "0.8.3" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "neli 0.6.5": { + "neli 0.6.4": { "name": "neli", - "version": "0.6.5", + "version": "0.6.4", "package_url": "https://github.com/jbaublitz/neli", "repository": { "Http": { - "url": "https://static.crates.io/crates/neli/0.6.5/download", - "sha256": "93062a0dce6da2517ea35f301dfc88184ce18d3601ec786a727a87bf535deca9" + "url": "https://static.crates.io/crates/neli/0.6.4/download", + "sha256": "1100229e06604150b3becd61a4965d5c70f3be1759544ea7274166f4be41ef43" } }, "targets": [ @@ -42666,11 +42570,11 @@ "target": "byteorder" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" } ], @@ -42680,13 +42584,13 @@ "proc_macro_deps": { "common": [ { - "id": "neli-proc-macros 0.1.4", + "id": "neli-proc-macros 0.1.3", "target": "neli_proc_macros" } ], "selects": {} }, - "version": "0.6.5" + "version": "0.6.4" }, "license": "BSD-3-Clause", "license_ids": [ @@ -42694,14 +42598,14 @@ ], "license_file": "LICENSE" }, - "neli-proc-macros 0.1.4": { + "neli-proc-macros 0.1.3": { "name": "neli-proc-macros", - "version": "0.1.4", + "version": "0.1.3", "package_url": "https://github.com/jbaublitz/neli", "repository": { "Http": { - "url": "https://static.crates.io/crates/neli-proc-macros/0.1.4/download", - "sha256": "0c8034b7fbb6f9455b2a96c19e6edf8dc9fc34c70449938d8ee3b4df363f61fe" + "url": "https://static.crates.io/crates/neli-proc-macros/0.1.3/download", + "sha256": "c168194d373b1e134786274020dae7fc5513d565ea2ebb9bc9ff17ffb69106d4" } }, "targets": [ @@ -42726,15 +42630,15 @@ "deps": { "common": [ { - "id": "either 1.13.0", + "id": "either 1.8.1", "target": "either" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -42749,22 +42653,22 @@ "selects": {} }, "edition": "2018", - "version": "0.1.4" + "version": "0.1.3" }, "license": "BSD-3-Clause", "license_ids": [ "BSD-3-Clause" ], - "license_file": "LICENSE" + "license_file": null }, - "new_debug_unreachable 1.0.6": { + "new_debug_unreachable 1.0.4": { "name": "new_debug_unreachable", - "version": "1.0.6", + "version": "1.0.4", "package_url": "https://github.com/mbrubeck/rust-debug-unreachable", "repository": { "Http": { - "url": "https://static.crates.io/crates/new_debug_unreachable/1.0.6/download", - "sha256": "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" + "url": "https://static.crates.io/crates/new_debug_unreachable/1.0.4/download", + "sha256": "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" } }, "targets": [ @@ -42786,8 +42690,8 @@ "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "1.0.6" + "edition": "2018", + "version": "1.0.4" }, "license": "MIT", "license_ids": [ @@ -42831,11 +42735,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "serde_path_to_error 0.1.16", + "id": "serde_path_to_error 0.1.14", "target": "serde_path_to_error" }, { @@ -42843,7 +42747,7 @@ "target": "strum" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -42947,7 +42851,7 @@ "target": "cfg_if" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -43014,7 +42918,7 @@ "target": "cfg_if" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -43070,7 +42974,7 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -43078,11 +42982,11 @@ "target": "cfg_if" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "memoffset 0.9.1", + "id": "memoffset 0.9.0", "target": "memoffset" } ], @@ -43149,7 +43053,7 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -43157,7 +43061,7 @@ "target": "cfg_if" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -43548,7 +43452,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -43687,11 +43591,11 @@ "target": "byteorder" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "libm 0.2.11", + "id": "libm 0.2.7", "target": "libm" }, { @@ -43818,11 +43722,11 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.6", + "id": "arrayvec 0.7.4", "target": "arrayvec" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" } ], @@ -44030,7 +43934,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -44097,7 +44001,7 @@ "deps": { "common": [ { - "id": "libm 0.2.11", + "id": "libm 0.2.7", "target": "libm" }, { @@ -44120,7 +44024,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -44168,7 +44072,7 @@ "selects": { "cfg(not(windows))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -44190,14 +44094,14 @@ ], "license_file": "LICENSE-APACHE" }, - "num_enum 0.7.3": { + "num_enum 0.6.1": { "name": "num_enum", - "version": "0.7.3", + "version": "0.6.1", "package_url": "https://github.com/illicitonion/num_enum", "repository": { "Http": { - "url": "https://static.crates.io/crates/num_enum/0.7.3/download", - "sha256": "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" + "url": "https://static.crates.io/crates/num_enum/0.6.1/download", + "sha256": "7a015b430d3c108a207fd776d2e2196aaf8b1cf8cf93253e3a097ff3085076a1" } }, "targets": [ @@ -44230,13 +44134,13 @@ "proc_macro_deps": { "common": [ { - "id": "num_enum_derive 0.7.3", + "id": "num_enum_derive 0.6.1", "target": "num_enum_derive" } ], "selects": {} }, - "version": "0.7.3" + "version": "0.6.1" }, "license": "BSD-3-Clause OR MIT OR Apache-2.0", "license_ids": [ @@ -44246,14 +44150,14 @@ ], "license_file": "LICENSE-APACHE" }, - "num_enum_derive 0.7.3": { + "num_enum_derive 0.6.1": { "name": "num_enum_derive", - "version": "0.7.3", + "version": "0.6.1", "package_url": "https://github.com/illicitonion/num_enum", "repository": { "Http": { - "url": "https://static.crates.io/crates/num_enum_derive/0.7.3/download", - "sha256": "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" + "url": "https://static.crates.io/crates/num_enum_derive/0.6.1/download", + "sha256": "96667db765a921f7b295ffee8b60472b686a51d4f21c2ee4ffdb94c7013b65a6" } }, "targets": [ @@ -44285,26 +44189,26 @@ "deps": { "common": [ { - "id": "proc-macro-crate 3.2.0", + "id": "proc-macro-crate 1.3.1", "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.7.3" + "version": "0.6.1" }, "license": "BSD-3-Clause OR MIT OR Apache-2.0", "license_ids": [ @@ -44314,14 +44218,14 @@ ], "license_file": "LICENSE-APACHE" }, - "num_threads 0.1.7": { + "num_threads 0.1.6": { "name": "num_threads", - "version": "0.1.7", + "version": "0.1.6", "package_url": "https://github.com/jhpratt/num_threads", "repository": { "Http": { - "url": "https://static.crates.io/crates/num_threads/0.1.7/download", - "sha256": "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" + "url": "https://static.crates.io/crates/num_threads/0.1.6/download", + "sha256": "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" } }, "targets": [ @@ -44348,14 +44252,14 @@ "selects": { "cfg(any(target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\"))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] } }, "edition": "2015", - "version": "0.1.7" + "version": "0.1.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -44409,6 +44313,66 @@ ], "license_file": null }, + "object 0.31.1": { + "name": "object", + "version": "0.31.1", + "package_url": "https://github.com/gimli-rs/object", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/object/0.31.1/download", + "sha256": "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" + } + }, + "targets": [ + { + "Library": { + "crate_name": "object", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "object", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "archive", + "coff", + "elf", + "macho", + "pe", + "read_core", + "unaligned" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "memchr 2.7.4", + "target": "memchr" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.31.1" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "object 0.36.7": { "name": "object", "version": "0.36.7", @@ -44463,137 +44427,12 @@ "write_std", "xcoff" ], - "selects": { - "aarch64-apple-darwin": [ - "archive", - "unaligned" - ], - "aarch64-apple-ios": [ - "archive", - "unaligned" - ], - "aarch64-apple-ios-sim": [ - "archive", - "unaligned" - ], - "aarch64-linux-android": [ - "archive", - "unaligned" - ], - "aarch64-unknown-fuchsia": [ - "archive", - "unaligned" - ], - "aarch64-unknown-linux-gnu": [ - "archive", - "unaligned" - ], - "aarch64-unknown-nixos-gnu": [ - "archive", - "unaligned" - ], - "aarch64-unknown-nto-qnx710": [ - "archive", - "unaligned" - ], - "arm-unknown-linux-gnueabi": [ - "archive", - "unaligned" - ], - "armv7-linux-androideabi": [ - "archive", - "unaligned" - ], - "armv7-unknown-linux-gnueabi": [ - "archive", - "unaligned" - ], - "i686-apple-darwin": [ - "archive", - "unaligned" - ], - "i686-linux-android": [ - "archive", - "unaligned" - ], - "i686-unknown-freebsd": [ - "archive", - "unaligned" - ], - "i686-unknown-linux-gnu": [ - "archive", - "unaligned" - ], - "powerpc-unknown-linux-gnu": [ - "archive", - "unaligned" - ], - "riscv32imc-unknown-none-elf": [ - "archive", - "unaligned" - ], - "riscv64gc-unknown-none-elf": [ - "archive", - "unaligned" - ], - "s390x-unknown-linux-gnu": [ - "archive", - "unaligned" - ], - "thumbv7em-none-eabi": [ - "archive", - "unaligned" - ], - "thumbv8m.main-none-eabi": [ - "archive", - "unaligned" - ], - "wasm32-unknown-unknown": [ - "archive", - "unaligned" - ], - "wasm32-wasip1": [ - "archive", - "unaligned" - ], - "x86_64-apple-darwin": [ - "archive", - "unaligned" - ], - "x86_64-apple-ios": [ - "archive", - "unaligned" - ], - "x86_64-linux-android": [ - "archive", - "unaligned" - ], - "x86_64-unknown-freebsd": [ - "archive", - "unaligned" - ], - "x86_64-unknown-fuchsia": [ - "archive", - "unaligned" - ], - "x86_64-unknown-linux-gnu": [ - "archive", - "unaligned" - ], - "x86_64-unknown-nixos-gnu": [ - "archive", - "unaligned" - ], - "x86_64-unknown-none": [ - "archive", - "unaligned" - ] - } + "selects": {} }, "deps": { "common": [ { - "id": "crc32fast 1.4.2", + "id": "crc32fast 1.3.2", "target": "crc32fast" }, { @@ -44601,7 +44440,7 @@ "target": "hashbrown" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { @@ -44633,14 +44472,14 @@ ], "license_file": "LICENSE-APACHE" }, - "oid-registry 0.7.1": { + "oid-registry 0.7.0": { "name": "oid-registry", - "version": "0.7.1", + "version": "0.7.0", "package_url": "https://github.com/rusticata/oid-registry.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/oid-registry/0.7.1/download", - "sha256": "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9" + "url": "https://static.crates.io/crates/oid-registry/0.7.0/download", + "sha256": "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d" } }, "targets": [ @@ -44693,18 +44532,18 @@ "deps": { "common": [ { - "id": "asn1-rs 0.6.2", + "id": "asn1-rs 0.6.1", "target": "asn1_rs" }, { - "id": "oid-registry 0.7.1", + "id": "oid-registry 0.7.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.7.1" + "version": "0.7.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -44721,14 +44560,14 @@ ], "license_file": "LICENSE-APACHE" }, - "once_cell 1.20.2": { + "once_cell 1.19.0": { "name": "once_cell", - "version": "1.20.2", + "version": "1.19.0", "package_url": "https://github.com/matklad/once_cell", "repository": { "Http": { - "url": "https://static.crates.io/crates/once_cell/1.20.2/download", - "sha256": "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" + "url": "https://static.crates.io/crates/once_cell/1.19.0/download", + "sha256": "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" } }, "targets": [ @@ -44760,7 +44599,7 @@ "selects": {} }, "edition": "2021", - "version": "1.20.2" + "version": "1.19.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -44769,14 +44608,14 @@ ], "license_file": "LICENSE-APACHE" }, - "oorandom 11.1.4": { + "oorandom 11.1.3": { "name": "oorandom", - "version": "11.1.4", - "package_url": "https://hg.sr.ht/~icefox/oorandom", + "version": "11.1.3", + "package_url": "https://sr.ht/~icefox/oorandom/", "repository": { "Http": { - "url": "https://static.crates.io/crates/oorandom/11.1.4/download", - "sha256": "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9" + "url": "https://static.crates.io/crates/oorandom/11.1.3/download", + "sha256": "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" } }, "targets": [ @@ -44799,7 +44638,7 @@ "**" ], "edition": "2018", - "version": "11.1.4" + "version": "11.1.3" }, "license": "MIT", "license_ids": [ @@ -44807,14 +44646,14 @@ ], "license_file": "LICENSE-MIT" }, - "opaque-debug 0.3.1": { + "opaque-debug 0.3.0": { "name": "opaque-debug", - "version": "0.3.1", + "version": "0.3.0", "package_url": "https://github.com/RustCrypto/utils", "repository": { "Http": { - "url": "https://static.crates.io/crates/opaque-debug/0.3.1/download", - "sha256": "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" + "url": "https://static.crates.io/crates/opaque-debug/0.3.0/download", + "sha256": "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" } }, "targets": [ @@ -44837,7 +44676,7 @@ "**" ], "edition": "2018", - "version": "0.3.1" + "version": "0.3.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -44888,7 +44727,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.6", + "id": "arrayvec 0.7.4", "target": "arrayvec" }, { @@ -44906,7 +44745,7 @@ "proc_macro_deps": { "common": [ { - "id": "auto_impl 1.2.1", + "id": "auto_impl 1.1.0", "target": "auto_impl" }, { @@ -44961,11 +44800,11 @@ "target": "bytes" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -45032,7 +44871,7 @@ "target": "sha2" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -45087,14 +44926,14 @@ ], "license_file": "LICENSE-APACHE" }, - "openssl-sys 0.9.104": { + "openssl-sys 0.9.102": { "name": "openssl-sys", - "version": "0.9.104", + "version": "0.9.102", "package_url": "https://github.com/sfackler/rust-openssl", "repository": { "Http": { - "url": "https://static.crates.io/crates/openssl-sys/0.9.104/download", - "sha256": "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" + "url": "https://static.crates.io/crates/openssl-sys/0.9.102/download", + "sha256": "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" } }, "targets": [ @@ -45131,18 +44970,18 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "openssl-sys 0.9.104", + "id": "openssl-sys 0.9.102", "target": "build_script_main" } ], "selects": {} }, - "edition": "2021", - "version": "0.9.104" + "edition": "2018", + "version": "0.9.102" }, "build_script_attrs": { "compile_data_glob": [ @@ -45154,11 +44993,11 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" }, { @@ -45341,19 +45180,19 @@ "target": "futures_sink" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -45364,7 +45203,7 @@ "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" } ] @@ -45379,14 +45218,14 @@ ], "license_file": "LICENSE" }, - "opentelemetry 0.27.1": { + "opentelemetry 0.27.0": { "name": "opentelemetry", - "version": "0.27.1", + "version": "0.27.0", "package_url": "https://github.com/open-telemetry/opentelemetry-rust", "repository": { "Http": { - "url": "https://static.crates.io/crates/opentelemetry/0.27.1/download", - "sha256": "ab70038c28ed37b97d8ed414b6429d343a8bbf44c9f79ec854f3a643029ba6d7" + "url": "https://static.crates.io/crates/opentelemetry/0.27.0/download", + "sha256": "0f3cebff57f7dbd1255b44d8bddc2cebeb0ea677dbaa2e25a3070a91b318f660" } }, "targets": [ @@ -45411,15 +45250,10 @@ "crate_features": { "common": [ "default", - "futures-core", - "futures-sink", - "internal-logs", "logs", "metrics", "pin-project-lite", - "thiserror", - "trace", - "tracing" + "trace" ], "selects": {} }, @@ -45434,29 +45268,29 @@ "target": "futures_sink" }, { - "id": "pin-project-lite 0.2.16", - "target": "pin_project_lite" + "id": "once_cell 1.19.0", + "target": "once_cell" }, { - "id": "thiserror 1.0.69", - "target": "thiserror" + "id": "pin-project-lite 0.2.13", + "target": "pin_project_lite" }, { - "id": "tracing 0.1.41", - "target": "tracing" + "id": "thiserror 1.0.68", + "target": "thiserror" } ], "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" } ] } }, "edition": "2021", - "version": "0.27.1" + "version": "0.27.0" }, "license": "Apache-2.0", "license_ids": [ @@ -45520,7 +45354,7 @@ "target": "http" }, { - "id": "opentelemetry 0.27.1", + "id": "opentelemetry 0.27.0", "target": "opentelemetry" }, { @@ -45532,15 +45366,15 @@ "target": "opentelemetry_sdk" }, { - "id": "prost 0.13.4", + "id": "prost 0.13.3", "target": "prost" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -45558,7 +45392,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -45604,7 +45438,7 @@ "deps": { "common": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -45673,7 +45507,7 @@ "deps": { "common": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -45748,7 +45582,7 @@ "deps": { "common": [ { - "id": "opentelemetry 0.27.1", + "id": "opentelemetry 0.27.0", "target": "opentelemetry" }, { @@ -45756,7 +45590,7 @@ "target": "opentelemetry_sdk" }, { - "id": "prost 0.13.4", + "id": "prost 0.13.3", "target": "prost" }, { @@ -45874,22 +45708,22 @@ "target": "indexmap" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], "selects": { "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" } ] @@ -45957,15 +45791,15 @@ "target": "indexmap" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -45976,7 +45810,7 @@ "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" } ] @@ -46034,7 +45868,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { @@ -46050,7 +45884,7 @@ "target": "futures_util" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -46066,7 +45900,7 @@ "target": "rand" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -46076,7 +45910,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -46135,7 +45969,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { @@ -46151,7 +45985,7 @@ "target": "futures_util" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -46171,11 +46005,11 @@ "target": "rand" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -46185,7 +46019,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -46247,7 +46081,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { @@ -46263,11 +46097,11 @@ "target": "futures_util" }, { - "id": "glob 0.3.2", + "id": "glob 0.3.1", "target": "glob" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -46275,7 +46109,7 @@ "target": "opentelemetry" }, { - "id": "ordered-float 4.6.0", + "id": "ordered-float 4.2.0", "target": "ordered_float" }, { @@ -46287,11 +46121,11 @@ "target": "rand" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -46305,7 +46139,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -46382,11 +46216,11 @@ "target": "futures_util" }, { - "id": "glob 0.3.2", + "id": "glob 0.3.1", "target": "glob" }, { - "id": "opentelemetry 0.27.1", + "id": "opentelemetry 0.27.0", "target": "opentelemetry" }, { @@ -46398,15 +46232,15 @@ "target": "rand" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -46424,7 +46258,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -46438,14 +46272,14 @@ ], "license_file": "LICENSE" }, - "ordered-float 2.10.1": { + "ordered-float 2.10.0": { "name": "ordered-float", - "version": "2.10.1", + "version": "2.10.0", "package_url": "https://github.com/reem/rust-ordered-float", "repository": { "Http": { - "url": "https://static.crates.io/crates/ordered-float/2.10.1/download", - "sha256": "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" + "url": "https://static.crates.io/crates/ordered-float/2.10.0/download", + "sha256": "7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87" } }, "targets": [ @@ -46484,7 +46318,7 @@ "selects": {} }, "edition": "2018", - "version": "2.10.1" + "version": "2.10.0" }, "license": "MIT", "license_ids": [ @@ -46546,14 +46380,14 @@ ], "license_file": "LICENSE-MIT" }, - "ordered-float 4.6.0": { + "ordered-float 4.2.0": { "name": "ordered-float", - "version": "4.6.0", + "version": "4.2.0", "package_url": "https://github.com/reem/rust-ordered-float", "repository": { "Http": { - "url": "https://static.crates.io/crates/ordered-float/4.6.0/download", - "sha256": "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951" + "url": "https://static.crates.io/crates/ordered-float/4.2.0/download", + "sha256": "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e" } }, "targets": [ @@ -46592,7 +46426,7 @@ "selects": {} }, "edition": "2021", - "version": "4.6.0" + "version": "4.2.0" }, "license": "MIT", "license_ids": [ @@ -46600,14 +46434,14 @@ ], "license_file": "LICENSE-MIT" }, - "os_str_bytes 6.6.1": { + "os_str_bytes 6.5.1": { "name": "os_str_bytes", - "version": "6.6.1", + "version": "6.5.1", "package_url": "https://github.com/dylni/os_str_bytes", "repository": { "Http": { - "url": "https://static.crates.io/crates/os_str_bytes/6.6.1/download", - "sha256": "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1" + "url": "https://static.crates.io/crates/os_str_bytes/6.5.1/download", + "sha256": "4d5d9eb14b174ee9aa2ef96dc2b94637a2d4b6e7cb873c7e171f0c20c6cf3eac" } }, "targets": [ @@ -46636,7 +46470,7 @@ "selects": {} }, "edition": "2021", - "version": "6.6.1" + "version": "6.5.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -46740,7 +46574,7 @@ "target": "elliptic_curve" }, { - "id": "primeorder 0.13.6", + "id": "primeorder 0.13.2", "target": "primeorder" }, { @@ -46815,14 +46649,14 @@ ], "license_file": "LICENSE-APACHE" }, - "parity-scale-codec 3.6.12": { + "parity-scale-codec 3.6.3": { "name": "parity-scale-codec", - "version": "3.6.12", + "version": "3.6.3", "package_url": "https://github.com/paritytech/parity-scale-codec", "repository": { "Http": { - "url": "https://static.crates.io/crates/parity-scale-codec/3.6.12/download", - "sha256": "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee" + "url": "https://static.crates.io/crates/parity-scale-codec/3.6.3/download", + "sha256": "756d439303e94fae44f288ba881ad29670c65b0c4b0e05674ca81061bb65f2c5" } }, "targets": [ @@ -46858,7 +46692,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.6", + "id": "arrayvec 0.7.4", "target": "arrayvec" }, { @@ -46876,17 +46710,17 @@ "proc_macro_deps": { "common": [ { - "id": "impl-trait-for-tuples 0.2.3", + "id": "impl-trait-for-tuples 0.2.2", "target": "impl_trait_for_tuples" }, { - "id": "parity-scale-codec-derive 3.6.12", + "id": "parity-scale-codec-derive 3.6.3", "target": "parity_scale_codec_derive" } ], "selects": {} }, - "version": "3.6.12" + "version": "3.6.3" }, "license": "Apache-2.0", "license_ids": [ @@ -46894,14 +46728,14 @@ ], "license_file": "LICENSE" }, - "parity-scale-codec-derive 3.6.12": { + "parity-scale-codec-derive 3.6.3": { "name": "parity-scale-codec-derive", - "version": "3.6.12", + "version": "3.6.3", "package_url": null, "repository": { "Http": { - "url": "https://static.crates.io/crates/parity-scale-codec-derive/3.6.12/download", - "sha256": "d830939c76d294956402033aee57a6da7b438f2294eb94864c37b0569053a42c" + "url": "https://static.crates.io/crates/parity-scale-codec-derive/3.6.3/download", + "sha256": "9d884d78fcf214d70b1e239fcd1c6e5e95aa3be1881918da2e488cc946c7a476" } }, "targets": [ @@ -46932,15 +46766,15 @@ "deps": { "common": [ { - "id": "proc-macro-crate 3.2.0", + "id": "proc-macro-crate 1.3.1", "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -46951,7 +46785,7 @@ "selects": {} }, "edition": "2021", - "version": "3.6.12" + "version": "3.6.3" }, "license": "Apache-2.0", "license_ids": [ @@ -46959,14 +46793,14 @@ ], "license_file": null }, - "parking 2.2.1": { + "parking 2.1.0": { "name": "parking", - "version": "2.2.1", + "version": "2.1.0", "package_url": "https://github.com/smol-rs/parking", "repository": { "Http": { - "url": "https://static.crates.io/crates/parking/2.2.1/download", - "sha256": "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" + "url": "https://static.crates.io/crates/parking/2.1.0/download", + "sha256": "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" } }, "targets": [ @@ -46989,7 +46823,7 @@ "**" ], "edition": "2018", - "version": "2.2.1" + "version": "2.1.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -47036,11 +46870,11 @@ "deps": { "common": [ { - "id": "instant 0.1.13", + "id": "instant 0.1.12", "target": "instant" }, { - "id": "lock_api 0.4.12", + "id": "lock_api 0.4.10", "target": "lock_api" }, { @@ -47060,14 +46894,14 @@ ], "license_file": "LICENSE-APACHE" }, - "parking_lot 0.12.3": { + "parking_lot 0.12.1": { "name": "parking_lot", - "version": "0.12.3", + "version": "0.12.1", "package_url": "https://github.com/Amanieu/parking_lot", "repository": { "Http": { - "url": "https://static.crates.io/crates/parking_lot/0.12.3/download", - "sha256": "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" + "url": "https://static.crates.io/crates/parking_lot/0.12.1/download", + "sha256": "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" } }, "targets": [ @@ -47098,18 +46932,18 @@ "deps": { "common": [ { - "id": "lock_api 0.4.12", + "id": "lock_api 0.4.10", "target": "lock_api" }, { - "id": "parking_lot_core 0.9.10", + "id": "parking_lot_core 0.9.8", "target": "parking_lot_core" } ], "selects": {} }, - "edition": "2021", - "version": "0.12.3" + "edition": "2018", + "version": "0.12.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -47166,7 +47000,7 @@ "target": "cfg_if" }, { - "id": "instant 0.1.13", + "id": "instant 0.1.12", "target": "instant" }, { @@ -47187,7 +47021,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -47217,14 +47051,14 @@ ], "license_file": "LICENSE-APACHE" }, - "parking_lot_core 0.9.10": { + "parking_lot_core 0.9.8": { "name": "parking_lot_core", - "version": "0.9.10", + "version": "0.9.8", "package_url": "https://github.com/Amanieu/parking_lot", "repository": { "Http": { - "url": "https://static.crates.io/crates/parking_lot_core/0.9.10/download", - "sha256": "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" + "url": "https://static.crates.io/crates/parking_lot_core/0.9.8/download", + "sha256": "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" } }, "targets": [ @@ -47265,7 +47099,7 @@ "target": "cfg_if" }, { - "id": "parking_lot_core 0.9.10", + "id": "parking_lot_core 0.9.8", "target": "build_script_build" }, { @@ -47276,26 +47110,26 @@ "selects": { "cfg(target_os = \"redox\")": [ { - "id": "redox_syscall 0.5.8", + "id": "redox_syscall 0.3.5", "target": "syscall" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(windows)": [ { - "id": "windows-targets 0.52.6", + "id": "windows-targets 0.48.1", "target": "windows_targets" } ] } }, - "edition": "2021", - "version": "0.9.10" + "edition": "2018", + "version": "0.9.8" }, "build_script_attrs": { "compile_data_glob": [ @@ -47482,14 +47316,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pcre2 0.2.9": { + "pcre2 0.2.6": { "name": "pcre2", - "version": "0.2.9", + "version": "0.2.6", "package_url": "https://github.com/BurntSushi/rust-pcre2", "repository": { "Http": { - "url": "https://static.crates.io/crates/pcre2/0.2.9/download", - "sha256": "3be55c43ac18044541d58d897e8f4c55157218428953ebd39d86df3ba0286b2b" + "url": "https://static.crates.io/crates/pcre2/0.2.6/download", + "sha256": "4c9d53a8ea5fc3d3568d3de4bebc12606fd0eb8234c602576f1f1ee4880488a7" } }, "targets": [ @@ -47514,22 +47348,22 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "pcre2-sys 0.2.9", + "id": "pcre2-sys 0.2.8", "target": "pcre2_sys" } ], "selects": {} }, "edition": "2021", - "version": "0.2.9" + "version": "0.2.6" }, "license": "Unlicense OR MIT", "license_ids": [ @@ -47538,14 +47372,14 @@ ], "license_file": "LICENSE-MIT" }, - "pcre2-sys 0.2.9": { + "pcre2-sys 0.2.8": { "name": "pcre2-sys", - "version": "0.2.9", + "version": "0.2.8", "package_url": "https://github.com/BurntSushi/rust-pcre2", "repository": { "Http": { - "url": "https://static.crates.io/crates/pcre2-sys/0.2.9/download", - "sha256": "550f5d18fb1b90c20b87e161852c10cde77858c3900c5059b5ad2a1449f11d8a" + "url": "https://static.crates.io/crates/pcre2-sys/0.2.8/download", + "sha256": "25b8a7b5253a4465b873a21ee7e8d6ec561a57eed5d319621bec36bea35c86ae" } }, "targets": [ @@ -47582,18 +47416,18 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "pcre2-sys 0.2.9", + "id": "pcre2-sys 0.2.8", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.2.9" + "version": "0.2.8" }, "build_script_attrs": { "compile_data_glob": [ @@ -47605,11 +47439,11 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" } ], @@ -47709,14 +47543,14 @@ ], "license_file": "LICENSE.md" }, - "pem 3.0.4": { + "pem 3.0.3": { "name": "pem", - "version": "3.0.4", + "version": "3.0.3", "package_url": "https://github.com/jcreekmore/pem-rs.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/pem/3.0.4/download", - "sha256": "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae" + "url": "https://static.crates.io/crates/pem/3.0.3/download", + "sha256": "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310" } }, "targets": [ @@ -47748,14 +47582,14 @@ "deps": { "common": [ { - "id": "base64 0.22.1", + "id": "base64 0.21.6", "target": "base64" } ], "selects": {} }, "edition": "2021", - "version": "3.0.4" + "version": "3.0.3" }, "license": "MIT", "license_ids": [ @@ -47864,14 +47698,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pest 2.7.15": { + "pest 2.7.1": { "name": "pest", - "version": "2.7.15", + "version": "2.7.1", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest/2.7.15/download", - "sha256": "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc" + "url": "https://static.crates.io/crates/pest/2.7.1/download", + "sha256": "0d2d1d55045829d65aad9d389139882ad623b33b904e7c9f1b10c5b8927298e5" } }, "targets": [ @@ -47896,7 +47730,6 @@ "crate_features": { "common": [ "default", - "memchr", "std" ], "selects": {} @@ -47904,38 +47737,34 @@ "deps": { "common": [ { - "id": "memchr 2.7.4", - "target": "memchr" - }, - { - "id": "thiserror 2.0.11", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "ucd-trie 0.1.7", + "id": "ucd-trie 0.1.6", "target": "ucd_trie" } ], "selects": {} }, "edition": "2021", - "version": "2.7.15" + "version": "2.7.1" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "pest_derive 2.7.15": { + "pest_derive 2.7.1": { "name": "pest_derive", - "version": "2.7.15", + "version": "2.7.1", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_derive/2.7.15/download", - "sha256": "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e" + "url": "https://static.crates.io/crates/pest_derive/2.7.1/download", + "sha256": "5f94bca7e7a599d89dea5dfa309e217e7906c3c007fb9c3299c40b10d6a315d3" } }, "targets": [ @@ -47967,34 +47796,34 @@ "deps": { "common": [ { - "id": "pest 2.7.15", + "id": "pest 2.7.1", "target": "pest" }, { - "id": "pest_generator 2.7.15", + "id": "pest_generator 2.7.1", "target": "pest_generator" } ], "selects": {} }, "edition": "2021", - "version": "2.7.15" + "version": "2.7.1" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "pest_generator 2.7.15": { + "pest_generator 2.7.1": { "name": "pest_generator", - "version": "2.7.15", + "version": "2.7.1", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_generator/2.7.15/download", - "sha256": "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b" + "url": "https://static.crates.io/crates/pest_generator/2.7.1/download", + "sha256": "99d490fe7e8556575ff6911e45567ab95e71617f43781e5c05490dc8d75c965c" } }, "targets": [ @@ -48025,46 +47854,46 @@ "deps": { "common": [ { - "id": "pest 2.7.15", + "id": "pest 2.7.1", "target": "pest" }, { - "id": "pest_meta 2.7.15", + "id": "pest_meta 2.7.1", "target": "pest_meta" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.7.15" + "version": "2.7.1" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "pest_meta 2.7.15": { + "pest_meta 2.7.1": { "name": "pest_meta", - "version": "2.7.15", + "version": "2.7.1", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_meta/2.7.15/download", - "sha256": "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea" + "url": "https://static.crates.io/crates/pest_meta/2.7.1/download", + "sha256": "2674c66ebb4b4d9036012091b537aae5878970d6999f81a265034d85b136b341" } }, "targets": [ @@ -48095,34 +47924,34 @@ "deps": { "common": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "pest 2.7.15", + "id": "pest 2.7.1", "target": "pest" } ], "selects": {} }, "edition": "2021", - "version": "2.7.15" + "version": "2.7.1" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "pest_vm 2.7.15": { + "pest_vm 2.7.1": { "name": "pest_vm", - "version": "2.7.15", + "version": "2.7.1", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_vm/2.7.15/download", - "sha256": "a8151168a80801131f6e0e79d6c84fa337ccd2493c99e59de027354c3e6fca0b" + "url": "https://static.crates.io/crates/pest_vm/2.7.1/download", + "sha256": "3c590ba0f5dbc3b72b0b22fe5a11a69a43ff984cce83928dfaa615eb87594d6a" } }, "targets": [ @@ -48147,34 +47976,34 @@ "deps": { "common": [ { - "id": "pest 2.7.15", + "id": "pest 2.7.1", "target": "pest" }, { - "id": "pest_meta 2.7.15", + "id": "pest_meta 2.7.1", "target": "pest_meta" } ], "selects": {} }, "edition": "2021", - "version": "2.7.15" + "version": "2.7.1" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": null }, - "petgraph 0.6.5": { + "petgraph 0.6.3": { "name": "petgraph", - "version": "0.6.5", + "version": "0.6.3", "package_url": "https://github.com/petgraph/petgraph", "repository": { "Http": { - "url": "https://static.crates.io/crates/petgraph/0.6.5/download", - "sha256": "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" + "url": "https://static.crates.io/crates/petgraph/0.6.3/download", + "sha256": "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4" } }, "targets": [ @@ -48203,14 +48032,14 @@ "target": "fixedbitset" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 1.9.3", "target": "indexmap" } ], "selects": {} }, "edition": "2018", - "version": "0.6.5" + "version": "0.6.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -48273,14 +48102,14 @@ ], "license_file": null }, - "phf 0.11.3": { + "phf 0.11.2": { "name": "phf", - "version": "0.11.3", + "version": "0.11.2", "package_url": "https://github.com/rust-phf/rust-phf", "repository": { "Http": { - "url": "https://static.crates.io/crates/phf/0.11.3/download", - "sha256": "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" + "url": "https://static.crates.io/crates/phf/0.11.2/download", + "sha256": "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" } }, "targets": [ @@ -48314,7 +48143,7 @@ "deps": { "common": [ { - "id": "phf_shared 0.11.3", + "id": "phf_shared 0.11.2", "target": "phf_shared" } ], @@ -48324,13 +48153,13 @@ "proc_macro_deps": { "common": [ { - "id": "phf_macros 0.11.3", + "id": "phf_macros 0.11.2", "target": "phf_macros" } ], "selects": {} }, - "version": "0.11.3" + "version": "0.11.2" }, "license": "MIT", "license_ids": [ @@ -48440,14 +48269,14 @@ ], "license_file": null }, - "phf_generator 0.11.3": { + "phf_generator 0.11.2": { "name": "phf_generator", - "version": "0.11.3", + "version": "0.11.2", "package_url": "https://github.com/rust-phf/rust-phf", "repository": { "Http": { - "url": "https://static.crates.io/crates/phf_generator/0.11.3/download", - "sha256": "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" + "url": "https://static.crates.io/crates/phf_generator/0.11.2/download", + "sha256": "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" } }, "targets": [ @@ -48472,7 +48301,7 @@ "deps": { "common": [ { - "id": "phf_shared 0.11.3", + "id": "phf_shared 0.11.2", "target": "phf_shared" }, { @@ -48483,7 +48312,7 @@ "selects": {} }, "edition": "2021", - "version": "0.11.3" + "version": "0.11.2" }, "license": "MIT", "license_ids": [ @@ -48491,14 +48320,14 @@ ], "license_file": "LICENSE" }, - "phf_macros 0.11.3": { + "phf_macros 0.11.2": { "name": "phf_macros", - "version": "0.11.3", + "version": "0.11.2", "package_url": "https://github.com/rust-phf/rust-phf", "repository": { "Http": { - "url": "https://static.crates.io/crates/phf_macros/0.11.3/download", - "sha256": "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" + "url": "https://static.crates.io/crates/phf_macros/0.11.2/download", + "sha256": "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" } }, "targets": [ @@ -48523,36 +48352,36 @@ "deps": { "common": [ { - "id": "phf_generator 0.11.3", + "id": "phf_generator 0.11.2", "target": "phf_generator" }, { - "id": "phf_shared 0.11.3", + "id": "phf_shared 0.11.2", "target": "phf_shared" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.11.3" + "version": "0.11.2" }, "license": "MIT", "license_ids": [ "MIT" ], - "license_file": "LICENSE" + "license_file": null }, "phf_shared 0.10.0": { "name": "phf_shared", @@ -48608,14 +48437,14 @@ ], "license_file": null }, - "phf_shared 0.11.3": { + "phf_shared 0.11.2": { "name": "phf_shared", - "version": "0.11.3", + "version": "0.11.2", "package_url": "https://github.com/rust-phf/rust-phf", "repository": { "Http": { - "url": "https://static.crates.io/crates/phf_shared/0.11.3/download", - "sha256": "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" + "url": "https://static.crates.io/crates/phf_shared/0.11.2/download", + "sha256": "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" } }, "targets": [ @@ -48646,14 +48475,14 @@ "deps": { "common": [ { - "id": "siphasher 1.0.1", + "id": "siphasher 0.3.11", "target": "siphasher" } ], "selects": {} }, "edition": "2021", - "version": "0.11.3" + "version": "0.11.2" }, "license": "MIT", "license_ids": [ @@ -48699,14 +48528,14 @@ ], "license_file": "LICENSE" }, - "pin-project 1.1.8": { + "pin-project 1.1.2": { "name": "pin-project", - "version": "1.1.8", + "version": "1.1.2", "package_url": "https://github.com/taiki-e/pin-project", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project/1.1.8/download", - "sha256": "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916" + "url": "https://static.crates.io/crates/pin-project/1.1.2/download", + "sha256": "030ad2bc4db10a8944cb0d837f158bdfec4d4a4873ab701a95046770d11f8842" } }, "targets": [ @@ -48728,17 +48557,17 @@ "compile_data_glob": [ "**" ], - "edition": "2021", + "edition": "2018", "proc_macro_deps": { "common": [ { - "id": "pin-project-internal 1.1.8", + "id": "pin-project-internal 1.1.2", "target": "pin_project_internal" } ], "selects": {} }, - "version": "1.1.8" + "version": "1.1.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -48747,14 +48576,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pin-project-internal 1.1.8": { + "pin-project-internal 1.1.2": { "name": "pin-project-internal", - "version": "1.1.8", + "version": "1.1.2", "package_url": "https://github.com/taiki-e/pin-project", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project-internal/1.1.8/download", - "sha256": "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb" + "url": "https://static.crates.io/crates/pin-project-internal/1.1.2/download", + "sha256": "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c" } }, "targets": [ @@ -48779,22 +48608,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, - "edition": "2021", - "version": "1.1.8" + "edition": "2018", + "version": "1.1.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -48803,14 +48632,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pin-project-lite 0.2.16": { + "pin-project-lite 0.2.13": { "name": "pin-project-lite", - "version": "0.2.16", + "version": "0.2.13", "package_url": "https://github.com/taiki-e/pin-project-lite", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project-lite/0.2.16/download", - "sha256": "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" + "url": "https://static.crates.io/crates/pin-project-lite/0.2.13/download", + "sha256": "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" } }, "targets": [ @@ -48833,7 +48662,7 @@ "**" ], "edition": "2018", - "version": "0.2.16" + "version": "0.2.13" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -48881,14 +48710,14 @@ ], "license_file": "LICENSE-APACHE" }, - "ping 0.5.2": { + "ping 0.5.0": { "name": "ping", - "version": "0.5.2", + "version": "0.5.0", "package_url": "https://github.com/aisk/rust-ping", "repository": { "Http": { - "url": "https://static.crates.io/crates/ping/0.5.2/download", - "sha256": "122ee1f5a6843bec84fcbd5c6ba3622115337a6b8965b93a61aad347648f4e8d" + "url": "https://static.crates.io/crates/ping/0.5.0/download", + "sha256": "985c8af0584bf35ecfb95a65b74a457782966e1ab8f2c94c01697a36432a5814" } }, "targets": [ @@ -48917,18 +48746,18 @@ "target": "rand" }, { - "id": "socket2 0.4.10", + "id": "socket2 0.4.9", "target": "socket2" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], "selects": {} }, "edition": "2018", - "version": "0.5.2" + "version": "0.5.0" }, "license": "MIT", "license_ids": [ @@ -48980,7 +48809,7 @@ "target": "atomic_waker" }, { - "id": "fastrand 2.3.0", + "id": "fastrand 2.1.0", "target": "fastrand" }, { @@ -49042,7 +48871,7 @@ "deps": { "common": [ { - "id": "der 0.7.9", + "id": "der 0.7.7", "target": "der" }, { @@ -49106,7 +48935,7 @@ "deps": { "common": [ { - "id": "der 0.7.9", + "id": "der 0.7.7", "target": "der" }, { @@ -49126,14 +48955,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pkg-config 0.3.31": { + "pkg-config 0.3.27": { "name": "pkg-config", - "version": "0.3.31", + "version": "0.3.27", "package_url": "https://github.com/rust-lang/pkg-config-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/pkg-config/0.3.31/download", - "sha256": "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" + "url": "https://static.crates.io/crates/pkg-config/0.3.27/download", + "sha256": "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" } }, "targets": [ @@ -49155,8 +48984,8 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "0.3.31" + "edition": "2015", + "version": "0.3.27" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -49165,14 +48994,14 @@ ], "license_file": "LICENSE-APACHE" }, - "plotters 0.3.7": { + "plotters 0.3.5": { "name": "plotters", - "version": "0.3.7", + "version": "0.3.5", "package_url": "https://github.com/plotters-rs/plotters", "repository": { "Http": { - "url": "https://static.crates.io/crates/plotters/0.3.7/download", - "sha256": "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747" + "url": "https://static.crates.io/crates/plotters/0.3.5/download", + "sha256": "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" } }, "targets": [ @@ -49210,29 +49039,29 @@ "target": "num_traits" }, { - "id": "plotters-backend 0.3.7", + "id": "plotters-backend 0.3.5", "target": "plotters_backend" }, { - "id": "plotters-svg 0.3.7", + "id": "plotters-svg 0.3.5", "target": "plotters_svg" } ], "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" }, { - "id": "web-sys 0.3.77", + "id": "web-sys 0.3.64", "target": "web_sys" } ] } }, "edition": "2018", - "version": "0.3.7" + "version": "0.3.5" }, "license": "MIT", "license_ids": [ @@ -49240,14 +49069,14 @@ ], "license_file": "LICENSE" }, - "plotters-backend 0.3.7": { + "plotters-backend 0.3.5": { "name": "plotters-backend", - "version": "0.3.7", + "version": "0.3.5", "package_url": "https://github.com/plotters-rs/plotters", "repository": { "Http": { - "url": "https://static.crates.io/crates/plotters-backend/0.3.7/download", - "sha256": "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a" + "url": "https://static.crates.io/crates/plotters-backend/0.3.5/download", + "sha256": "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" } }, "targets": [ @@ -49270,7 +49099,7 @@ "**" ], "edition": "2018", - "version": "0.3.7" + "version": "0.3.5" }, "license": "MIT", "license_ids": [ @@ -49278,14 +49107,14 @@ ], "license_file": "LICENSE" }, - "plotters-svg 0.3.7": { + "plotters-svg 0.3.5": { "name": "plotters-svg", - "version": "0.3.7", + "version": "0.3.5", "package_url": "https://github.com/plotters-rs/plotters.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/plotters-svg/0.3.7/download", - "sha256": "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670" + "url": "https://static.crates.io/crates/plotters-svg/0.3.5/download", + "sha256": "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" } }, "targets": [ @@ -49310,14 +49139,14 @@ "deps": { "common": [ { - "id": "plotters-backend 0.3.7", + "id": "plotters-backend 0.3.5", "target": "plotters_backend" } ], "selects": {} }, "edition": "2018", - "version": "0.3.7" + "version": "0.3.5" }, "license": "MIT", "license_ids": [ @@ -49361,7 +49190,7 @@ "target": "base64" }, { - "id": "candid 0.10.12", + "id": "candid 0.10.10", "target": "candid" }, { @@ -49377,11 +49206,11 @@ "target": "ic_transport_types" }, { - "id": "reqwest 0.12.12", + "id": "reqwest 0.12.9", "target": "reqwest" }, { - "id": "schemars 0.8.21", + "id": "schemars 0.8.16", "target": "schemars" }, { @@ -49397,7 +49226,7 @@ "target": "serde_cbor" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -49413,11 +49242,11 @@ "target": "strum" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -49460,14 +49289,14 @@ ], "license_file": "LICENSE" }, - "polling 3.7.4": { + "polling 3.7.3": { "name": "polling", - "version": "3.7.4", + "version": "3.7.3", "package_url": "https://github.com/smol-rs/polling", "repository": { "Http": { - "url": "https://static.crates.io/crates/polling/3.7.4/download", - "sha256": "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f" + "url": "https://static.crates.io/crates/polling/3.7.3/download", + "sha256": "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" } }, "targets": [ @@ -49503,7 +49332,7 @@ "selects": { "cfg(any(unix, target_os = \"fuchsia\", target_os = \"vxworks\"))": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -49519,7 +49348,7 @@ "target": "concurrent_queue" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -49530,7 +49359,7 @@ } }, "edition": "2021", - "version": "3.7.4" + "version": "3.7.3" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -49571,7 +49400,7 @@ "deps": { "common": [ { - "id": "opaque-debug 0.3.1", + "id": "opaque-debug 0.3.0", "target": "opaque_debug" }, { @@ -49582,7 +49411,7 @@ "selects": { "cfg(any(target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.16", + "id": "cpufeatures 0.2.9", "target": "cpufeatures" } ] @@ -49598,14 +49427,14 @@ ], "license_file": "LICENSE-APACHE" }, - "portable-atomic 1.10.0": { + "portable-atomic 1.4.1": { "name": "portable-atomic", - "version": "1.10.0", + "version": "1.4.1", "package_url": "https://github.com/taiki-e/portable-atomic", "repository": { "Http": { - "url": "https://static.crates.io/crates/portable-atomic/1.10.0/download", - "sha256": "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6" + "url": "https://static.crates.io/crates/portable-atomic/1.4.1/download", + "sha256": "edc55135a600d700580e406b4de0d59cb9ad25e344a3a091a97ded2622ec4ec6" } }, "targets": [ @@ -49642,22 +49471,21 @@ "crate_features": { "common": [ "default", - "fallback", - "require-cas" + "fallback" ], "selects": {} }, "deps": { "common": [ { - "id": "portable-atomic 1.10.0", + "id": "portable-atomic 1.4.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.10.0" + "version": "1.4.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -49674,14 +49502,14 @@ ], "license_file": "LICENSE-APACHE" }, - "postcard 1.1.1": { + "postcard 1.0.8": { "name": "postcard", - "version": "1.1.1", + "version": "1.0.8", "package_url": "https://github.com/jamesmunns/postcard", "repository": { "Http": { - "url": "https://static.crates.io/crates/postcard/1.1.1/download", - "sha256": "170a2601f67cc9dba8edd8c4870b15f71a6a2dc196daec8c83f72b59dff628a8" + "url": "https://static.crates.io/crates/postcard/1.0.8/download", + "sha256": "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8" } }, "targets": [ @@ -49706,6 +49534,7 @@ "crate_features": { "common": [ "alloc", + "embedded-io", "use-std" ], "selects": {} @@ -49716,6 +49545,10 @@ "id": "cobs 0.2.3", "target": "cobs" }, + { + "id": "embedded-io 0.4.0", + "target": "embedded_io" + }, { "id": "serde 1.0.217", "target": "serde" @@ -49723,15 +49556,15 @@ ], "selects": {} }, - "edition": "2021", - "version": "1.1.1" + "edition": "2018", + "version": "1.0.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null + "license_file": "LICENSE-APACHE" }, "powerfmt 0.2.0": { "name": "powerfmt", @@ -49834,7 +49667,7 @@ "target": "aligned_vec" }, { - "id": "backtrace 0.3.74", + "id": "backtrace 0.3.68", "target": "backtrace" }, { @@ -49850,15 +49683,15 @@ "target": "findshlibs" }, { - "id": "inferno 0.11.21", + "id": "inferno 0.11.19", "target": "inferno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -49866,11 +49699,11 @@ "target": "nix" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { @@ -49878,7 +49711,7 @@ "target": "build_script_build" }, { - "id": "prost 0.12.6", + "id": "prost 0.12.2", "target": "prost" }, { @@ -49886,15 +49719,15 @@ "target": "smallvec" }, { - "id": "symbolic-demangle 12.13.2", + "id": "symbolic-demangle 12.4.0", "target": "symbolic_demangle" }, { - "id": "tempfile 3.15.0", + "id": "tempfile 3.12.0", "target": "tempfile" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -49904,7 +49737,7 @@ "proc_macro_deps": { "common": [ { - "id": "prost-derive 0.12.6", + "id": "prost-derive 0.12.2", "target": "prost_derive" } ], @@ -49928,7 +49761,7 @@ "deps": { "common": [ { - "id": "prost-build 0.12.6", + "id": "prost-build 0.12.2", "target": "prost_build" }, { @@ -49951,14 +49784,14 @@ ], "license_file": "LICENSE" }, - "ppv-lite86 0.2.20": { + "ppv-lite86 0.2.17": { "name": "ppv-lite86", - "version": "0.2.20", + "version": "0.2.17", "package_url": "https://github.com/cryptocorrosion/cryptocorrosion", "repository": { "Http": { - "url": "https://static.crates.io/crates/ppv-lite86/0.2.20/download", - "sha256": "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" + "url": "https://static.crates.io/crates/ppv-lite86/0.2.17/download", + "sha256": "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" } }, "targets": [ @@ -49987,17 +49820,8 @@ ], "selects": {} }, - "deps": { - "common": [ - { - "id": "zerocopy 0.7.35", - "target": "zerocopy" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.20" + "edition": "2018", + "version": "0.2.17" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -50044,14 +49868,14 @@ ], "license_file": "LICENSE" }, - "predicates 3.1.3": { + "predicates 3.1.2": { "name": "predicates", - "version": "3.1.3", + "version": "3.1.2", "package_url": "https://github.com/assert-rs/predicates-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates/3.1.3/download", - "sha256": "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573" + "url": "https://static.crates.io/crates/predicates/3.1.2/download", + "sha256": "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97" } }, "targets": [ @@ -50087,7 +49911,7 @@ "deps": { "common": [ { - "id": "anstyle 1.0.10", + "id": "anstyle 1.0.8", "target": "anstyle" }, { @@ -50095,7 +49919,7 @@ "target": "difflib" }, { - "id": "float-cmp 0.10.0", + "id": "float-cmp 0.9.0", "target": "float_cmp" }, { @@ -50103,18 +49927,18 @@ "target": "normalize_line_endings" }, { - "id": "predicates-core 1.0.9", + "id": "predicates-core 1.0.6", "target": "predicates_core" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "selects": {} }, "edition": "2021", - "version": "3.1.3" + "version": "3.1.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50123,14 +49947,14 @@ ], "license_file": "LICENSE-APACHE" }, - "predicates-core 1.0.9": { + "predicates-core 1.0.6": { "name": "predicates-core", - "version": "1.0.9", + "version": "1.0.6", "package_url": "https://github.com/assert-rs/predicates-rs/tree/master/crates/core", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates-core/1.0.9/download", - "sha256": "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" + "url": "https://static.crates.io/crates/predicates-core/1.0.6/download", + "sha256": "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" } }, "targets": [ @@ -50153,7 +49977,7 @@ "**" ], "edition": "2021", - "version": "1.0.9" + "version": "1.0.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50162,14 +49986,14 @@ ], "license_file": "LICENSE-APACHE" }, - "predicates-tree 1.0.12": { + "predicates-tree 1.0.9": { "name": "predicates-tree", - "version": "1.0.12", + "version": "1.0.9", "package_url": "https://github.com/assert-rs/predicates-rs/tree/master/crates/tree", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates-tree/1.0.12/download", - "sha256": "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" + "url": "https://static.crates.io/crates/predicates-tree/1.0.9/download", + "sha256": "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" } }, "targets": [ @@ -50194,18 +50018,18 @@ "deps": { "common": [ { - "id": "predicates-core 1.0.9", + "id": "predicates-core 1.0.6", "target": "predicates_core" }, { - "id": "termtree 0.5.1", + "id": "termtree 0.4.1", "target": "termtree" } ], "selects": {} }, "edition": "2021", - "version": "1.0.12" + "version": "1.0.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50250,7 +50074,7 @@ "target": "arrayvec" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -50258,7 +50082,7 @@ "target": "typed_arena" }, { - "id": "unicode-segmentation 1.12.0", + "id": "unicode-segmentation 1.10.1", "target": "unicode_segmentation" } ], @@ -50273,14 +50097,14 @@ ], "license_file": "LICENSE" }, - "pretty 0.12.3": { + "pretty 0.12.1": { "name": "pretty", - "version": "0.12.3", + "version": "0.12.1", "package_url": "https://github.com/Marwes/pretty.rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/pretty/0.12.3/download", - "sha256": "b55c4d17d994b637e2f4daf6e5dc5d660d209d5642377d675d7a1c3ab69fa579" + "url": "https://static.crates.io/crates/pretty/0.12.1/download", + "sha256": "563c9d701c3a31dfffaaf9ce23507ba09cbe0b9125ba176d15e629b0235e9acc" } }, "targets": [ @@ -50313,14 +50137,14 @@ "target": "typed_arena" }, { - "id": "unicode-width 0.1.14", - "target": "unicode_width" + "id": "unicode-segmentation 1.10.1", + "target": "unicode_segmentation" } ], "selects": {} }, "edition": "2018", - "version": "0.12.3" + "version": "0.12.1" }, "license": "MIT", "license_ids": [ @@ -50379,14 +50203,14 @@ ], "license_file": null }, - "pretty_assertions 1.4.1": { + "pretty_assertions 1.4.0": { "name": "pretty_assertions", - "version": "1.4.1", + "version": "1.4.0", "package_url": "https://github.com/rust-pretty-assertions/rust-pretty-assertions", "repository": { "Http": { - "url": "https://static.crates.io/crates/pretty_assertions/1.4.1/download", - "sha256": "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" + "url": "https://static.crates.io/crates/pretty_assertions/1.4.0/download", + "sha256": "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" } }, "targets": [ @@ -50422,14 +50246,14 @@ "target": "diff" }, { - "id": "yansi 1.0.1", + "id": "yansi 0.5.1", "target": "yansi" } ], "selects": {} }, "edition": "2018", - "version": "1.4.1" + "version": "1.4.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50438,14 +50262,14 @@ ], "license_file": "LICENSE-APACHE" }, - "prettyplease 0.2.29": { + "prettyplease 0.2.15": { "name": "prettyplease", - "version": "0.2.29", + "version": "0.2.15", "package_url": "https://github.com/dtolnay/prettyplease", "repository": { "Http": { - "url": "https://static.crates.io/crates/prettyplease/0.2.29/download", - "sha256": "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac" + "url": "https://static.crates.io/crates/prettyplease/0.2.15/download", + "sha256": "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" } }, "targets": [ @@ -50482,22 +50306,22 @@ "deps": { "common": [ { - "id": "prettyplease 0.2.29", + "id": "prettyplease 0.2.15", "target": "build_script_build" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.2.29" + "version": "0.2.15" }, "build_script_attrs": { "compile_data_glob": [ @@ -50515,14 +50339,14 @@ ], "license_file": "LICENSE-APACHE" }, - "primeorder 0.13.6": { + "primeorder 0.13.2": { "name": "primeorder", - "version": "0.13.6", + "version": "0.13.2", "package_url": "https://github.com/RustCrypto/elliptic-curves/tree/master/primeorder", "repository": { "Http": { - "url": "https://static.crates.io/crates/primeorder/0.13.6/download", - "sha256": "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" + "url": "https://static.crates.io/crates/primeorder/0.13.2/download", + "sha256": "3c2fcef82c0ec6eefcc179b978446c399b3cdf73c392c35604e399eee6df1ee3" } }, "targets": [ @@ -50554,7 +50378,7 @@ "selects": {} }, "edition": "2021", - "version": "0.13.6" + "version": "0.13.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -50563,14 +50387,14 @@ ], "license_file": "LICENSE-APACHE" }, - "primitive-types 0.12.2": { + "primitive-types 0.12.1": { "name": "primitive-types", - "version": "0.12.2", + "version": "0.12.1", "package_url": "https://github.com/paritytech/parity-common", "repository": { "Http": { - "url": "https://static.crates.io/crates/primitive-types/0.12.2/download", - "sha256": "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2" + "url": "https://static.crates.io/crates/primitive-types/0.12.1/download", + "sha256": "9f3486ccba82358b11a77516035647c34ba167dfa53312630de83b12bd4f3d66" } }, "targets": [ @@ -50627,7 +50451,7 @@ "target": "impl_serde" }, { - "id": "scale-info 2.11.6", + "id": "scale-info 2.9.0", "target": "scale_info", "alias": "scale_info_crate" }, @@ -50639,7 +50463,7 @@ "selects": {} }, "edition": "2021", - "version": "0.12.2" + "version": "0.12.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -50648,14 +50472,14 @@ ], "license_file": null }, - "priority-queue 1.4.0": { + "priority-queue 1.3.2": { "name": "priority-queue", - "version": "1.4.0", + "version": "1.3.2", "package_url": "https://github.com/garro95/priority-queue", "repository": { "Http": { - "url": "https://static.crates.io/crates/priority-queue/1.4.0/download", - "sha256": "a0bda9164fe05bc9225752d54aae413343c36f684380005398a6a8fde95fe785" + "url": "https://static.crates.io/crates/priority-queue/1.3.2/download", + "sha256": "fff39edfcaec0d64e8d0da38564fad195d2d51b680940295fcc307366e101e61" } }, "targets": [ @@ -50702,7 +50526,7 @@ "target": "indexmap" }, { - "id": "priority-queue 1.4.0", + "id": "priority-queue 1.3.2", "target": "build_script_build" }, { @@ -50713,7 +50537,7 @@ "selects": {} }, "edition": "2018", - "version": "1.4.0" + "version": "1.3.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -50725,7 +50549,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -50739,6 +50563,58 @@ ], "license_file": null }, + "proc-macro-crate 1.3.1": { + "name": "proc-macro-crate", + "version": "1.3.1", + "package_url": "https://github.com/bkchr/proc-macro-crate", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/proc-macro-crate/1.3.1/download", + "sha256": "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" + } + }, + "targets": [ + { + "Library": { + "crate_name": "proc_macro_crate", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "proc_macro_crate", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "once_cell 1.19.0", + "target": "once_cell" + }, + { + "id": "toml_edit 0.19.14", + "target": "toml_edit" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "1.3.1" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "proc-macro-crate 3.2.0": { "name": "proc-macro-crate", "version": "3.2.0", @@ -50771,7 +50647,7 @@ "deps": { "common": [ { - "id": "toml_edit 0.22.22", + "id": "toml_edit 0.22.20", "target": "toml_edit" } ], @@ -50843,11 +50719,11 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -50879,7 +50755,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.5", + "id": "version_check 0.9.4", "target": "version_check" } ], @@ -50941,11 +50817,11 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" } ], @@ -50964,7 +50840,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.5", + "id": "version_check 0.9.4", "target": "version_check" } ], @@ -51046,14 +50922,14 @@ ], "license_file": "LICENSE-APACHE" }, - "proc-macro2 1.0.93": { + "proc-macro2 1.0.89": { "name": "proc-macro2", - "version": "1.0.93", + "version": "1.0.89", "package_url": "https://github.com/dtolnay/proc-macro2", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro2/1.0.93/download", - "sha256": "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" + "url": "https://static.crates.io/crates/proc-macro2/1.0.89/download", + "sha256": "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" } }, "targets": [ @@ -51097,18 +50973,18 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "build_script_build" }, { - "id": "unicode-ident 1.0.14", + "id": "unicode-ident 1.0.11", "target": "unicode_ident" } ], "selects": {} }, "edition": "2021", - "version": "1.0.93" + "version": "1.0.89" }, "build_script_attrs": { "compile_data_glob": [ @@ -51165,7 +51041,7 @@ "target": "byteorder" }, { - "id": "flate2 1.0.35", + "id": "flate2 1.0.31", "target": "flate2" }, { @@ -51173,11 +51049,11 @@ "target": "hex" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -51237,7 +51113,7 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -51245,7 +51121,7 @@ "target": "hex" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -51257,7 +51133,7 @@ "target": "procfs_core" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -51313,7 +51189,7 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -51395,11 +51271,11 @@ "target": "fnv" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -51407,7 +51283,7 @@ "target": "memchr" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { @@ -51419,7 +51295,7 @@ "target": "protobuf" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -51497,14 +51373,14 @@ ], "license_file": "LICENSE" }, - "prometheus-parse 0.2.5": { + "prometheus-parse 0.2.4": { "name": "prometheus-parse", - "version": "0.2.5", + "version": "0.2.4", "package_url": "https://github.com/ccakes/prometheus-parse-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/prometheus-parse/0.2.5/download", - "sha256": "811031bea65e5a401fb2e1f37d802cca6601e204ac463809a3189352d13b78a5" + "url": "https://static.crates.io/crates/prometheus-parse/0.2.4/download", + "sha256": "0c2aa5feb83bf4b2c8919eaf563f51dbab41183de73ba2353c0e03cd7b6bd892" } }, "targets": [ @@ -51529,26 +51405,26 @@ "deps": { "common": [ { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.10.5", "target": "itertools" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" } ], "selects": {} }, "edition": "2018", - "version": "0.2.5" + "version": "0.2.4" }, "license": "Apache-2.0", "license_ids": [ @@ -51556,14 +51432,14 @@ ], "license_file": "LICENSE" }, - "proptest 1.6.0": { + "proptest 1.5.0": { "name": "proptest", - "version": "1.6.0", + "version": "1.5.0", "package_url": "https://github.com/proptest-rs/proptest", "repository": { "Http": { - "url": "https://static.crates.io/crates/proptest/1.6.0/download", - "sha256": "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" + "url": "https://static.crates.io/crates/proptest/1.5.0/download", + "sha256": "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" } }, "targets": [ @@ -51602,19 +51478,19 @@ "deps": { "common": [ { - "id": "bit-set 0.8.0", + "id": "bit-set 0.5.3", "target": "bit_set" }, { - "id": "bit-vec 0.8.0", + "id": "bit-vec 0.6.3", "target": "bit_vec" }, { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -51642,7 +51518,7 @@ "target": "rusty_fork" }, { - "id": "tempfile 3.15.0", + "id": "tempfile 3.12.0", "target": "tempfile" }, { @@ -51653,7 +51529,7 @@ "selects": {} }, "edition": "2018", - "version": "1.6.0" + "version": "1.5.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -51662,14 +51538,14 @@ ], "license_file": "LICENSE-APACHE" }, - "proptest-derive 0.5.1": { + "proptest-derive 0.5.0": { "name": "proptest-derive", - "version": "0.5.1", + "version": "0.5.0", "package_url": "https://github.com/proptest-rs/proptest", "repository": { "Http": { - "url": "https://static.crates.io/crates/proptest-derive/0.5.1/download", - "sha256": "4ee1c9ac207483d5e7db4940700de86a9aae46ef90c48b57f99fe7edb8345e49" + "url": "https://static.crates.io/crates/proptest-derive/0.5.0/download", + "sha256": "6ff7ff745a347b87471d859a377a9a404361e7efc2a971d73424a6d183c0fc77" } }, "targets": [ @@ -51694,22 +51570,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.5.1" + "version": "0.5.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -51718,14 +51594,14 @@ ], "license_file": "LICENSE-APACHE" }, - "prost 0.12.6": { + "prost 0.12.2": { "name": "prost", - "version": "0.12.6", + "version": "0.12.2", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost/0.12.6/download", - "sha256": "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29" + "url": "https://static.crates.io/crates/prost/0.12.2/download", + "sha256": "5a5a410fc7882af66deb8d01d01737353cf3ad6204c408177ba494291a626312" } }, "targets": [ @@ -51750,53 +51626,10 @@ "crate_features": { "common": [ "default", - "derive", + "prost-derive", "std" ], - "selects": { - "aarch64-apple-darwin": [ - "prost-derive" - ], - "aarch64-pc-windows-msvc": [ - "prost-derive" - ], - "aarch64-unknown-linux-gnu": [ - "prost-derive" - ], - "aarch64-unknown-nixos-gnu": [ - "prost-derive" - ], - "arm-unknown-linux-gnueabi": [ - "prost-derive" - ], - "i686-pc-windows-msvc": [ - "prost-derive" - ], - "i686-unknown-linux-gnu": [ - "prost-derive" - ], - "powerpc-unknown-linux-gnu": [ - "prost-derive" - ], - "s390x-unknown-linux-gnu": [ - "prost-derive" - ], - "x86_64-apple-darwin": [ - "prost-derive" - ], - "x86_64-pc-windows-msvc": [ - "prost-derive" - ], - "x86_64-unknown-freebsd": [ - "prost-derive" - ], - "x86_64-unknown-linux-gnu": [ - "prost-derive" - ], - "x86_64-unknown-nixos-gnu": [ - "prost-derive" - ] - } + "selects": {} }, "deps": { "common": [ @@ -51811,28 +51644,28 @@ "proc_macro_deps": { "common": [ { - "id": "prost-derive 0.12.6", + "id": "prost-derive 0.12.2", "target": "prost_derive" } ], "selects": {} }, - "version": "0.12.6" + "version": "0.12.2" }, "license": "Apache-2.0", "license_ids": [ "Apache-2.0" ], - "license_file": null + "license_file": "LICENSE" }, - "prost 0.13.4": { + "prost 0.13.3": { "name": "prost", - "version": "0.13.4", + "version": "0.13.3", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost/0.13.4/download", - "sha256": "2c0fef6c4230e4ccf618a35c59d7ede15dea37de8427500f50aff708806e42ec" + "url": "https://static.crates.io/crates/prost/0.13.3/download", + "sha256": "7b0487d90e047de87f984913713b85c601c05609aad5b0df4b4573fbf69aa13f" } }, "targets": [ @@ -51876,13 +51709,121 @@ "proc_macro_deps": { "common": [ { - "id": "prost-derive 0.13.4", + "id": "prost-derive 0.13.3", "target": "prost_derive" } ], "selects": {} }, - "version": "0.13.4" + "version": "0.13.3" + }, + "license": "Apache-2.0", + "license_ids": [ + "Apache-2.0" + ], + "license_file": "LICENSE" + }, + "prost-build 0.12.2": { + "name": "prost-build", + "version": "0.12.2", + "package_url": "https://github.com/tokio-rs/prost", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/prost-build/0.12.2/download", + "sha256": "1fa3d084c8704911bfefb2771be2f9b6c5c0da7343a71e0021ee3c665cada738" + } + }, + "targets": [ + { + "Library": { + "crate_name": "prost_build", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "prost_build", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "format", + "prettyplease", + "syn" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "bytes 1.9.0", + "target": "bytes" + }, + { + "id": "heck 0.4.1", + "target": "heck" + }, + { + "id": "itertools 0.11.0", + "target": "itertools" + }, + { + "id": "log 0.4.20", + "target": "log" + }, + { + "id": "multimap 0.8.3", + "target": "multimap" + }, + { + "id": "once_cell 1.19.0", + "target": "once_cell" + }, + { + "id": "petgraph 0.6.3", + "target": "petgraph" + }, + { + "id": "prettyplease 0.2.15", + "target": "prettyplease" + }, + { + "id": "prost 0.12.2", + "target": "prost" + }, + { + "id": "prost-types 0.12.2", + "target": "prost_types" + }, + { + "id": "regex 1.11.0", + "target": "regex" + }, + { + "id": "syn 2.0.87", + "target": "syn" + }, + { + "id": "tempfile 3.12.0", + "target": "tempfile" + }, + { + "id": "which 4.4.0", + "target": "which" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.12.2" }, "license": "Apache-2.0", "license_ids": [ @@ -51890,14 +51831,14 @@ ], "license_file": "LICENSE" }, - "prost-build 0.12.6": { + "prost-build 0.13.3": { "name": "prost-build", - "version": "0.12.6", + "version": "0.13.3", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-build/0.12.6/download", - "sha256": "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4" + "url": "https://static.crates.io/crates/prost-build/0.13.3/download", + "sha256": "0c1318b19085f08681016926435853bbf7858f9c082d0999b80550ff5d9abe15" } }, "targets": [ @@ -51937,54 +51878,54 @@ "target": "heck" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.12.0", "target": "itertools" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "multimap 0.10.0", + "id": "multimap 0.8.3", "target": "multimap" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "petgraph 0.6.5", + "id": "petgraph 0.6.3", "target": "petgraph" }, { - "id": "prettyplease 0.2.29", + "id": "prettyplease 0.2.15", "target": "prettyplease" }, { - "id": "prost 0.12.6", + "id": "prost 0.13.3", "target": "prost" }, { - "id": "prost-types 0.12.6", + "id": "prost-types 0.13.3", "target": "prost_types" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" }, { - "id": "tempfile 3.15.0", + "id": "tempfile 3.12.0", "target": "tempfile" } ], "selects": {} }, "edition": "2021", - "version": "0.12.6" + "version": "0.13.3" }, "license": "Apache-2.0", "license_ids": [ @@ -51992,112 +51933,14 @@ ], "license_file": "LICENSE" }, - "prost-build 0.13.4": { - "name": "prost-build", - "version": "0.13.4", - "package_url": "https://github.com/tokio-rs/prost", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/prost-build/0.13.4/download", - "sha256": "d0f3e5beed80eb580c68e2c600937ac2c4eedabdfd5ef1e5b7ea4f3fba84497b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "prost_build", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "prost_build", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "format" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "heck 0.5.0", - "target": "heck" - }, - { - "id": "itertools 0.13.0", - "target": "itertools" - }, - { - "id": "log 0.4.25", - "target": "log" - }, - { - "id": "multimap 0.10.0", - "target": "multimap" - }, - { - "id": "once_cell 1.20.2", - "target": "once_cell" - }, - { - "id": "petgraph 0.6.5", - "target": "petgraph" - }, - { - "id": "prettyplease 0.2.29", - "target": "prettyplease" - }, - { - "id": "prost 0.13.4", - "target": "prost" - }, - { - "id": "prost-types 0.13.4", - "target": "prost_types" - }, - { - "id": "regex 1.11.1", - "target": "regex" - }, - { - "id": "syn 2.0.96", - "target": "syn" - }, - { - "id": "tempfile 3.15.0", - "target": "tempfile" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.13.4" - }, - "license": "Apache-2.0", - "license_ids": [ - "Apache-2.0" - ], - "license_file": "LICENSE" - }, - "prost-derive 0.12.6": { + "prost-derive 0.12.2": { "name": "prost-derive", - "version": "0.12.6", + "version": "0.12.2", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-derive/0.12.6/download", - "sha256": "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" + "url": "https://static.crates.io/crates/prost-derive/0.12.2/download", + "sha256": "065717a5dfaca4a83d2fe57db3487b311365200000551d7a364e715dbf4346bc" } }, "targets": [ @@ -52122,30 +51965,30 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.11.0", "target": "itertools" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.12.6" + "version": "0.12.2" }, "license": "Apache-2.0", "license_ids": [ @@ -52153,14 +51996,14 @@ ], "license_file": "LICENSE" }, - "prost-derive 0.13.4": { + "prost-derive 0.13.3": { "name": "prost-derive", - "version": "0.13.4", + "version": "0.13.3", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-derive/0.13.4/download", - "sha256": "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3" + "url": "https://static.crates.io/crates/prost-derive/0.13.3/download", + "sha256": "e9552f850d5f0964a4e4d0bf306459ac29323ddfbae05e35a7c0d35cb0803cc5" } }, "targets": [ @@ -52185,30 +52028,30 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "itertools 0.13.0", + "id": "itertools 0.12.0", "target": "itertools" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.13.4" + "version": "0.13.3" }, "license": "Apache-2.0", "license_ids": [ @@ -52216,14 +52059,14 @@ ], "license_file": "LICENSE" }, - "prost-types 0.12.6": { + "prost-types 0.12.2": { "name": "prost-types", - "version": "0.12.6", + "version": "0.12.2", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-types/0.12.6/download", - "sha256": "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0" + "url": "https://static.crates.io/crates/prost-types/0.12.2/download", + "sha256": "8339f32236f590281e2f6368276441394fcd1b2133b549cc895d0ae80f2f9a52" } }, "targets": [ @@ -52248,14 +52091,14 @@ "deps": { "common": [ { - "id": "prost 0.12.6", + "id": "prost 0.12.2", "target": "prost" } ], "selects": {} }, "edition": "2021", - "version": "0.12.6" + "version": "0.12.2" }, "license": "Apache-2.0", "license_ids": [ @@ -52263,14 +52106,14 @@ ], "license_file": "LICENSE" }, - "prost-types 0.13.4": { + "prost-types 0.13.3": { "name": "prost-types", - "version": "0.13.4", + "version": "0.13.3", "package_url": "https://github.com/tokio-rs/prost", "repository": { "Http": { - "url": "https://static.crates.io/crates/prost-types/0.13.4/download", - "sha256": "cc2f1e56baa61e93533aebc21af4d2134b70f66275e0fcdf3cbe43d77ff7e8fc" + "url": "https://static.crates.io/crates/prost-types/0.13.3/download", + "sha256": "4759aa0d3a6232fb8dbdb97b61de2c20047c68aca932c7ed76da9d788508d670" } }, "targets": [ @@ -52302,14 +52145,14 @@ "deps": { "common": [ { - "id": "prost 0.13.4", + "id": "prost 0.13.3", "target": "prost" } ], "selects": {} }, "edition": "2021", - "version": "0.13.4" + "version": "0.13.3" }, "license": "Apache-2.0", "license_ids": [ @@ -52423,14 +52266,14 @@ ], "license_file": "LICENSE" }, - "psm 0.1.24": { + "psm 0.1.21": { "name": "psm", - "version": "0.1.24", + "version": "0.1.21", "package_url": "https://github.com/rust-lang/stacker/", "repository": { "Http": { - "url": "https://static.crates.io/crates/psm/0.1.24/download", - "sha256": "200b9ff220857e53e184257720a14553b2f4aa02577d2ed9842d45d4b9654810" + "url": "https://static.crates.io/crates/psm/0.1.21/download", + "sha256": "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" } }, "targets": [ @@ -52467,14 +52310,14 @@ "deps": { "common": [ { - "id": "psm 0.1.24", + "id": "psm 0.1.21", "target": "build_script_build" } ], "selects": {} }, "edition": "2015", - "version": "0.1.24" + "version": "0.1.21" }, "build_script_attrs": { "compile_data_glob": [ @@ -52486,7 +52329,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -52579,11 +52422,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -52602,14 +52445,14 @@ ], "license_file": "LICENSE" }, - "publicsuffix 2.3.0": { + "publicsuffix 2.2.3": { "name": "publicsuffix", - "version": "2.3.0", + "version": "2.2.3", "package_url": "https://github.com/rushmorem/publicsuffix", "repository": { "Http": { - "url": "https://static.crates.io/crates/publicsuffix/2.3.0/download", - "sha256": "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf" + "url": "https://static.crates.io/crates/publicsuffix/2.2.3/download", + "sha256": "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457" } }, "targets": [ @@ -52642,7 +52485,7 @@ "deps": { "common": [ { - "id": "idna 1.0.3", + "id": "idna 0.3.0", "target": "idna" }, { @@ -52653,7 +52496,7 @@ "selects": {} }, "edition": "2018", - "version": "2.3.0" + "version": "2.2.3" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -52662,14 +52505,14 @@ ], "license_file": "LICENSE" }, - "pulley-interpreter 28.0.1": { + "pulley-interpreter 28.0.0": { "name": "pulley-interpreter", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime/tree/main/pulley", "repository": { "Http": { - "url": "https://static.crates.io/crates/pulley-interpreter/28.0.1/download", - "sha256": "8324e531de91a3c25021a30fb7862d39cc516b61fbb801176acb5ff279ea887b" + "url": "https://static.crates.io/crates/pulley-interpreter/28.0.0/download", + "sha256": "403a1a95f4c18a45c86c7bff13df00347afd0abcbf2e54af273c837339ffcf77" } }, "targets": [ @@ -52694,11 +52537,11 @@ "deps": { "common": [ { - "id": "cranelift-bitset 0.115.1", + "id": "cranelift-bitset 0.115.0", "target": "cranelift_bitset" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -52709,7 +52552,7 @@ "selects": {} }, "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -52717,14 +52560,121 @@ ], "license_file": null }, - "quanta 0.12.5": { + "quanta 0.11.1": { + "name": "quanta", + "version": "0.11.1", + "package_url": "https://github.com/metrics-rs/quanta", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/quanta/0.11.1/download", + "sha256": "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab" + } + }, + "targets": [ + { + "Library": { + "crate_name": "quanta", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "quanta", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "flaky_tests" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "crossbeam-utils 0.8.19", + "target": "crossbeam_utils" + }, + { + "id": "once_cell 1.19.0", + "target": "once_cell" + } + ], + "selects": { + "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [ + { + "id": "web-sys 0.3.64", + "target": "web_sys" + } + ], + "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\"))": [ + { + "id": "wasi 0.11.0+wasi-snapshot-preview1", + "target": "wasi" + } + ], + "cfg(not(any(target_os = \"macos\", target_os = \"ios\", target_os = \"windows\", target_arch = \"wasm32\")))": [ + { + "id": "libc 0.2.158", + "target": "libc" + } + ], + "cfg(target_arch = \"x86\")": [ + { + "id": "raw-cpuid 10.7.0", + "target": "raw_cpuid" + } + ], + "cfg(target_arch = \"x86_64\")": [ + { + "id": "raw-cpuid 10.7.0", + "target": "raw_cpuid" + } + ], + "cfg(target_os = \"ios\")": [ + { + "id": "mach2 0.4.2", + "target": "mach2" + } + ], + "cfg(target_os = \"macos\")": [ + { + "id": "mach2 0.4.2", + "target": "mach2" + } + ], + "cfg(target_os = \"windows\")": [ + { + "id": "winapi 0.3.9", + "target": "winapi" + } + ] + } + }, + "edition": "2021", + "version": "0.11.1" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, + "quanta 0.12.3": { "name": "quanta", - "version": "0.12.5", + "version": "0.12.3", "package_url": "https://github.com/metrics-rs/quanta", "repository": { "Http": { - "url": "https://static.crates.io/crates/quanta/0.12.5/download", - "sha256": "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e" + "url": "https://static.crates.io/crates/quanta/0.12.3/download", + "sha256": "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5" } }, "targets": [ @@ -52756,18 +52706,18 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "selects": { "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [ { - "id": "web-sys 0.3.77", + "id": "web-sys 0.3.64", "target": "web_sys" } ], @@ -52779,19 +52729,19 @@ ], "cfg(not(any(target_os = \"windows\", target_arch = \"wasm32\")))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(target_arch = \"x86\")": [ { - "id": "raw-cpuid 11.3.0", + "id": "raw-cpuid 11.1.0", "target": "raw_cpuid" } ], "cfg(target_arch = \"x86_64\")": [ { - "id": "raw-cpuid 11.3.0", + "id": "raw-cpuid 11.1.0", "target": "raw_cpuid" } ], @@ -52804,7 +52754,7 @@ } }, "edition": "2021", - "version": "0.12.5" + "version": "0.12.3" }, "license": "MIT", "license_ids": [ @@ -52898,14 +52848,14 @@ ], "license_file": "LICENSE-MIT.md" }, - "quick-xml 0.37.2": { + "quick-xml 0.37.1": { "name": "quick-xml", - "version": "0.37.2", + "version": "0.37.1", "package_url": "https://github.com/tafia/quick-xml", "repository": { "Http": { - "url": "https://static.crates.io/crates/quick-xml/0.37.2/download", - "sha256": "165859e9e55f79d67b96c5d96f4e88b6f2695a1972849c15a6a3f5c59fc2c003" + "url": "https://static.crates.io/crates/quick-xml/0.37.1/download", + "sha256": "f22f29bdff3987b4d8632ef95fd6424ec7e4e0a57e2f4fc63e489e75357f6a03" } }, "targets": [ @@ -52937,7 +52887,7 @@ "selects": {} }, "edition": "2021", - "version": "0.37.2" + "version": "0.37.1" }, "license": "MIT", "license_ids": [ @@ -52991,7 +52941,7 @@ "target": "env_logger" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -53011,14 +52961,14 @@ ], "license_file": "LICENSE-MIT" }, - "quinn 0.11.6": { + "quinn 0.11.5": { "name": "quinn", - "version": "0.11.6", + "version": "0.11.5", "package_url": "https://github.com/quinn-rs/quinn", "repository": { "Http": { - "url": "https://static.crates.io/crates/quinn/0.11.6/download", - "sha256": "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef" + "url": "https://static.crates.io/crates/quinn/0.11.5/download", + "sha256": "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684" } }, "targets": [ @@ -53045,8 +52995,7 @@ "log", "ring", "runtime-tokio", - "rustls", - "rustls-ring" + "rustls" ], "selects": {} }, @@ -53057,37 +53006,37 @@ "target": "bytes" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "quinn-proto 0.11.9", + "id": "quinn-proto 0.11.7", "target": "quinn_proto", "alias": "proto" }, { - "id": "quinn-udp 0.5.9", + "id": "quinn-udp 0.5.5", "target": "quinn_udp", "alias": "udp" }, { - "id": "rustc-hash 2.1.0", + "id": "rustc-hash 2.0.0", "target": "rustc_hash" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -53098,7 +53047,7 @@ "selects": {} }, "edition": "2021", - "version": "0.11.6" + "version": "0.11.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53107,14 +53056,14 @@ ], "license_file": "LICENSE-APACHE" }, - "quinn-proto 0.11.9": { + "quinn-proto 0.11.7": { "name": "quinn-proto", - "version": "0.11.9", + "version": "0.11.7", "package_url": "https://github.com/quinn-rs/quinn", "repository": { "Http": { - "url": "https://static.crates.io/crates/quinn-proto/0.11.9/download", - "sha256": "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d" + "url": "https://static.crates.io/crates/quinn-proto/0.11.7/download", + "sha256": "ea0a9b3a42929fad8a7c3de7f86ce0814cfa893328157672680e9fb1145549c5" } }, "targets": [ @@ -53140,7 +53089,7 @@ "common": [ "log", "ring", - "rustls-ring" + "rustls" ], "selects": {} }, @@ -53155,27 +53104,27 @@ "target": "rand" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { - "id": "rustc-hash 2.1.0", + "id": "rustc-hash 2.0.0", "target": "rustc_hash" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "slab 0.4.9", + "id": "slab 0.4.8", "target": "slab" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tinyvec 1.8.1", + "id": "tinyvec 1.6.0", "target": "tinyvec" }, { @@ -53183,25 +53132,10 @@ "target": "tracing" } ], - "selects": { - "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - }, - { - "id": "rustls-pki-types 1.10.1", - "target": "rustls_pki_types" - }, - { - "id": "web-time 1.1.0", - "target": "web_time" - } - ] - } + "selects": {} }, "edition": "2021", - "version": "0.11.9" + "version": "0.11.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53210,14 +53144,14 @@ ], "license_file": "LICENSE-APACHE" }, - "quinn-udp 0.5.9": { + "quinn-udp 0.5.5": { "name": "quinn-udp", - "version": "0.5.9", + "version": "0.5.5", "package_url": "https://github.com/quinn-rs/quinn", "repository": { "Http": { - "url": "https://static.crates.io/crates/quinn-udp/0.5.9/download", - "sha256": "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904" + "url": "https://static.crates.io/crates/quinn-udp/0.5.5/download", + "sha256": "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b" } }, "targets": [ @@ -53232,18 +53166,6 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], "library_target_name": "quinn_udp", @@ -53262,15 +53184,11 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "quinn-udp 0.5.9", - "target": "build_script_build" - }, - { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { @@ -53281,7 +53199,7 @@ "selects": { "cfg(windows)": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -53292,24 +53210,7 @@ } }, "edition": "2021", - "version": "0.5.9" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cfg_aliases 0.2.1", - "target": "cfg_aliases" - } - ], - "selects": {} - } + "version": "0.5.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53318,14 +53219,14 @@ ], "license_file": "LICENSE-APACHE" }, - "quote 1.0.38": { + "quote 1.0.37": { "name": "quote", - "version": "1.0.38", + "version": "1.0.37", "package_url": "https://github.com/dtolnay/quote", "repository": { "Http": { - "url": "https://static.crates.io/crates/quote/1.0.38/download", - "sha256": "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" + "url": "https://static.crates.io/crates/quote/1.0.37/download", + "sha256": "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" } }, "targets": [ @@ -53357,14 +53258,14 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" } ], "selects": {} }, "edition": "2018", - "version": "1.0.38" + "version": "1.0.37" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53531,7 +53432,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -53626,145 +53527,145 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-apple-ios": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-apple-ios-sim": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-unknown-fuchsia": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "arm-unknown-linux-gnueabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "armv7-linux-androideabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-unknown-freebsd": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "powerpc-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "s390x-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-apple-ios": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-unknown-freebsd": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-unknown-fuchsia": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] @@ -53900,7 +53801,7 @@ "deps": { "common": [ { - "id": "ppv-lite86 0.2.20", + "id": "ppv-lite86 0.2.17", "target": "ppv_lite86" }, { @@ -54054,7 +53955,7 @@ "deps": { "common": [ { - "id": "getrandom 0.2.15", + "id": "getrandom 0.2.10", "target": "getrandom" } ], @@ -54271,7 +54172,7 @@ "selects": { "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -54350,7 +54251,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -54597,14 +54498,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rangemap 1.5.1": { + "rangemap 1.4.0": { "name": "rangemap", - "version": "1.5.1", + "version": "1.4.0", "package_url": "https://github.com/jeffparsons/rangemap", "repository": { "Http": { - "url": "https://static.crates.io/crates/rangemap/1.5.1/download", - "sha256": "f60fcc7d6849342eff22c4350c8b9a989ee8ceabc4b481253e8946b9fe83d684" + "url": "https://static.crates.io/crates/rangemap/1.4.0/download", + "sha256": "977b1e897f9d764566891689e642653e5ed90c6895106acd005eb4c1d0203991" } }, "targets": [ @@ -54627,7 +54528,7 @@ "**" ], "edition": "2018", - "version": "1.5.1" + "version": "1.4.0" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -54672,11 +54573,11 @@ "target": "clocksource" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -54692,14 +54593,61 @@ ], "license_file": "LICENSE-APACHE" }, - "raw-cpuid 11.3.0": { + "raw-cpuid 10.7.0": { + "name": "raw-cpuid", + "version": "10.7.0", + "package_url": "https://github.com/gz/rust-cpuid", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/raw-cpuid/10.7.0/download", + "sha256": "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" + } + }, + "targets": [ + { + "Library": { + "crate_name": "raw_cpuid", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "raw_cpuid", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "bitflags 1.3.2", + "target": "bitflags" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "10.7.0" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE.md" + }, + "raw-cpuid 11.1.0": { "name": "raw-cpuid", - "version": "11.3.0", + "version": "11.1.0", "package_url": "https://github.com/gz/rust-cpuid", "repository": { "Http": { - "url": "https://static.crates.io/crates/raw-cpuid/11.3.0/download", - "sha256": "c6928fa44c097620b706542d428957635951bade7143269085389d42c8a4927e" + "url": "https://static.crates.io/crates/raw-cpuid/11.1.0/download", + "sha256": "cb9ee317cfe3fbd54b36a511efc1edd42e216903c9cd575e686dd68a2ba90d8d" } }, "targets": [ @@ -54724,14 +54672,14 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" } ], "selects": {} }, "edition": "2018", - "version": "11.3.0" + "version": "11.1.0" }, "license": "MIT", "license_ids": [ @@ -54771,7 +54719,7 @@ "deps": { "common": [ { - "id": "either 1.13.0", + "id": "either 1.8.1", "target": "either" }, { @@ -54835,11 +54783,11 @@ "deps": { "common": [ { - "id": "crossbeam-deque 0.8.6", + "id": "crossbeam-deque 0.8.5", "target": "crossbeam_deque" }, { - "id": "crossbeam-utils 0.8.21", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" }, { @@ -54868,14 +54816,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rcgen 0.13.2": { + "rcgen 0.13.1": { "name": "rcgen", - "version": "0.13.2", + "version": "0.13.1", "package_url": "https://github.com/rustls/rcgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/rcgen/0.13.2/download", - "sha256": "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" + "url": "https://static.crates.io/crates/rcgen/0.13.1/download", + "sha256": "54077e1872c46788540de1ea3d7f4ccb1983d12f9aa909b234468676c1a36779" } }, "targets": [ @@ -54910,20 +54858,20 @@ "deps": { "common": [ { - "id": "pem 3.0.4", + "id": "pem 3.0.3", "target": "pem" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" }, { @@ -54938,7 +54886,7 @@ "selects": {} }, "edition": "2021", - "version": "0.13.2" + "version": "0.13.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -55041,14 +54989,14 @@ ], "license_file": "LICENSE" }, - "redox_syscall 0.5.8": { + "redox_syscall 0.3.5": { "name": "redox_syscall", - "version": "0.5.8", + "version": "0.3.5", "package_url": "https://gitlab.redox-os.org/redox-os/syscall", "repository": { "Http": { - "url": "https://static.crates.io/crates/redox_syscall/0.5.8/download", - "sha256": "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" + "url": "https://static.crates.io/crates/redox_syscall/0.3.5/download", + "sha256": "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" } }, "targets": [ @@ -55073,14 +55021,14 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 1.3.2", "target": "bitflags" } ], "selects": {} }, - "edition": "2021", - "version": "0.5.8" + "edition": "2018", + "version": "0.3.5" }, "license": "MIT", "license_ids": [ @@ -55088,14 +55036,14 @@ ], "license_file": "LICENSE" }, - "redox_users 0.4.6": { + "redox_users 0.4.3": { "name": "redox_users", - "version": "0.4.6", + "version": "0.4.3", "package_url": "https://gitlab.redox-os.org/redox-os/users", "repository": { "Http": { - "url": "https://static.crates.io/crates/redox_users/0.4.6/download", - "sha256": "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" + "url": "https://static.crates.io/crates/redox_users/0.4.3/download", + "sha256": "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" } }, "targets": [ @@ -55120,22 +55068,22 @@ "deps": { "common": [ { - "id": "getrandom 0.2.15", + "id": "getrandom 0.2.10", "target": "getrandom" }, { - "id": "libredox 0.1.3", - "target": "libredox" + "id": "redox_syscall 0.2.16", + "target": "syscall" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], "selects": {} }, - "edition": "2021", - "version": "0.4.6" + "edition": "2018", + "version": "0.4.3" }, "license": "MIT", "license_ids": [ @@ -55195,11 +55143,11 @@ "target": "hashbrown" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "rustc-hash 2.1.0", + "id": "rustc-hash 2.0.0", "target": "rustc_hash" }, { @@ -55218,14 +55166,14 @@ ], "license_file": "LICENSE" }, - "regex 1.11.1": { + "regex 1.11.0": { "name": "regex", - "version": "1.11.1", + "version": "1.11.0", "package_url": "https://github.com/rust-lang/regex", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex/1.11.1/download", - "sha256": "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" + "url": "https://static.crates.io/crates/regex/1.11.0/download", + "sha256": "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" } }, "targets": [ @@ -55272,7 +55220,7 @@ "deps": { "common": [ { - "id": "aho-corasick 1.1.3", + "id": "aho-corasick 1.0.2", "target": "aho_corasick" }, { @@ -55280,7 +55228,7 @@ "target": "memchr" }, { - "id": "regex-automata 0.4.9", + "id": "regex-automata 0.4.8", "target": "regex_automata" }, { @@ -55291,7 +55239,7 @@ "selects": {} }, "edition": "2021", - "version": "1.11.1" + "version": "1.11.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -55356,14 +55304,59 @@ ], "license_file": "LICENSE-MIT" }, - "regex-automata 0.4.9": { + "regex-automata 0.3.3": { "name": "regex-automata", - "version": "0.4.9", + "version": "0.3.3", + "package_url": "https://github.com/rust-lang/regex/tree/master/regex-automata", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/regex-automata/0.3.3/download", + "sha256": "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310" + } + }, + "targets": [ + { + "Library": { + "crate_name": "regex_automata", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "regex_automata", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "dfa-search" + ], + "selects": {} + }, + "edition": "2021", + "version": "0.3.3" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "regex-automata 0.4.8": { + "name": "regex-automata", + "version": "0.4.8", "package_url": "https://github.com/rust-lang/regex/tree/master/regex-automata", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex-automata/0.4.9/download", - "sha256": "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" + "url": "https://static.crates.io/crates/regex-automata/0.4.8/download", + "sha256": "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" } }, "targets": [ @@ -55389,7 +55382,6 @@ "common": [ "alloc", "dfa-onepass", - "dfa-search", "hybrid", "meta", "nfa-backtrack", @@ -55411,55 +55403,12 @@ "unicode-segment", "unicode-word-boundary" ], - "selects": { - "aarch64-apple-darwin": [ - "perf" - ], - "aarch64-pc-windows-msvc": [ - "perf" - ], - "aarch64-unknown-linux-gnu": [ - "perf" - ], - "aarch64-unknown-nixos-gnu": [ - "perf" - ], - "arm-unknown-linux-gnueabi": [ - "perf" - ], - "i686-pc-windows-msvc": [ - "perf" - ], - "i686-unknown-linux-gnu": [ - "perf" - ], - "powerpc-unknown-linux-gnu": [ - "perf" - ], - "s390x-unknown-linux-gnu": [ - "perf" - ], - "x86_64-apple-darwin": [ - "perf" - ], - "x86_64-pc-windows-msvc": [ - "perf" - ], - "x86_64-unknown-freebsd": [ - "perf" - ], - "x86_64-unknown-linux-gnu": [ - "perf" - ], - "x86_64-unknown-nixos-gnu": [ - "perf" - ] - } + "selects": {} }, "deps": { "common": [ { - "id": "aho-corasick 1.1.3", + "id": "aho-corasick 1.0.2", "target": "aho_corasick" }, { @@ -55474,7 +55423,7 @@ "selects": {} }, "edition": "2021", - "version": "0.4.9" + "version": "0.4.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -55583,14 +55532,14 @@ ], "license_file": "LICENSE-APACHE" }, - "regex-syntax 0.7.5": { + "regex-syntax 0.7.4": { "name": "regex-syntax", - "version": "0.7.5", + "version": "0.7.4", "package_url": "https://github.com/rust-lang/regex/tree/master/regex-syntax", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex-syntax/0.7.5/download", - "sha256": "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" + "url": "https://static.crates.io/crates/regex-syntax/0.7.4/download", + "sha256": "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" } }, "targets": [ @@ -55628,7 +55577,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.5" + "version": "0.7.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -55736,14 +55685,14 @@ ], "license_file": null }, - "rend 0.4.2": { + "rend 0.4.0": { "name": "rend", - "version": "0.4.2", + "version": "0.4.0", "package_url": "https://github.com/djkoloski/rend", "repository": { "Http": { - "url": "https://static.crates.io/crates/rend/0.4.2/download", - "sha256": "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" + "url": "https://static.crates.io/crates/rend/0.4.0/download", + "sha256": "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab" } }, "targets": [ @@ -55780,14 +55729,14 @@ "deps": { "common": [ { - "id": "rend 0.4.2", + "id": "rend 0.4.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.4.2" + "version": "0.4.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -55856,7 +55805,7 @@ "deps": { "common": [ { - "id": "base64 0.21.7", + "id": "base64 0.21.6", "target": "base64" }, { @@ -55880,7 +55829,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -55896,14 +55845,14 @@ "target": "tower_service" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -55915,7 +55864,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -55927,13 +55876,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "aarch64-apple-ios": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -55945,7 +55894,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -55957,13 +55906,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "aarch64-apple-ios-sim": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -55975,7 +55924,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -55987,13 +55936,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "aarch64-linux-android": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56005,7 +55954,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56017,13 +55966,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "aarch64-pc-windows-msvc": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56035,7 +55984,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56047,13 +55996,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "aarch64-unknown-fuchsia": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56065,7 +56014,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56077,13 +56026,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "aarch64-unknown-linux-gnu": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56095,7 +56044,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56107,13 +56056,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56125,7 +56074,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56137,13 +56086,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56155,7 +56104,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56167,13 +56116,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "arm-unknown-linux-gnueabi": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56185,7 +56134,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56197,13 +56146,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "armv7-linux-androideabi": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56215,7 +56164,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56227,13 +56176,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56245,7 +56194,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56257,13 +56206,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "cfg(not(target_arch = \"wasm32\"))": [ { - "id": "encoding_rs 0.8.35", + "id": "encoding_rs 0.8.32", "target": "encoding_rs" }, { @@ -56275,7 +56224,7 @@ "target": "http_body" }, { - "id": "hyper 0.14.32", + "id": "hyper 0.14.27", "target": "hyper" }, { @@ -56283,7 +56232,7 @@ "target": "ipnet" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -56291,7 +56240,7 @@ "target": "mime" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -56299,29 +56248,29 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" }, { - "id": "wasm-bindgen-futures 0.4.50", + "id": "wasm-bindgen-futures 0.4.37", "target": "wasm_bindgen_futures" }, { - "id": "web-sys 0.3.77", + "id": "web-sys 0.3.64", "target": "web_sys" } ], @@ -56339,7 +56288,7 @@ ], "i686-apple-darwin": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56351,7 +56300,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56363,13 +56312,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "i686-linux-android": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56381,7 +56330,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56393,13 +56342,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "i686-pc-windows-msvc": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56411,7 +56360,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56423,13 +56372,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "i686-unknown-freebsd": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56441,7 +56390,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56453,13 +56402,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "i686-unknown-linux-gnu": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56471,7 +56420,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56483,13 +56432,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "powerpc-unknown-linux-gnu": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56501,7 +56450,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56513,13 +56462,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "riscv32imc-unknown-none-elf": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56531,7 +56480,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56543,13 +56492,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "riscv64gc-unknown-none-elf": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56561,7 +56510,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56573,13 +56522,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "s390x-unknown-linux-gnu": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56591,7 +56540,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56603,13 +56552,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "thumbv7em-none-eabi": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56621,7 +56570,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56633,13 +56582,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "thumbv8m.main-none-eabi": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56651,7 +56600,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56663,13 +56612,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-apple-darwin": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56681,7 +56630,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56693,13 +56642,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-apple-ios": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56711,7 +56660,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56723,13 +56672,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-linux-android": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56741,7 +56690,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56753,13 +56702,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-pc-windows-msvc": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56771,7 +56720,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56783,13 +56732,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-unknown-freebsd": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56801,7 +56750,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56813,13 +56762,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-unknown-fuchsia": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56831,7 +56780,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56843,13 +56792,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-unknown-linux-gnu": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56861,7 +56810,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56873,13 +56822,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56891,7 +56840,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56903,13 +56852,13 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ], "x86_64-unknown-none": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { @@ -56921,7 +56870,7 @@ "target": "rustls" }, { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" }, { @@ -56933,7 +56882,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.25.4", + "id": "webpki-roots 0.25.2", "target": "webpki_roots" } ] @@ -56949,14 +56898,14 @@ ], "license_file": "LICENSE-APACHE" }, - "reqwest 0.12.12": { + "reqwest 0.12.9": { "name": "reqwest", - "version": "0.12.12", + "version": "0.12.9", "package_url": "https://github.com/seanmonstar/reqwest", "repository": { "Http": { - "url": "https://static.crates.io/crates/reqwest/0.12.12/download", - "sha256": "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" + "url": "https://static.crates.io/crates/reqwest/0.12.9/download", + "sha256": "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" } }, "targets": [ @@ -57022,7 +56971,7 @@ "target": "http" }, { - "id": "mime_guess 2.0.5", + "id": "mime_guess 2.0.4", "target": "mime_guess" }, { @@ -57030,7 +56979,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -57038,7 +56987,7 @@ "target": "serde_urlencoded" }, { - "id": "sync_wrapper 1.0.2", + "id": "sync_wrapper 1.0.1", "target": "sync_wrapper" }, { @@ -57046,7 +56995,7 @@ "target": "tower_service" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" } ], @@ -57057,23 +57006,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57081,11 +57030,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57097,7 +57046,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57107,23 +57056,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57131,11 +57080,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57147,7 +57096,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57157,23 +57106,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57181,11 +57130,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57197,7 +57146,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57207,23 +57156,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57231,11 +57180,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57247,7 +57196,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57257,23 +57206,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57281,11 +57230,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57297,7 +57246,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57307,23 +57256,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57331,11 +57280,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57347,7 +57296,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57357,23 +57306,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57381,11 +57330,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57397,7 +57346,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57407,23 +57356,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57431,11 +57380,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57447,7 +57396,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57457,23 +57406,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57481,11 +57430,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57497,7 +57446,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57507,23 +57456,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57531,11 +57480,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57547,7 +57496,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57557,23 +57506,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57581,11 +57530,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57597,7 +57546,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57607,23 +57556,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57631,11 +57580,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57647,7 +57596,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57661,7 +57610,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { @@ -57673,7 +57622,7 @@ "target": "ipnet" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -57681,7 +57630,7 @@ "target": "mime" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -57689,33 +57638,29 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" - }, - { - "id": "tower 0.5.2", - "target": "tower" } ], "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" }, { - "id": "wasm-bindgen-futures 0.4.50", + "id": "wasm-bindgen-futures 0.4.37", "target": "wasm_bindgen_futures" }, { - "id": "web-sys 0.3.77", + "id": "web-sys 0.3.64", "target": "web_sys" } ], @@ -57731,23 +57676,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57755,11 +57700,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57771,7 +57716,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57781,23 +57726,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57805,11 +57750,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57821,7 +57766,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57831,23 +57776,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57855,11 +57800,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57871,7 +57816,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57881,23 +57826,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57905,11 +57850,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57921,7 +57866,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57931,23 +57876,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -57955,11 +57900,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -57971,7 +57916,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -57981,23 +57926,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58005,11 +57950,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58021,7 +57966,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58031,23 +57976,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58055,11 +58000,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58071,7 +58016,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58081,23 +58026,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58105,11 +58050,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58121,7 +58066,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58131,23 +58076,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58155,11 +58100,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58171,7 +58116,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58181,23 +58126,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58205,11 +58150,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58221,7 +58166,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58231,23 +58176,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58255,11 +58200,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58271,19 +58216,19 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], "wasm32-unknown-unknown": [ { - "id": "wasm-streams 0.4.2", + "id": "wasm-streams 0.4.0", "target": "wasm_streams" } ], "wasm32-wasip1": [ { - "id": "wasm-streams 0.4.2", + "id": "wasm-streams 0.4.0", "target": "wasm_streams" } ], @@ -58293,23 +58238,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58317,11 +58262,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58333,7 +58278,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58343,23 +58288,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58367,11 +58312,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58383,7 +58328,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58393,23 +58338,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58417,11 +58362,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58433,7 +58378,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58443,23 +58388,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58467,11 +58412,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58483,7 +58428,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58493,23 +58438,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58517,11 +58462,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58533,7 +58478,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58543,23 +58488,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58567,11 +58512,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58583,7 +58528,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58593,23 +58538,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58617,11 +58562,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58633,7 +58578,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58643,23 +58588,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58667,11 +58612,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58683,7 +58628,7 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ], @@ -58693,23 +58638,23 @@ "target": "futures_channel" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { - "id": "hickory-resolver 0.24.2", + "id": "hickory-resolver 0.24.1", "target": "hickory_resolver" }, { - "id": "hyper-rustls 0.27.5", + "id": "hyper-rustls 0.27.3", "target": "hyper_rustls" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.1", + "id": "rustls-native-certs 0.8.0", "target": "rustls_native_certs" }, { @@ -58717,11 +58662,11 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types" }, { - "id": "tokio-rustls 0.26.1", + "id": "tokio-rustls 0.26.0", "target": "tokio_rustls" }, { @@ -58733,14 +58678,14 @@ "target": "tokio_util" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" } ] } }, "edition": "2021", - "version": "0.12.12" + "version": "0.12.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -58860,14 +58805,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rgb 0.8.50": { + "rgb 0.8.37": { "name": "rgb", - "version": "0.8.50", + "version": "0.8.37", "package_url": "https://github.com/kornelski/rust-rgb", "repository": { "Http": { - "url": "https://static.crates.io/crates/rgb/0.8.50/download", - "sha256": "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a" + "url": "https://static.crates.io/crates/rgb/0.8.37/download", + "sha256": "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8" } }, "targets": [ @@ -58891,25 +58836,23 @@ ], "crate_features": { "common": [ - "argb", "as-bytes", "bytemuck", - "default", - "grb" + "default" ], "selects": {} }, "deps": { "common": [ { - "id": "bytemuck 1.21.0", + "id": "bytemuck 1.13.1", "target": "bytemuck" } ], "selects": {} }, - "edition": "2021", - "version": "0.8.50" + "edition": "2018", + "version": "0.8.37" }, "license": "MIT", "license_ids": [ @@ -58982,43 +58925,43 @@ "selects": { "aarch64-linux-android": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "aarch64-unknown-linux-gnu": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "arm-unknown-linux-gnueabi": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "armv7-linux-androideabi": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\", target_env = \"\"))": [ { - "id": "web-sys 0.3.77", + "id": "web-sys 0.3.64", "target": "web_sys" } ], @@ -59030,13 +58973,13 @@ ], "cfg(any(target_os = \"android\", target_os = \"linux\"))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"illumos\", target_os = \"netbsd\", target_os = \"openbsd\", target_os = \"solaris\"))": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], @@ -59048,55 +58991,55 @@ ], "i686-linux-android": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "i686-unknown-freebsd": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "i686-unknown-linux-gnu": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "powerpc-unknown-linux-gnu": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "s390x-unknown-linux-gnu": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "x86_64-linux-android": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "x86_64-unknown-freebsd": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "x86_64-unknown-linux-gnu": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ] @@ -59115,7 +59058,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -59133,14 +59076,14 @@ "license_ids": [], "license_file": "LICENSE" }, - "ring 0.17.8": { + "ring 0.17.7": { "name": "ring", - "version": "0.17.8", + "version": "0.17.7", "package_url": "https://github.com/briansmith/ring", "repository": { "Http": { - "url": "https://static.crates.io/crates/ring/0.17.8/download", - "sha256": "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" + "url": "https://static.crates.io/crates/ring/0.17.7/download", + "sha256": "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" } }, "targets": [ @@ -59181,24 +59124,16 @@ "dev_urandom_fallback", "std" ], - "selects": { - "wasm32-unknown-unknown": [ - "wasm32_unknown_unknown_js" - ] - } + "selects": {} }, "deps": { "common": [ { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "getrandom 0.2.15", + "id": "getrandom 0.2.10", "target": "getrandom" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "build_script_build" }, { @@ -59209,13 +59144,13 @@ "selects": { "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(target_arch = \"aarch64\", target_arch = \"arm\")))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_os = \"windows\"))": [ { - "id": "windows-sys 0.52.0", + "id": "windows-sys 0.48.0", "target": "windows_sys" } ], @@ -59228,7 +59163,7 @@ } }, "edition": "2021", - "version": "0.17.8" + "version": "0.17.7" }, "build_script_attrs": { "compile_data_glob": [ @@ -59240,7 +59175,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -59252,7 +59187,7 @@ }, "selects": {} }, - "links": "ring_core_0_17_8" + "links": "ring_core_0_17_7" }, "license": null, "license_ids": [], @@ -59313,14 +59248,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rkyv 0.7.45": { + "rkyv 0.7.42": { "name": "rkyv", - "version": "0.7.45", + "version": "0.7.42", "package_url": "https://github.com/rkyv/rkyv", "repository": { "Http": { - "url": "https://static.crates.io/crates/rkyv/0.7.45/download", - "sha256": "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" + "url": "https://static.crates.io/crates/rkyv/0.7.42/download", + "sha256": "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58" } }, "targets": [ @@ -59361,7 +59296,7 @@ "target": "ptr_meta" }, { - "id": "rkyv 0.7.45", + "id": "rkyv 0.7.42", "target": "build_script_build" }, { @@ -59375,13 +59310,13 @@ "proc_macro_deps": { "common": [ { - "id": "rkyv_derive 0.7.45", + "id": "rkyv_derive 0.7.42", "target": "rkyv_derive" } ], "selects": {} }, - "version": "0.7.45" + "version": "0.7.42" }, "build_script_attrs": { "compile_data_glob": [ @@ -59397,14 +59332,14 @@ ], "license_file": "LICENSE" }, - "rkyv_derive 0.7.45": { + "rkyv_derive 0.7.42": { "name": "rkyv_derive", - "version": "0.7.45", + "version": "0.7.42", "package_url": "https://github.com/rkyv/rkyv", "repository": { "Http": { - "url": "https://static.crates.io/crates/rkyv_derive/0.7.45/download", - "sha256": "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" + "url": "https://static.crates.io/crates/rkyv_derive/0.7.42/download", + "sha256": "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d" } }, "targets": [ @@ -59429,11 +59364,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -59444,7 +59379,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.45" + "version": "0.7.42" }, "license": "MIT", "license_ids": [ @@ -59593,11 +59528,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -59649,7 +59584,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -59700,7 +59635,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" } ], @@ -59716,14 +59651,14 @@ ], "license_file": "LICENSE" }, - "rsa 0.9.7": { + "rsa 0.9.6": { "name": "rsa", - "version": "0.9.7", + "version": "0.9.6", "package_url": "https://github.com/RustCrypto/RSA", "repository": { "Http": { - "url": "https://static.crates.io/crates/rsa/0.9.7/download", - "sha256": "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519" + "url": "https://static.crates.io/crates/rsa/0.9.6/download", + "sha256": "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" } }, "targets": [ @@ -59758,7 +59693,7 @@ "deps": { "common": [ { - "id": "const-oid 0.9.6", + "id": "const-oid 0.9.4", "target": "const_oid" }, { @@ -59814,7 +59749,7 @@ "selects": {} }, "edition": "2021", - "version": "0.9.7" + "version": "0.9.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -59866,7 +59801,7 @@ "target": "futures" }, { - "id": "futures-timer 3.0.3", + "id": "futures-timer 3.0.2", "target": "futures_timer" } ], @@ -59945,19 +59880,19 @@ "target": "cfg_if" }, { - "id": "glob 0.3.2", + "id": "glob 0.3.1", "target": "glob" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -59969,11 +59904,11 @@ "target": "build_script_build" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" }, { - "id": "unicode-ident 1.0.14", + "id": "unicode-ident 1.0.11", "target": "unicode_ident" } ], @@ -59992,7 +59927,7 @@ "deps": { "common": [ { - "id": "rustc_version 0.4.1", + "id": "rustc_version 0.4.0", "target": "rustc_version" } ], @@ -60006,14 +59941,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rusb 0.9.4": { + "rusb 0.9.3": { "name": "rusb", - "version": "0.9.4", + "version": "0.9.3", "package_url": "https://github.com/a1ien/rusb.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/rusb/0.9.4/download", - "sha256": "ab9f9ff05b63a786553a4c02943b74b34a988448671001e9a27e2f0565cc05a4" + "url": "https://static.crates.io/crates/rusb/0.9.3/download", + "sha256": "45fff149b6033f25e825cbb7b2c625a11ee8e6dac09264d49beb125e39aa97bf" } }, "targets": [ @@ -60050,22 +59985,22 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "libusb1-sys 0.7.0", + "id": "libusb1-sys 0.6.4", "target": "libusb1_sys" }, { - "id": "rusb 0.9.4", + "id": "rusb 0.9.3", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.9.4" + "version": "0.9.3" }, "build_script_attrs": { "compile_data_glob": [ @@ -60077,7 +60012,7 @@ "link_deps": { "common": [ { - "id": "libusb1-sys 0.7.0", + "id": "libusb1-sys 0.6.4", "target": "libusb1_sys" } ], @@ -60141,7 +60076,7 @@ "target": "fallible_streaming_iterator" }, { - "id": "hashlink 0.8.4", + "id": "hashlink 0.8.3", "target": "hashlink" }, { @@ -60216,7 +60151,7 @@ "deps": { "common": [ { - "id": "arrayvec 0.7.6", + "id": "arrayvec 0.7.4", "target": "arrayvec" }, { @@ -60289,7 +60224,7 @@ "deps": { "common": [ { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -60308,14 +60243,14 @@ ], "license_file": "LICENSE" }, - "rustc-demangle 0.1.24": { + "rustc-demangle 0.1.23": { "name": "rustc-demangle", - "version": "0.1.24", - "package_url": "https://github.com/rust-lang/rustc-demangle", + "version": "0.1.23", + "package_url": "https://github.com/alexcrichton/rustc-demangle", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustc-demangle/0.1.24/download", - "sha256": "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" + "url": "https://static.crates.io/crates/rustc-demangle/0.1.23/download", + "sha256": "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" } }, "targets": [ @@ -60338,7 +60273,7 @@ "**" ], "edition": "2015", - "version": "0.1.24" + "version": "0.1.23" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -60393,14 +60328,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustc-hash 2.1.0": { + "rustc-hash 2.0.0": { "name": "rustc-hash", - "version": "2.1.0", + "version": "2.0.0", "package_url": "https://github.com/rust-lang/rustc-hash", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustc-hash/2.1.0/download", - "sha256": "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497" + "url": "https://static.crates.io/crates/rustc-hash/2.0.0/download", + "sha256": "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" } }, "targets": [ @@ -60430,9 +60365,9 @@ "selects": {} }, "edition": "2021", - "version": "2.1.0" + "version": "2.0.0" }, - "license": "Apache-2.0 OR MIT", + "license": "Apache-2.0/MIT", "license_ids": [ "Apache-2.0", "MIT" @@ -60484,14 +60419,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustc_version 0.4.1": { + "rustc_version 0.4.0": { "name": "rustc_version", - "version": "0.4.1", - "package_url": "https://github.com/djc/rustc-version-rs", + "version": "0.4.0", + "package_url": "https://github.com/Kimundi/rustc-version-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustc_version/0.4.1/download", - "sha256": "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" + "url": "https://static.crates.io/crates/rustc_version/0.4.0/download", + "sha256": "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" } }, "targets": [ @@ -60516,16 +60451,16 @@ "deps": { "common": [ { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" } ], "selects": {} }, "edition": "2018", - "version": "0.4.1" + "version": "0.4.0" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -60580,14 +60515,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustix 0.38.43": { + "rustix 0.38.32": { "name": "rustix", - "version": "0.38.43", + "version": "0.38.32", "package_url": "https://github.com/bytecodealliance/rustix", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustix/0.38.43/download", - "sha256": "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6", + "url": "https://static.crates.io/crates/rustix/0.38.32/download", + "sha256": "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89", "patch_args": [ "-p1" ], @@ -60631,7 +60566,6 @@ "common": [ "alloc", "fs", - "libc-extra-traits", "net", "std" ], @@ -60642,6 +60576,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60651,6 +60586,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60660,6 +60596,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60669,6 +60606,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60678,6 +60616,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60689,6 +60628,7 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" @@ -60701,6 +60641,7 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" @@ -60711,6 +60652,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60722,6 +60664,7 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" @@ -60732,6 +60675,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60743,6 +60687,7 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" @@ -60753,6 +60698,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60762,6 +60708,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60771,6 +60718,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60782,6 +60730,7 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" @@ -60794,10 +60743,21 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" ], + "riscv32imc-unknown-none-elf": [ + "default", + "termios", + "use-libc-auxv" + ], + "riscv64gc-unknown-none-elf": [ + "default", + "termios", + "use-libc-auxv" + ], "s390x-unknown-linux-gnu": [ "default", "event", @@ -60806,12 +60766,24 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" ], + "thumbv7em-none-eabi": [ + "default", + "termios", + "use-libc-auxv" + ], + "thumbv8m.main-none-eabi": [ + "default", + "termios", + "use-libc-auxv" + ], "wasm32-wasip1": [ "default", + "termios", "use-libc-auxv" ], "x86_64-apple-darwin": [ @@ -60820,6 +60792,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60829,6 +60802,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60838,6 +60812,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60847,6 +60822,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60856,6 +60832,7 @@ "mm", "pipe", "process", + "termios", "time", "use-libc-auxv" ], @@ -60867,6 +60844,7 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" @@ -60879,347 +60857,353 @@ "pipe", "process", "system", + "termios", "thread", "time", "use-libc-auxv" + ], + "x86_64-unknown-none": [ + "default", + "termios", + "use-libc-auxv" ] } }, "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "build_script_build" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-apple-ios": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-apple-ios-sim": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-linux-android": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-pc-windows-msvc": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" } ], "aarch64-unknown-fuchsia": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "armv7-linux-androideabi": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], - "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ { - "id": "linux-raw-sys 0.4.15", + "id": "linux-raw-sys 0.4.13", "target": "linux_raw_sys" } ], - "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ + "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ { - "id": "linux-raw-sys 0.4.15", + "id": "linux-raw-sys 0.4.13", "target": "linux_raw_sys" } ], - "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "cfg(windows)": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.52.0", "target": "windows_sys" } ], "i686-apple-darwin": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-linux-android": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-pc-windows-msvc": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" } ], "i686-unknown-freebsd": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "powerpc-unknown-linux-gnu": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "riscv32imc-unknown-none-elf": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "riscv64gc-unknown-none-elf": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "s390x-unknown-linux-gnu": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "thumbv7em-none-eabi": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "thumbv8m.main-none-eabi": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "wasm32-unknown-unknown": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "wasm32-wasip1": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-apple-darwin": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-apple-ios": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-linux-android": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-pc-windows-msvc": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" } ], "x86_64-unknown-freebsd": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-unknown-fuchsia": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "x86_64-unknown-none": [ { - "id": "errno 0.3.10", + "id": "errno 0.3.8", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] } }, "edition": "2021", - "version": "0.38.43" + "version": "0.38.32" }, "build_script_attrs": { "compile_data_glob": [ @@ -61290,11 +61274,11 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { @@ -61306,7 +61290,7 @@ "target": "webpki" }, { - "id": "sct 0.7.1", + "id": "sct 0.7.0", "target": "sct" } ], @@ -61325,7 +61309,7 @@ "link_deps": { "common": [ { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" } ], @@ -61393,11 +61377,11 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { @@ -61405,7 +61389,7 @@ "target": "build_script_build" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" }, @@ -61437,7 +61421,7 @@ "link_deps": { "common": [ { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" } ], @@ -61452,14 +61436,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustls 0.23.21": { + "rustls 0.23.18": { "name": "rustls", - "version": "0.23.21", + "version": "0.23.18", "package_url": "https://github.com/rustls/rustls", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls/0.23.21/download", - "sha256": "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8" + "url": "https://static.crates.io/crates/rustls/0.23.18/download", + "sha256": "9c9cc1d47e243d655ace55ed38201c19ae02c148ae56412ab8750e8f0166ab7f" } }, "targets": [ @@ -61515,23 +61499,23 @@ "target": "brotli_decompressor" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "build_script_build" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" }, @@ -61551,7 +61535,7 @@ "selects": {} }, "edition": "2021", - "version": "0.23.21" + "version": "0.23.18" }, "build_script_attrs": { "compile_data_glob": [ @@ -61563,7 +61547,7 @@ "link_deps": { "common": [ { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" } ], @@ -61617,7 +61601,7 @@ "deps": { "common": [ { - "id": "async-io 2.4.0", + "id": "async-io 2.3.4", "target": "async_io" }, { @@ -61633,7 +61617,7 @@ "target": "blocking" }, { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { @@ -61649,19 +61633,19 @@ "target": "http" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "pem 3.0.4", + "id": "pem 3.0.3", "target": "pem" }, { - "id": "rcgen 0.13.2", + "id": "rcgen 0.13.1", "target": "rcgen" }, { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { @@ -61669,15 +61653,15 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 2.0.3", "target": "thiserror" }, { - "id": "webpki-roots 0.26.7", + "id": "webpki-roots 0.26.1", "target": "webpki_roots" }, { @@ -61691,7 +61675,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -61738,7 +61722,7 @@ "deps": { "common": [ { - "id": "rustls-pemfile 1.0.4", + "id": "rustls-pemfile 1.0.3", "target": "rustls_pemfile" } ], @@ -61757,7 +61741,7 @@ ], "cfg(windows)": [ { - "id": "schannel 0.1.27", + "id": "schannel 0.1.22", "target": "schannel" } ] @@ -61774,14 +61758,14 @@ ], "license_file": "LICENSE" }, - "rustls-native-certs 0.7.3": { + "rustls-native-certs 0.7.0": { "name": "rustls-native-certs", - "version": "0.7.3", + "version": "0.7.0", "package_url": "https://github.com/rustls/rustls-native-certs", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-native-certs/0.7.3/download", - "sha256": "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" + "url": "https://static.crates.io/crates/rustls-native-certs/0.7.0/download", + "sha256": "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" } }, "targets": [ @@ -61810,7 +61794,7 @@ "target": "rustls_pemfile" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" } @@ -61830,14 +61814,14 @@ ], "cfg(windows)": [ { - "id": "schannel 0.1.27", + "id": "schannel 0.1.22", "target": "schannel" } ] } }, "edition": "2021", - "version": "0.7.3" + "version": "0.7.0" }, "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ @@ -61847,14 +61831,14 @@ ], "license_file": "LICENSE" }, - "rustls-native-certs 0.8.1": { + "rustls-native-certs 0.8.0": { "name": "rustls-native-certs", - "version": "0.8.1", + "version": "0.8.0", "package_url": "https://github.com/rustls/rustls-native-certs", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-native-certs/0.8.1/download", - "sha256": "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" + "url": "https://static.crates.io/crates/rustls-native-certs/0.8.0/download", + "sha256": "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a" } }, "targets": [ @@ -61879,7 +61863,11 @@ "deps": { "common": [ { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pemfile 2.2.0", + "target": "rustls_pemfile" + }, + { + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" } @@ -61893,20 +61881,20 @@ ], "cfg(target_os = \"macos\")": [ { - "id": "security-framework 3.2.0", + "id": "security-framework 2.11.1", "target": "security_framework" } ], "cfg(windows)": [ { - "id": "schannel 0.1.27", + "id": "schannel 0.1.22", "target": "schannel" } ] } }, "edition": "2021", - "version": "0.8.1" + "version": "0.8.0" }, "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ @@ -61916,14 +61904,14 @@ ], "license_file": "LICENSE" }, - "rustls-pemfile 1.0.4": { + "rustls-pemfile 1.0.3": { "name": "rustls-pemfile", - "version": "1.0.4", + "version": "1.0.3", "package_url": "https://github.com/rustls/pemfile", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-pemfile/1.0.4/download", - "sha256": "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" + "url": "https://static.crates.io/crates/rustls-pemfile/1.0.3/download", + "sha256": "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" } }, "targets": [ @@ -61948,14 +61936,14 @@ "deps": { "common": [ { - "id": "base64 0.21.7", + "id": "base64 0.21.6", "target": "base64" } ], "selects": {} }, "edition": "2018", - "version": "1.0.4" + "version": "1.0.3" }, "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ @@ -62004,7 +61992,7 @@ "deps": { "common": [ { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" } @@ -62022,14 +62010,14 @@ ], "license_file": "LICENSE" }, - "rustls-pki-types 1.10.1": { + "rustls-pki-types 1.10.0": { "name": "rustls-pki-types", - "version": "1.10.1", + "version": "1.10.0", "package_url": "https://github.com/rustls/pki-types", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-pki-types/1.10.1/download", - "sha256": "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37" + "url": "https://static.crates.io/crates/rustls-pki-types/1.10.0/download", + "sha256": "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" } }, "targets": [ @@ -62057,26 +62045,10 @@ "default", "std" ], - "selects": { - "wasm32-unknown-unknown": [ - "web", - "web-time" - ] - } - }, - "deps": { - "common": [], - "selects": { - "wasm32-unknown-unknown": [ - { - "id": "web-time 1.1.0", - "target": "web_time" - } - ] - } + "selects": {} }, "edition": "2021", - "version": "1.10.1" + "version": "1.10.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -62117,22 +62089,22 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" } ], "selects": { "cfg(all(unix, not(target_os = \"android\"), not(target_vendor = \"apple\"), not(target_arch = \"wasm32\")))": [ { - "id": "rustls-native-certs 0.7.3", + "id": "rustls-native-certs 0.7.0", "target": "rustls_native_certs" }, { @@ -62154,7 +62126,7 @@ "target": "security_framework" }, { - "id": "security-framework-sys 2.14.0", + "id": "security-framework-sys 2.12.0", "target": "security_framework_sys" } ], @@ -62164,7 +62136,7 @@ "target": "webpki" }, { - "id": "webpki-root-certs 0.26.7", + "id": "webpki-root-certs 0.26.6", "target": "webpki_root_certs" } ], @@ -62279,7 +62251,7 @@ "deps": { "common": [ { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { @@ -62338,11 +62310,11 @@ "deps": { "common": [ { - "id": "ring 0.17.8", + "id": "ring 0.17.7", "target": "ring" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" }, @@ -62362,14 +62334,14 @@ ], "license_file": "LICENSE" }, - "rustversion 1.0.19": { + "rustversion 1.0.14": { "name": "rustversion", - "version": "1.0.19", + "version": "1.0.14", "package_url": "https://github.com/dtolnay/rustversion", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustversion/1.0.19/download", - "sha256": "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" + "url": "https://static.crates.io/crates/rustversion/1.0.14/download", + "sha256": "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" } }, "targets": [ @@ -62406,14 +62378,14 @@ "deps": { "common": [ { - "id": "rustversion 1.0.19", + "id": "rustversion 1.0.14", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.0.19" + "version": "1.0.14" }, "build_script_attrs": { "compile_data_glob": [ @@ -62478,7 +62450,7 @@ "target": "quick_error" }, { - "id": "tempfile 3.15.0", + "id": "tempfile 3.12.0", "target": "tempfile" }, { @@ -62498,14 +62470,14 @@ ], "license_file": "LICENSE-APACHE" }, - "ryu 1.0.18": { + "ryu 1.0.15": { "name": "ryu", - "version": "1.0.18", + "version": "1.0.15", "package_url": "https://github.com/dtolnay/ryu", "repository": { "Http": { - "url": "https://static.crates.io/crates/ryu/1.0.18/download", - "sha256": "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" + "url": "https://static.crates.io/crates/ryu/1.0.15/download", + "sha256": "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" } }, "targets": [ @@ -62528,7 +62500,7 @@ "**" ], "edition": "2018", - "version": "1.0.18" + "version": "1.0.15" }, "license": "Apache-2.0 OR BSL-1.0", "license_ids": [ @@ -62571,7 +62543,7 @@ "selects": { "cfg(windows)": [ { - "id": "winapi-util 0.1.9", + "id": "winapi-util 0.1.5", "target": "winapi_util" } ] @@ -62587,14 +62559,14 @@ ], "license_file": "LICENSE-MIT" }, - "scale-info 2.11.6": { + "scale-info 2.9.0": { "name": "scale-info", - "version": "2.11.6", + "version": "2.9.0", "package_url": "https://github.com/paritytech/scale-info", "repository": { "Http": { - "url": "https://static.crates.io/crates/scale-info/2.11.6/download", - "sha256": "346a3b32eba2640d17a9cb5927056b08f3de90f65b72fe09402c2ad07d684d0b" + "url": "https://static.crates.io/crates/scale-info/2.9.0/download", + "sha256": "35c0a159d0c45c12b20c5a844feb1fe4bea86e28f17b92a5f0c42193634d3782" } }, "targets": [ @@ -62630,11 +62602,7 @@ "target": "cfg_if" }, { - "id": "derive_more 1.0.0", - "target": "derive_more" - }, - { - "id": "parity-scale-codec 3.6.12", + "id": "parity-scale-codec 3.6.3", "target": "parity_scale_codec", "alias": "scale" } @@ -62645,13 +62613,17 @@ "proc_macro_deps": { "common": [ { - "id": "scale-info-derive 2.11.6", + "id": "derive_more 0.99.17", + "target": "derive_more" + }, + { + "id": "scale-info-derive 2.9.0", "target": "scale_info_derive" } ], "selects": {} }, - "version": "2.11.6" + "version": "2.9.0" }, "license": "Apache-2.0", "license_ids": [ @@ -62659,14 +62631,14 @@ ], "license_file": "LICENSE" }, - "scale-info-derive 2.11.6": { + "scale-info-derive 2.9.0": { "name": "scale-info-derive", - "version": "2.11.6", + "version": "2.9.0", "package_url": "https://github.com/paritytech/scale-info", "repository": { "Http": { - "url": "https://static.crates.io/crates/scale-info-derive/2.11.6/download", - "sha256": "c6630024bf739e2179b91fb424b28898baf819414262c5d376677dbff1fe7ebf" + "url": "https://static.crates.io/crates/scale-info-derive/2.9.0/download", + "sha256": "912e55f6d20e0e80d63733872b40e1227c0bce1e1ab81ba67d696339bfd7fd29" } }, "targets": [ @@ -62691,26 +62663,26 @@ "deps": { "common": [ { - "id": "proc-macro-crate 3.2.0", + "id": "proc-macro-crate 1.3.1", "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 1.0.109", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.11.6" + "version": "2.9.0" }, "license": "Apache-2.0", "license_ids": [ @@ -62718,14 +62690,14 @@ ], "license_file": null }, - "schannel 0.1.27": { + "schannel 0.1.22": { "name": "schannel", - "version": "0.1.27", + "version": "0.1.22", "package_url": "https://github.com/steffengy/schannel-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/schannel/0.1.27/download", - "sha256": "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" + "url": "https://static.crates.io/crates/schannel/0.1.22/download", + "sha256": "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" } }, "targets": [ @@ -62750,14 +62722,14 @@ "deps": { "common": [ { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.48.0", "target": "windows_sys" } ], "selects": {} }, "edition": "2018", - "version": "0.1.27" + "version": "0.1.22" }, "license": "MIT", "license_ids": [ @@ -62765,14 +62737,14 @@ ], "license_file": "LICENSE.md" }, - "schemars 0.8.21": { + "schemars 0.8.16": { "name": "schemars", - "version": "0.8.21", + "version": "0.8.16", "package_url": "https://github.com/GREsau/schemars", "repository": { "Http": { - "url": "https://static.crates.io/crates/schemars/0.8.21/download", - "sha256": "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92" + "url": "https://static.crates.io/crates/schemars/0.8.16/download", + "sha256": "45a28f4c49489add4ce10783f7911893516f15afe45d015608d41faca6bc4d29" } }, "targets": [ @@ -62819,16 +62791,16 @@ "deps": { "common": [ { - "id": "dyn-clone 1.0.17", + "id": "dyn-clone 1.0.14", "target": "dyn_clone" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap", "alias": "indexmap2" }, { - "id": "schemars 0.8.21", + "id": "schemars 0.8.16", "target": "build_script_build" }, { @@ -62836,7 +62808,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -62846,13 +62818,13 @@ "proc_macro_deps": { "common": [ { - "id": "schemars_derive 0.8.21", + "id": "schemars_derive 0.8.16", "target": "schemars_derive" } ], "selects": {} }, - "version": "0.8.21" + "version": "0.8.16" }, "build_script_attrs": { "compile_data_glob": [ @@ -62868,14 +62840,14 @@ ], "license_file": "LICENSE" }, - "schemars_derive 0.8.21": { + "schemars_derive 0.8.16": { "name": "schemars_derive", - "version": "0.8.21", + "version": "0.8.16", "package_url": "https://github.com/GREsau/schemars", "repository": { "Http": { - "url": "https://static.crates.io/crates/schemars_derive/0.8.21/download", - "sha256": "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e" + "url": "https://static.crates.io/crates/schemars_derive/0.8.16/download", + "sha256": "c767fd6fa65d9ccf9cf026122c1b555f2ef9a4f0cea69da4d7dbc3e258d30967" } }, "targets": [ @@ -62900,26 +62872,26 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "serde_derive_internals 0.29.1", + "id": "serde_derive_internals 0.26.0", "target": "serde_derive_internals" }, { - "id": "syn 2.0.96", + "id": "syn 1.0.109", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.8.21" + "version": "0.8.16" }, "license": "MIT", "license_ids": [ @@ -63099,7 +63071,7 @@ "target": "cssparser" }, { - "id": "ego-tree 0.6.3", + "id": "ego-tree 0.6.2", "target": "ego_tree" }, { @@ -63111,7 +63083,7 @@ "target": "html5ever" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -63138,14 +63110,14 @@ ], "license_file": "LICENSE" }, - "sct 0.7.1": { + "sct 0.7.0": { "name": "sct", - "version": "0.7.1", - "package_url": "https://github.com/rustls/sct.rs", + "version": "0.7.0", + "package_url": "https://github.com/ctz/sct.rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/sct/0.7.1/download", - "sha256": "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" + "url": "https://static.crates.io/crates/sct/0.7.0/download", + "sha256": "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" } }, "targets": [ @@ -63170,20 +63142,20 @@ "deps": { "common": [ { - "id": "ring 0.17.8", + "id": "ring 0.16.20", "target": "ring" }, { - "id": "untrusted 0.9.0", + "id": "untrusted 0.7.1", "target": "untrusted" } ], "selects": {} }, - "edition": "2021", - "version": "0.7.1" + "edition": "2018", + "version": "0.7.0" }, - "license": "Apache-2.0 OR ISC OR MIT", + "license": "Apache-2.0/ISC/MIT", "license_ids": [ "Apache-2.0", "ISC", @@ -63279,7 +63251,7 @@ "target": "base16ct" }, { - "id": "der 0.7.9", + "id": "der 0.7.7", "target": "der" }, { @@ -63449,14 +63421,14 @@ ], "license_file": "LICENSE" }, - "secp256k1 0.29.1": { + "secp256k1 0.29.0": { "name": "secp256k1", - "version": "0.29.1", + "version": "0.29.0", "package_url": "https://github.com/rust-bitcoin/rust-secp256k1/", "repository": { "Http": { - "url": "https://static.crates.io/crates/secp256k1/0.29.1/download", - "sha256": "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113" + "url": "https://static.crates.io/crates/secp256k1/0.29.0/download", + "sha256": "0e0cc0f1cf93f4969faf3ea1c7d8a9faed25918d96affa959720823dfe86d4f3" } }, "targets": [ @@ -63493,14 +63465,14 @@ "alias": "hashes" }, { - "id": "secp256k1-sys 0.10.1", + "id": "secp256k1-sys 0.10.0", "target": "secp256k1_sys" } ], "selects": {} }, "edition": "2021", - "version": "0.29.1" + "version": "0.29.0" }, "license": "CC0-1.0", "license_ids": [ @@ -63578,7 +63550,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -63663,7 +63635,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -63677,14 +63649,14 @@ ], "license_file": "LICENSE" }, - "secp256k1-sys 0.10.1": { + "secp256k1-sys 0.10.0": { "name": "secp256k1-sys", - "version": "0.10.1", + "version": "0.10.0", "package_url": "https://github.com/rust-bitcoin/rust-secp256k1/", "repository": { "Http": { - "url": "https://static.crates.io/crates/secp256k1-sys/0.10.1/download", - "sha256": "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9" + "url": "https://static.crates.io/crates/secp256k1-sys/0.10.0/download", + "sha256": "1433bd67156263443f14d603720b082dd3121779323fce20cba2aa07b874bc1b" } }, "targets": [ @@ -63727,7 +63699,7 @@ "deps": { "common": [ { - "id": "secp256k1-sys 0.10.1", + "id": "secp256k1-sys 0.10.0", "target": "build_script_build" } ], @@ -63740,7 +63712,7 @@ ], "selects": {} }, - "version": "0.10.1" + "version": "0.10.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -63752,7 +63724,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -63873,7 +63845,7 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -63885,7 +63857,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -63893,7 +63865,7 @@ "target": "num_bigint" }, { - "id": "security-framework-sys 2.14.0", + "id": "security-framework-sys 2.12.0", "target": "security_framework_sys" } ], @@ -63909,85 +63881,14 @@ ], "license_file": "LICENSE-APACHE" }, - "security-framework 3.2.0": { - "name": "security-framework", - "version": "3.2.0", - "package_url": "https://github.com/kornelski/rust-security-framework", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/security-framework/3.2.0/download", - "sha256": "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" - } - }, - "targets": [ - { - "Library": { - "crate_name": "security_framework", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "security_framework", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "OSX_10_12", - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bitflags 2.8.0", - "target": "bitflags" - }, - { - "id": "core-foundation 0.10.0", - "target": "core_foundation" - }, - { - "id": "core-foundation-sys 0.8.7", - "target": "core_foundation_sys" - }, - { - "id": "libc 0.2.169", - "target": "libc" - }, - { - "id": "security-framework-sys 2.14.0", - "target": "security_framework_sys" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "3.2.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "security-framework-sys 2.14.0": { + "security-framework-sys 2.12.0": { "name": "security-framework-sys", - "version": "2.14.0", + "version": "2.12.0", "package_url": "https://github.com/kornelski/rust-security-framework", "repository": { "Http": { - "url": "https://static.crates.io/crates/security-framework-sys/2.14.0/download", - "sha256": "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" + "url": "https://static.crates.io/crates/security-framework-sys/2.12.0/download", + "sha256": "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" } }, "targets": [ @@ -64028,14 +63929,14 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "selects": {} }, "edition": "2021", - "version": "2.14.0" + "version": "2.12.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -64088,7 +63989,7 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -64100,11 +64001,11 @@ "target": "fxhash" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "new_debug_unreachable 1.0.6", + "id": "new_debug_unreachable 1.0.4", "target": "debug_unreachable" }, { @@ -64134,7 +64035,7 @@ "proc_macro_deps": { "common": [ { - "id": "derive_more 0.99.18", + "id": "derive_more 0.99.17", "target": "derive_more" } ], @@ -64165,14 +64066,14 @@ ], "license_file": null }, - "semver 1.0.24": { + "semver 1.0.22": { "name": "semver", - "version": "1.0.24", + "version": "1.0.22", "package_url": "https://github.com/dtolnay/semver", "repository": { "Http": { - "url": "https://static.crates.io/crates/semver/1.0.24/download", - "sha256": "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba" + "url": "https://static.crates.io/crates/semver/1.0.22/download", + "sha256": "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" } }, "targets": [ @@ -64217,7 +64118,7 @@ "deps": { "common": [ { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "build_script_build" }, { @@ -64228,7 +64129,7 @@ "selects": {} }, "edition": "2018", - "version": "1.0.24" + "version": "1.0.22" }, "build_script_attrs": { "compile_data_glob": [ @@ -64420,7 +64321,7 @@ "deps": { "common": [ { - "id": "ordered-float 2.10.1", + "id": "ordered-float 2.10.0", "target": "ordered_float" }, { @@ -64471,7 +64372,7 @@ "deps": { "common": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { @@ -64479,7 +64380,7 @@ "target": "serde" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], @@ -64588,7 +64489,7 @@ "deps": { "common": [ { - "id": "half 1.8.3", + "id": "half 1.8.2", "target": "half" }, { @@ -64646,15 +64547,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -64670,14 +64571,14 @@ ], "license_file": "LICENSE-APACHE" }, - "serde_derive_internals 0.29.1": { + "serde_derive_internals 0.26.0": { "name": "serde_derive_internals", - "version": "0.29.1", + "version": "0.26.0", "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_derive_internals/0.29.1/download", - "sha256": "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" + "url": "https://static.crates.io/crates/serde_derive_internals/0.26.0/download", + "sha256": "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c" } }, "targets": [ @@ -64702,22 +64603,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 1.0.109", "target": "syn" } ], "selects": {} }, "edition": "2015", - "version": "0.29.1" + "version": "0.26.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -64726,14 +64627,14 @@ ], "license_file": "LICENSE-APACHE" }, - "serde_json 1.0.135": { + "serde_json 1.0.132": { "name": "serde_json", - "version": "1.0.135", + "version": "1.0.132", "package_url": "https://github.com/serde-rs/json", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_json/1.0.135/download", - "sha256": "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" + "url": "https://static.crates.io/crates/serde_json/1.0.132/download", + "sha256": "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" } }, "targets": [ @@ -64770,6 +64671,7 @@ "crate_features": { "common": [ "alloc", + "arbitrary_precision", "default", "raw_value", "std", @@ -64780,7 +64682,7 @@ "deps": { "common": [ { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { @@ -64788,7 +64690,7 @@ "target": "memchr" }, { - "id": "ryu 1.0.18", + "id": "ryu 1.0.15", "target": "ryu" }, { @@ -64796,14 +64698,14 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "1.0.135" + "version": "1.0.132" }, "build_script_attrs": { "compile_data_glob": [ @@ -64820,14 +64722,14 @@ ], "license_file": "LICENSE-APACHE" }, - "serde_path_to_error 0.1.16": { + "serde_path_to_error 0.1.14": { "name": "serde_path_to_error", - "version": "0.1.16", + "version": "0.1.14", "package_url": "https://github.com/dtolnay/path-to-error", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_path_to_error/0.1.16/download", - "sha256": "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" + "url": "https://static.crates.io/crates/serde_path_to_error/0.1.14/download", + "sha256": "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335" } }, "targets": [ @@ -64852,7 +64754,7 @@ "deps": { "common": [ { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { @@ -64863,7 +64765,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.16" + "version": "0.1.14" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -64912,7 +64814,7 @@ "target": "serde" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" } ], @@ -64960,7 +64862,7 @@ "deps": { "common": [ { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -65012,15 +64914,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -65068,7 +64970,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { @@ -65091,14 +64993,14 @@ ], "license_file": "LICENSE" }, - "serde_tokenstream 0.2.2": { + "serde_tokenstream 0.2.1": { "name": "serde_tokenstream", - "version": "0.2.2", + "version": "0.2.1", "package_url": "https://github.com/oxidecomputer/serde_tokenstream", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_tokenstream/0.2.2/download", - "sha256": "64060d864397305347a78851c51588fd283767e7e7589829e8121d65512340f1" + "url": "https://static.crates.io/crates/serde_tokenstream/0.2.1/download", + "sha256": "8790a7c3fe883e443eaa2af6f705952bc5d6e8671a220b9335c8cae92c037e74" } }, "targets": [ @@ -65123,11 +65025,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -65135,14 +65037,14 @@ "target": "serde" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.2.2" + "version": "0.2.1" }, "license": "Apache-2.0", "license_ids": [ @@ -65186,11 +65088,11 @@ "target": "form_urlencoded" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "ryu 1.0.18", + "id": "ryu 1.0.15", "target": "ryu" }, { @@ -65382,11 +65284,11 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -65442,15 +65344,15 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -65502,7 +65404,7 @@ "target": "indexmap" }, { - "id": "ryu 1.0.18", + "id": "ryu 1.0.15", "target": "ryu" }, { @@ -65558,15 +65460,15 @@ "deps": { "common": [ { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { - "id": "ryu 1.0.18", + "id": "ryu 1.0.15", "target": "ryu" }, { @@ -65688,7 +65590,7 @@ "selects": { "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))": [ { - "id": "cpufeatures 0.2.16", + "id": "cpufeatures 0.2.9", "target": "cpufeatures" } ] @@ -65755,14 +65657,14 @@ "target": "digest" }, { - "id": "opaque-debug 0.3.1", + "id": "opaque-debug 0.3.0", "target": "opaque_debug" } ], "selects": { "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.16", + "id": "cpufeatures 0.2.9", "target": "cpufeatures" } ] @@ -65836,7 +65738,7 @@ "selects": { "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.16", + "id": "cpufeatures 0.2.9", "target": "cpufeatures" } ] @@ -65911,7 +65813,7 @@ "target": "sha2" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -65921,7 +65823,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -65979,7 +65881,7 @@ "target": "digest" }, { - "id": "keccak 0.1.5", + "id": "keccak 0.1.4", "target": "keccak" } ], @@ -65995,14 +65897,14 @@ ], "license_file": "LICENSE-APACHE" }, - "sharded-slab 0.1.7": { + "sharded-slab 0.1.4": { "name": "sharded-slab", - "version": "0.1.7", + "version": "0.1.4", "package_url": "https://github.com/hawkw/sharded-slab", "repository": { "Http": { - "url": "https://static.crates.io/crates/sharded-slab/0.1.7/download", - "sha256": "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" + "url": "https://static.crates.io/crates/sharded-slab/0.1.4/download", + "sha256": "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" } }, "targets": [ @@ -66027,14 +65929,14 @@ "deps": { "common": [ { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" } ], "selects": {} }, "edition": "2018", - "version": "0.1.7" + "version": "0.1.4" }, "license": "MIT", "license_ids": [ @@ -66140,7 +66042,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -66148,7 +66050,7 @@ "target": "build_script_build" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" } ], @@ -66172,14 +66074,14 @@ ], "license_file": "LICENSE-APACHE" }, - "signal-hook-mio 0.2.4": { + "signal-hook-mio 0.2.3": { "name": "signal-hook-mio", - "version": "0.2.4", + "version": "0.2.3", "package_url": "https://github.com/vorner/signal-hook", "repository": { "Http": { - "url": "https://static.crates.io/crates/signal-hook-mio/0.2.4/download", - "sha256": "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd" + "url": "https://static.crates.io/crates/signal-hook-mio/0.2.3/download", + "sha256": "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" } }, "targets": [ @@ -66211,11 +66113,11 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "mio 0.8.11", + "id": "mio 0.8.10", "target": "mio", "alias": "mio_0_8" }, @@ -66227,7 +66129,7 @@ "selects": {} }, "edition": "2018", - "version": "0.2.4" + "version": "0.2.3" }, "license": "Apache-2.0/MIT", "license_ids": [ @@ -66236,14 +66138,14 @@ ], "license_file": "LICENSE-APACHE" }, - "signal-hook-registry 1.4.2": { + "signal-hook-registry 1.4.1": { "name": "signal-hook-registry", - "version": "1.4.2", + "version": "1.4.1", "package_url": "https://github.com/vorner/signal-hook", "repository": { "Http": { - "url": "https://static.crates.io/crates/signal-hook-registry/1.4.2/download", - "sha256": "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" + "url": "https://static.crates.io/crates/signal-hook-registry/1.4.1/download", + "sha256": "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" } }, "targets": [ @@ -66268,14 +66170,14 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "selects": {} }, "edition": "2015", - "version": "1.4.2" + "version": "1.4.1" }, "license": "Apache-2.0/MIT", "license_ids": [ @@ -66345,14 +66247,14 @@ ], "license_file": "LICENSE-APACHE" }, - "simdutf8 0.1.5": { + "simdutf8 0.1.4": { "name": "simdutf8", - "version": "0.1.5", + "version": "0.1.4", "package_url": "https://github.com/rusticstuff/simdutf8", "repository": { "Http": { - "url": "https://static.crates.io/crates/simdutf8/0.1.5/download", - "sha256": "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" + "url": "https://static.crates.io/crates/simdutf8/0.1.4/download", + "sha256": "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" } }, "targets": [ @@ -66375,7 +66277,7 @@ "**" ], "edition": "2018", - "version": "0.1.5" + "version": "0.1.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -66384,14 +66286,14 @@ ], "license_file": "LICENSE-Apache" }, - "similar 2.6.0": { + "similar 2.2.1": { "name": "similar", - "version": "2.6.0", + "version": "2.2.1", "package_url": "https://github.com/mitsuhiko/similar", "repository": { "Http": { - "url": "https://static.crates.io/crates/similar/2.6.0/download", - "sha256": "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e" + "url": "https://static.crates.io/crates/similar/2.2.1/download", + "sha256": "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf" } }, "targets": [ @@ -66422,7 +66324,7 @@ "selects": {} }, "edition": "2018", - "version": "2.6.0" + "version": "2.2.1" }, "license": "Apache-2.0", "license_ids": [ @@ -66430,14 +66332,14 @@ ], "license_file": "LICENSE" }, - "simple_asn1 0.6.3": { + "simple_asn1 0.6.2": { "name": "simple_asn1", - "version": "0.6.3", + "version": "0.6.2", "package_url": "https://github.com/acw/simple_asn1", "repository": { "Http": { - "url": "https://static.crates.io/crates/simple_asn1/0.6.3/download", - "sha256": "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" + "url": "https://static.crates.io/crates/simple_asn1/0.6.2/download", + "sha256": "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" } }, "targets": [ @@ -66470,18 +66372,18 @@ "target": "num_traits" }, { - "id": "thiserror 2.0.11", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], "selects": {} }, "edition": "2018", - "version": "0.6.3" + "version": "0.6.2" }, "license": "ISC", "license_ids": [ @@ -66531,15 +66433,15 @@ "deps": { "common": [ { - "id": "colored 2.2.0", + "id": "colored 2.0.4", "target": "colored" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -66648,7 +66550,7 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -66656,7 +66558,7 @@ "target": "termcolor" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -66718,60 +66620,14 @@ ], "license_file": null }, - "siphasher 1.0.1": { - "name": "siphasher", - "version": "1.0.1", - "package_url": "https://github.com/jedisct1/rust-siphash", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/siphasher/1.0.1/download", - "sha256": "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "siphasher", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "siphasher", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.1" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": null - }, - "slab 0.4.9": { + "slab 0.4.8": { "name": "slab", - "version": "0.4.9", + "version": "0.4.8", "package_url": "https://github.com/tokio-rs/slab", "repository": { "Http": { - "url": "https://static.crates.io/crates/slab/0.4.9/download", - "sha256": "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" + "url": "https://static.crates.io/crates/slab/0.4.8/download", + "sha256": "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" } }, "targets": [ @@ -66815,14 +66671,14 @@ "deps": { "common": [ { - "id": "slab 0.4.9", + "id": "slab 0.4.8", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.4.9" + "version": "0.4.8" }, "build_script_attrs": { "compile_data_glob": [ @@ -66834,7 +66690,7 @@ "deps": { "common": [ { - "id": "autocfg 1.4.0", + "id": "autocfg 1.1.0", "target": "autocfg" } ], @@ -66902,7 +66758,7 @@ "deps": { "common": [ { - "id": "erased-serde 0.3.31", + "id": "erased-serde 0.3.28", "target": "erased_serde" }, { @@ -66982,7 +66838,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { @@ -66998,7 +66854,7 @@ "target": "take_mut" }, { - "id": "thread_local 1.1.8", + "id": "thread_local 1.1.7", "target": "thread_local" } ], @@ -67062,11 +66918,11 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -67142,7 +66998,7 @@ "deps": { "common": [ { - "id": "erased-serde 0.3.31", + "id": "erased-serde 0.3.28", "target": "erased_serde" }, { @@ -67150,7 +67006,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -67158,7 +67014,7 @@ "target": "slog" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -67211,7 +67067,7 @@ "target": "arc_swap" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -67270,7 +67126,7 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -67327,7 +67183,7 @@ "deps": { "common": [ { - "id": "is-terminal 0.4.13", + "id": "is-terminal 0.4.9", "target": "is_terminal" }, { @@ -67339,11 +67195,11 @@ "target": "term" }, { - "id": "thread_local 1.1.8", + "id": "thread_local 1.1.7", "target": "thread_local" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -67360,14 +67216,14 @@ ], "license_file": "LICENSE-APACHE" }, - "slotmap 1.0.7": { + "slotmap 1.0.6": { "name": "slotmap", - "version": "1.0.7", + "version": "1.0.6", "package_url": "https://github.com/orlp/slotmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/slotmap/1.0.7/download", - "sha256": "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" + "url": "https://static.crates.io/crates/slotmap/1.0.6/download", + "sha256": "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342" } }, "targets": [ @@ -67411,14 +67267,14 @@ "deps": { "common": [ { - "id": "slotmap 1.0.7", + "id": "slotmap 1.0.6", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.0.7" + "version": "1.0.6" }, "build_script_attrs": { "compile_data_glob": [ @@ -67430,7 +67286,7 @@ "deps": { "common": [ { - "id": "version_check 0.9.5", + "id": "version_check 0.9.4", "target": "version_check" } ], @@ -67600,15 +67456,15 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -67624,14 +67480,14 @@ ], "license_file": "LICENSE-APACHE" }, - "socket2 0.4.10": { + "socket2 0.4.9": { "name": "socket2", - "version": "0.4.10", + "version": "0.4.9", "package_url": "https://github.com/rust-lang/socket2", "repository": { "Http": { - "url": "https://static.crates.io/crates/socket2/0.4.10/download", - "sha256": "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" + "url": "https://static.crates.io/crates/socket2/0.4.9/download", + "sha256": "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" } }, "targets": [ @@ -67664,7 +67520,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -67677,7 +67533,7 @@ } }, "edition": "2018", - "version": "0.4.10" + "version": "0.4.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -67686,14 +67542,14 @@ ], "license_file": "LICENSE-APACHE" }, - "socket2 0.5.8": { + "socket2 0.5.7": { "name": "socket2", - "version": "0.5.8", + "version": "0.5.7", "package_url": "https://github.com/rust-lang/socket2", "repository": { "Http": { - "url": "https://static.crates.io/crates/socket2/0.5.8/download", - "sha256": "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8" + "url": "https://static.crates.io/crates/socket2/0.5.7/download", + "sha256": "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" } }, "targets": [ @@ -67726,7 +67582,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -67739,7 +67595,7 @@ } }, "edition": "2021", - "version": "0.5.8" + "version": "0.5.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -67818,10 +67674,94 @@ "crate_features": { "common": [ "mutex", - "once", "spin_mutex" ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + "once" + ], + "aarch64-apple-ios": [ + "once" + ], + "aarch64-apple-ios-sim": [ + "once" + ], + "aarch64-linux-android": [ + "once" + ], + "aarch64-pc-windows-msvc": [ + "once" + ], + "aarch64-unknown-fuchsia": [ + "once" + ], + "aarch64-unknown-linux-gnu": [ + "once" + ], + "aarch64-unknown-nixos-gnu": [ + "once" + ], + "aarch64-unknown-nto-qnx710": [ + "once" + ], + "arm-unknown-linux-gnueabi": [ + "once" + ], + "armv7-linux-androideabi": [ + "once" + ], + "armv7-unknown-linux-gnueabi": [ + "once" + ], + "i686-apple-darwin": [ + "once" + ], + "i686-linux-android": [ + "once" + ], + "i686-pc-windows-msvc": [ + "once" + ], + "i686-unknown-freebsd": [ + "once" + ], + "i686-unknown-linux-gnu": [ + "once" + ], + "thumbv7em-none-eabi": [ + "once" + ], + "thumbv8m.main-none-eabi": [ + "once" + ], + "x86_64-apple-darwin": [ + "once" + ], + "x86_64-apple-ios": [ + "once" + ], + "x86_64-linux-android": [ + "once" + ], + "x86_64-pc-windows-msvc": [ + "once" + ], + "x86_64-unknown-freebsd": [ + "once" + ], + "x86_64-unknown-fuchsia": [ + "once" + ], + "x86_64-unknown-linux-gnu": [ + "once" + ], + "x86_64-unknown-nixos-gnu": [ + "once" + ], + "x86_64-unknown-none": [ + "once" + ] + } }, "edition": "2015", "version": "0.9.8" @@ -67832,54 +67772,6 @@ ], "license_file": "LICENSE" }, - "spinning_top 0.3.0": { - "name": "spinning_top", - "version": "0.3.0", - "package_url": "https://github.com/rust-osdev/spinning_top", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/spinning_top/0.3.0/download", - "sha256": "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" - } - }, - "targets": [ - { - "Library": { - "crate_name": "spinning_top", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "spinning_top", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "lock_api 0.4.12", - "target": "lock_api" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.0" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "spki 0.7.3": { "name": "spki", "version": "0.7.3", @@ -67920,7 +67812,7 @@ "deps": { "common": [ { - "id": "der 0.7.9", + "id": "der 0.7.7", "target": "der" } ], @@ -68017,7 +67909,7 @@ "target": "bitflags" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -68088,14 +67980,14 @@ ], "license_file": "LICENSE-APACHE" }, - "stacker 0.1.17": { + "stacker 0.1.15": { "name": "stacker", - "version": "0.1.17", + "version": "0.1.15", "package_url": "https://github.com/rust-lang/stacker", "repository": { "Http": { - "url": "https://static.crates.io/crates/stacker/0.1.17/download", - "sha256": "799c883d55abdb5e98af1a7b3f23b9b6de8ecada0ecac058672d7635eb48ca7b" + "url": "https://static.crates.io/crates/stacker/0.1.15/download", + "sha256": "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce" } }, "targets": [ @@ -68136,29 +68028,29 @@ "target": "cfg_if" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "psm 0.1.24", + "id": "psm 0.1.21", "target": "psm" }, { - "id": "stacker 0.1.17", + "id": "stacker 0.1.15", "target": "build_script_build" } ], "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.59.0", - "target": "windows_sys" + "id": "winapi 0.3.9", + "target": "winapi" } ] } }, "edition": "2015", - "version": "0.1.17" + "version": "0.1.15" }, "build_script_attrs": { "compile_data_glob": [ @@ -68170,7 +68062,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -68267,7 +68159,7 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], @@ -68362,15 +68254,15 @@ "deps": { "common": [ { - "id": "new_debug_unreachable 1.0.6", + "id": "new_debug_unreachable 1.0.4", "target": "debug_unreachable" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { @@ -68438,11 +68330,11 @@ "target": "phf_shared" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" } ], @@ -68566,15 +68458,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -68631,15 +68523,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -68655,6 +68547,62 @@ ], "license_file": null }, + "strum 0.25.0": { + "name": "strum", + "version": "0.25.0", + "package_url": "https://github.com/Peternator7/strum", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/strum/0.25.0/download", + "sha256": "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" + } + }, + "targets": [ + { + "Library": { + "crate_name": "strum", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "strum", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "derive", + "std", + "strum_macros" + ], + "selects": {} + }, + "edition": "2018", + "proc_macro_deps": { + "common": [ + { + "id": "strum_macros 0.25.3", + "target": "strum_macros" + } + ], + "selects": {} + }, + "version": "0.25.0" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, "strum 0.26.3": { "name": "strum", "version": "0.26.3", @@ -68711,6 +68659,74 @@ ], "license_file": "LICENSE" }, + "strum_macros 0.25.3": { + "name": "strum_macros", + "version": "0.25.3", + "package_url": "https://github.com/Peternator7/strum", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/strum_macros/0.25.3/download", + "sha256": "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "strum_macros", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "strum_macros", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "heck 0.4.1", + "target": "heck" + }, + { + "id": "proc-macro2 1.0.89", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.37", + "target": "quote" + }, + { + "id": "syn 2.0.87", + "target": "syn" + } + ], + "selects": {} + }, + "edition": "2018", + "proc_macro_deps": { + "common": [ + { + "id": "rustversion 1.0.14", + "target": "rustversion" + } + ], + "selects": {} + }, + "version": "0.25.3" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, "strum_macros 0.26.4": { "name": "strum_macros", "version": "0.26.4", @@ -68747,15 +68763,15 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -68765,7 +68781,7 @@ "proc_macro_deps": { "common": [ { - "id": "rustversion 1.0.19", + "id": "rustversion 1.0.14", "target": "rustversion" } ], @@ -68779,14 +68795,14 @@ ], "license_file": "LICENSE" }, - "stubborn-io 0.3.5": { + "stubborn-io 0.3.2": { "name": "stubborn-io", - "version": "0.3.5", + "version": "0.3.2", "package_url": "https://github.com/craftytrickster/stubborn-io", "repository": { "Http": { - "url": "https://static.crates.io/crates/stubborn-io/0.3.5/download", - "sha256": "373a722240991e091384a571e1fd8abde15eca4494a1a2bff95dbf603d15a866" + "url": "https://static.crates.io/crates/stubborn-io/0.3.2/download", + "sha256": "b261fbca19f25e0ac726f6efb3c3f53949e18ba4b126c16f8ca625730daa1a9c" } }, "targets": [ @@ -68808,17 +68824,10 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "default", - "log" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -68826,14 +68835,14 @@ "target": "rand" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "0.3.5" + "version": "0.3.2" }, "license": "MIT", "license_ids": [ @@ -68925,14 +68934,14 @@ ], "license_file": "LICENSE" }, - "symbolic-common 12.13.2": { + "symbolic-common 12.4.0": { "name": "symbolic-common", - "version": "12.13.2", + "version": "12.4.0", "package_url": "https://github.com/getsentry/symbolic", "repository": { "Http": { - "url": "https://static.crates.io/crates/symbolic-common/12.13.2/download", - "sha256": "8150eae9699e3c73a3e6431dc1f80d87748797c0457336af23e94c1de619ed24" + "url": "https://static.crates.io/crates/symbolic-common/12.4.0/download", + "sha256": "9e0e9bc48b3852f36a84f8d0da275d50cb3c2b88b59b9ec35fdd8b7fa239e37d" } }, "targets": [ @@ -68961,7 +68970,7 @@ "target": "debugid" }, { - "id": "memmap2 0.9.5", + "id": "memmap2 0.5.10", "target": "memmap2" }, { @@ -68969,14 +68978,14 @@ "target": "stable_deref_trait" }, { - "id": "uuid 1.12.0", + "id": "uuid 1.11.0", "target": "uuid" } ], "selects": {} }, "edition": "2021", - "version": "12.13.2" + "version": "12.4.0" }, "license": "MIT", "license_ids": [ @@ -68984,14 +68993,14 @@ ], "license_file": null }, - "symbolic-demangle 12.13.2": { + "symbolic-demangle 12.4.0": { "name": "symbolic-demangle", - "version": "12.13.2", + "version": "12.4.0", "package_url": "https://github.com/getsentry/symbolic", "repository": { "Http": { - "url": "https://static.crates.io/crates/symbolic-demangle/12.13.2/download", - "sha256": "95f4a9846f7a8933b6d198c022faa2c9bd89e1a970bed9d9a98d25708bf8de17" + "url": "https://static.crates.io/crates/symbolic-demangle/12.4.0/download", + "sha256": "691e53bdc0702aba3a5abc2cffff89346fcbd4050748883c7e2f714b33a69045" } }, "targets": [ @@ -69035,22 +69044,22 @@ "deps": { "common": [ { - "id": "rustc-demangle 0.1.24", + "id": "rustc-demangle 0.1.23", "target": "rustc_demangle" }, { - "id": "symbolic-common 12.13.2", + "id": "symbolic-common 12.4.0", "target": "symbolic_common" }, { - "id": "symbolic-demangle 12.13.2", + "id": "symbolic-demangle 12.4.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "12.13.2" + "version": "12.4.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -69122,70 +69131,84 @@ "selects": { "aarch64-apple-darwin": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "aarch64-pc-windows-msvc": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "aarch64-unknown-linux-gnu": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "aarch64-unknown-nixos-gnu": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "arm-unknown-linux-gnueabi": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "i686-pc-windows-msvc": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "i686-unknown-linux-gnu": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "powerpc-unknown-linux-gnu": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "s390x-unknown-linux-gnu": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "x86_64-apple-darwin": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "x86_64-pc-windows-msvc": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "x86_64-unknown-freebsd": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "x86_64-unknown-linux-gnu": [ "extra-traits", - "visit" + "visit", + "visit-mut" ], "x86_64-unknown-nixos-gnu": [ "extra-traits", - "visit" + "visit", + "visit-mut" ] } }, "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -69193,7 +69216,7 @@ "target": "build_script_build" }, { - "id": "unicode-ident 1.0.14", + "id": "unicode-ident 1.0.11", "target": "unicode_ident" } ], @@ -69217,14 +69240,14 @@ ], "license_file": "LICENSE-APACHE" }, - "syn 2.0.96": { + "syn 2.0.87": { "name": "syn", - "version": "2.0.96", + "version": "2.0.87", "package_url": "https://github.com/dtolnay/syn", "repository": { "Http": { - "url": "https://static.crates.io/crates/syn/2.0.96/download", - "sha256": "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" + "url": "https://static.crates.io/crates/syn/2.0.87/download", + "sha256": "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" } }, "targets": [ @@ -69320,22 +69343,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "unicode-ident 1.0.14", + "id": "unicode-ident 1.0.11", "target": "unicode_ident" } ], "selects": {} }, "edition": "2021", - "version": "2.0.96" + "version": "2.0.87" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -69382,14 +69405,14 @@ ], "license_file": "LICENSE" }, - "sync_wrapper 1.0.2": { + "sync_wrapper 1.0.1": { "name": "sync_wrapper", - "version": "1.0.2", + "version": "1.0.1", "package_url": "https://github.com/Actyx/sync_wrapper", "repository": { "Http": { - "url": "https://static.crates.io/crates/sync_wrapper/1.0.2/download", - "sha256": "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" + "url": "https://static.crates.io/crates/sync_wrapper/1.0.1/download", + "sha256": "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" } }, "targets": [ @@ -69427,8 +69450,8 @@ ], "selects": {} }, - "edition": "2021", - "version": "1.0.2" + "edition": "2018", + "version": "1.0.1" }, "license": "Apache-2.0", "license_ids": [ @@ -69475,15 +69498,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -69602,7 +69625,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -69630,14 +69653,14 @@ ], "license_file": null }, - "systemstat 0.2.4": { + "systemstat 0.2.3": { "name": "systemstat", - "version": "0.2.4", + "version": "0.2.3", "package_url": "https://github.com/valpackett/systemstat", "repository": { "Http": { - "url": "https://static.crates.io/crates/systemstat/0.2.4/download", - "sha256": "668a4db78b439df482c238f559e4ea869017f9e62ef0a059c8bfcd841a4df544" + "url": "https://static.crates.io/crates/systemstat/0.2.3/download", + "sha256": "a24aec24a9312c83999a28e3ef9db7e2afd5c64bf47725b758cdc1cafd5b0bd2" } }, "targets": [ @@ -69666,15 +69689,15 @@ "target": "bytesize" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -69694,7 +69717,7 @@ } }, "edition": "2018", - "version": "0.2.4" + "version": "0.2.3" }, "license": "Unlicense", "license_ids": [ @@ -69817,14 +69840,14 @@ ], "license_file": "LICENSE.txt" }, - "tar 0.4.43": { + "tar 0.4.39": { "name": "tar", - "version": "0.4.43", + "version": "0.4.39", "package_url": "https://github.com/alexcrichton/tar-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/tar/0.4.43/download", - "sha256": "c65998313f8e17d0d553d28f91a0df93e4dbbbf770279c7bc21ca0f09ea1a1f6" + "url": "https://static.crates.io/crates/tar/0.4.39/download", + "sha256": "ec96d2ffad078296368d46ff1cb309be1c23c513b4ab0e22a45de0185275ac96" } }, "targets": [ @@ -69856,167 +69879,167 @@ "deps": { "common": [ { - "id": "filetime 0.2.25", + "id": "filetime 0.2.21", "target": "filetime" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "aarch64-apple-ios": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "aarch64-apple-ios-sim": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "aarch64-linux-android": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "aarch64-unknown-fuchsia": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "aarch64-unknown-linux-gnu": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "arm-unknown-linux-gnueabi": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "armv7-linux-androideabi": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], "i686-apple-darwin": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "i686-linux-android": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "i686-unknown-freebsd": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "i686-unknown-linux-gnu": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "powerpc-unknown-linux-gnu": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "s390x-unknown-linux-gnu": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "x86_64-apple-darwin": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "x86_64-apple-ios": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "x86_64-linux-android": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "x86_64-unknown-freebsd": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "x86_64-unknown-fuchsia": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "x86_64-unknown-linux-gnu": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "xattr 1.4.0", + "id": "xattr 0.2.3", "target": "xattr" } ] } }, - "edition": "2021", - "version": "0.4.43" + "edition": "2018", + "version": "0.4.39" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -70144,7 +70167,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -70164,7 +70187,7 @@ "target": "opentelemetry" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.2", "target": "pin_project" }, { @@ -70180,11 +70203,11 @@ "target": "static_assertions" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -70262,11 +70285,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -70285,14 +70308,14 @@ ], "license_file": "LICENSE" }, - "tempfile 3.15.0": { + "tempfile 3.12.0": { "name": "tempfile", - "version": "3.15.0", + "version": "3.12.0", "package_url": "https://github.com/Stebalien/tempfile", "repository": { "Http": { - "url": "https://static.crates.io/crates/tempfile/3.15.0/download", - "sha256": "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" + "url": "https://static.crates.io/crates/tempfile/3.12.0/download", + "sha256": "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" } }, "targets": [ @@ -70314,13 +70337,6 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "default", - "getrandom" - ], - "selects": {} - }, "deps": { "common": [ { @@ -70328,90 +70344,18 @@ "target": "cfg_if" }, { - "id": "fastrand 2.3.0", + "id": "fastrand 2.1.0", "target": "fastrand" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "selects": { - "aarch64-apple-darwin": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "aarch64-apple-ios": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "aarch64-apple-ios-sim": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "aarch64-linux-android": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "aarch64-pc-windows-msvc": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "aarch64-unknown-fuchsia": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "aarch64-unknown-linux-gnu": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "aarch64-unknown-nixos-gnu": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "aarch64-unknown-nto-qnx710": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "arm-unknown-linux-gnueabi": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "armv7-linux-androideabi": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "armv7-unknown-linux-gnueabi": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], "cfg(any(unix, target_os = \"wasi\"))": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -70420,107 +70364,11 @@ "id": "windows-sys 0.59.0", "target": "windows_sys" } - ], - "i686-apple-darwin": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "i686-linux-android": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "i686-pc-windows-msvc": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "i686-unknown-freebsd": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "i686-unknown-linux-gnu": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "powerpc-unknown-linux-gnu": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "s390x-unknown-linux-gnu": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "wasm32-wasip1": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "x86_64-apple-darwin": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "x86_64-apple-ios": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "x86_64-linux-android": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "x86_64-pc-windows-msvc": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "x86_64-unknown-freebsd": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "x86_64-unknown-fuchsia": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "x86_64-unknown-linux-gnu": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "getrandom 0.2.15", - "target": "getrandom" - } ] } }, "edition": "2021", - "version": "3.15.0" + "version": "3.12.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -70703,7 +70551,7 @@ "selects": { "cfg(windows)": [ { - "id": "rustversion 1.0.19", + "id": "rustversion 1.0.14", "target": "rustversion" } ] @@ -70752,7 +70600,7 @@ "selects": { "cfg(windows)": [ { - "id": "winapi-util 0.1.9", + "id": "winapi-util 0.1.5", "target": "winapi_util" } ] @@ -70802,7 +70650,7 @@ "selects": { "cfg(not(windows))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -70856,7 +70704,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -70871,14 +70719,14 @@ ], "license_file": "LICENSE" }, - "termtree 0.5.1": { + "termtree 0.4.1": { "name": "termtree", - "version": "0.5.1", + "version": "0.4.1", "package_url": "https://github.com/rust-cli/termtree", "repository": { "Http": { - "url": "https://static.crates.io/crates/termtree/0.5.1/download", - "sha256": "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683" + "url": "https://static.crates.io/crates/termtree/0.4.1/download", + "sha256": "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" } }, "targets": [ @@ -70900,14 +70748,14 @@ "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "0.5.1" + "edition": "2018", + "version": "0.4.1" }, "license": "MIT", "license_ids": [ "MIT" ], - "license_file": "LICENSE-MIT" + "license_file": "LICENSE" }, "test-strategy 0.3.1": { "name": "test-strategy", @@ -70941,11 +70789,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -70953,7 +70801,7 @@ "target": "structmeta" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -71005,7 +70853,7 @@ "target": "getopts" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -71025,14 +70873,14 @@ ], "license_file": null }, - "textplots 0.8.6": { + "textplots 0.8.4": { "name": "textplots", - "version": "0.8.6", + "version": "0.8.4", "package_url": "https://github.com/loony-bean/textplots-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/textplots/0.8.6/download", - "sha256": "f59b64803118dbff62f92842b3154a2c802dfd8e18660132bbcbfb141c637ae3" + "url": "https://static.crates.io/crates/textplots/0.8.4/download", + "sha256": "2171116bd71c738068fe42091b1509d70135a768443c9afd6c179b83dc6cdc79" } }, "targets": [ @@ -71061,14 +70909,14 @@ "target": "drawille" }, { - "id": "rgb 0.8.50", + "id": "rgb 0.8.37", "target": "rgb" } ], "selects": {} }, "edition": "2021", - "version": "0.8.6" + "version": "0.8.4" }, "license": "MIT", "license_ids": [ @@ -71076,14 +70924,14 @@ ], "license_file": null }, - "textwrap 0.16.1": { + "textwrap 0.16.0": { "name": "textwrap", - "version": "0.16.1", + "version": "0.16.0", "package_url": "https://github.com/mgeisler/textwrap", "repository": { "Http": { - "url": "https://static.crates.io/crates/textwrap/0.16.1/download", - "sha256": "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" + "url": "https://static.crates.io/crates/textwrap/0.16.0/download", + "sha256": "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" } }, "targets": [ @@ -71106,7 +70954,7 @@ "**" ], "edition": "2021", - "version": "0.16.1" + "version": "0.16.0" }, "license": "MIT", "license_ids": [ @@ -71114,14 +70962,14 @@ ], "license_file": "LICENSE" }, - "thiserror 1.0.69": { + "thiserror 1.0.68": { "name": "thiserror", - "version": "1.0.69", + "version": "1.0.68", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror/1.0.69/download", - "sha256": "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" + "url": "https://static.crates.io/crates/thiserror/1.0.68/download", + "sha256": "02dd99dc800bbb97186339685293e1cc5d9df1f8fae2d0aecd9ff1c77efea892" } }, "targets": [ @@ -71158,7 +71006,7 @@ "deps": { "common": [ { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "build_script_build" } ], @@ -71168,13 +71016,13 @@ "proc_macro_deps": { "common": [ { - "id": "thiserror-impl 1.0.69", + "id": "thiserror-impl 1.0.68", "target": "thiserror_impl" } ], "selects": {} }, - "version": "1.0.69" + "version": "1.0.68" }, "build_script_attrs": { "compile_data_glob": [ @@ -71191,14 +71039,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thiserror 2.0.11": { + "thiserror 2.0.3": { "name": "thiserror", - "version": "2.0.11", + "version": "2.0.3", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror/2.0.11/download", - "sha256": "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" + "url": "https://static.crates.io/crates/thiserror/2.0.3/download", + "sha256": "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa" } }, "targets": [ @@ -71242,7 +71090,7 @@ "deps": { "common": [ { - "id": "thiserror 2.0.11", + "id": "thiserror 2.0.3", "target": "build_script_build" } ], @@ -71252,13 +71100,13 @@ "proc_macro_deps": { "common": [ { - "id": "thiserror-impl 2.0.11", + "id": "thiserror-impl 2.0.3", "target": "thiserror_impl" } ], "selects": {} }, - "version": "2.0.11" + "version": "2.0.3" }, "build_script_attrs": { "compile_data_glob": [ @@ -71275,14 +71123,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thiserror-impl 1.0.69": { + "thiserror-impl 1.0.68": { "name": "thiserror-impl", - "version": "1.0.69", + "version": "1.0.68", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror-impl/1.0.69/download", - "sha256": "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" + "url": "https://static.crates.io/crates/thiserror-impl/1.0.68/download", + "sha256": "a7c61ec9a6f64d2793d8a45faba21efbe3ced62a886d44c36a009b2b519b4c7e" } }, "targets": [ @@ -71307,22 +71155,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.0.69" + "version": "1.0.68" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -71331,14 +71179,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thiserror-impl 2.0.11": { + "thiserror-impl 2.0.3": { "name": "thiserror-impl", - "version": "2.0.11", + "version": "2.0.3", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror-impl/2.0.11/download", - "sha256": "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" + "url": "https://static.crates.io/crates/thiserror-impl/2.0.3/download", + "sha256": "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568" } }, "targets": [ @@ -71363,22 +71211,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.0.11" + "version": "2.0.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -71426,14 +71274,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thread_local 1.1.8": { + "thread_local 1.1.7": { "name": "thread_local", - "version": "1.1.8", + "version": "1.1.7", "package_url": "https://github.com/Amanieu/thread_local-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/thread_local/1.1.8/download", - "sha256": "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" + "url": "https://static.crates.io/crates/thread_local/1.1.7/download", + "sha256": "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" } }, "targets": [ @@ -71462,14 +71310,14 @@ "target": "cfg_if" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], "selects": {} }, "edition": "2021", - "version": "1.1.8" + "version": "1.1.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -71564,7 +71412,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -71644,7 +71492,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -71675,7 +71523,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -71737,7 +71585,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -71757,14 +71605,14 @@ ], "license_file": "LICENSE-APACHE" }, - "time 0.3.37": { + "time 0.3.36": { "name": "time", - "version": "0.3.37", + "version": "0.3.36", "package_url": "https://github.com/time-rs/time", "repository": { "Http": { - "url": "https://static.crates.io/crates/time/0.3.37/download", - "sha256": "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" + "url": "https://static.crates.io/crates/time/0.3.36/download", + "sha256": "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" } }, "targets": [ @@ -71805,7 +71653,7 @@ "target": "deranged" }, { - "id": "itoa 1.0.14", + "id": "itoa 1.0.9", "target": "itoa" }, { @@ -71824,241 +71672,241 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "aarch64-apple-ios": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "aarch64-apple-ios-sim": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "aarch64-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "aarch64-unknown-fuchsia": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "aarch64-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "arm-unknown-linux-gnueabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "armv7-linux-androideabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "i686-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "i686-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "i686-unknown-freebsd": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "i686-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "powerpc-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "s390x-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "x86_64-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "x86_64-apple-ios": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "x86_64-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "x86_64-unknown-freebsd": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "x86_64-unknown-fuchsia": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "x86_64-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "num_threads 0.1.7", + "id": "num_threads 0.1.6", "target": "num_threads" } ] @@ -72068,13 +71916,13 @@ "proc_macro_deps": { "common": [ { - "id": "time-macros 0.2.19", + "id": "time-macros 0.2.18", "target": "time_macros" } ], "selects": {} }, - "version": "0.3.37" + "version": "0.3.36" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -72122,14 +71970,14 @@ ], "license_file": "LICENSE-Apache" }, - "time-macros 0.2.19": { + "time-macros 0.2.18": { "name": "time-macros", - "version": "0.2.19", + "version": "0.2.18", "package_url": "https://github.com/time-rs/time", "repository": { "Http": { - "url": "https://static.crates.io/crates/time-macros/0.2.19/download", - "sha256": "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" + "url": "https://static.crates.io/crates/time-macros/0.2.18/download", + "sha256": "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" } }, "targets": [ @@ -72172,7 +72020,7 @@ "selects": {} }, "edition": "2021", - "version": "0.2.19" + "version": "0.2.18" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -72351,7 +72199,7 @@ "proc_macro_deps": { "common": [ { - "id": "displaydoc 0.2.5", + "id": "displaydoc 0.2.4", "target": "displaydoc" } ], @@ -72401,7 +72249,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -72417,14 +72265,14 @@ ], "license_file": "LICENSE-APACHE" }, - "tinyvec 1.8.1": { + "tinyvec 1.6.0": { "name": "tinyvec", - "version": "1.8.1", + "version": "1.6.0", "package_url": "https://github.com/Lokathor/tinyvec", "repository": { "Http": { - "url": "https://static.crates.io/crates/tinyvec/1.8.1/download", - "sha256": "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" + "url": "https://static.crates.io/crates/tinyvec/1.6.0/download", + "sha256": "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" } }, "targets": [ @@ -72464,7 +72312,7 @@ "selects": {} }, "edition": "2018", - "version": "1.8.1" + "version": "1.6.0" }, "license": "Zlib OR Apache-2.0 OR MIT", "license_ids": [ @@ -72594,15 +72442,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -72618,14 +72466,14 @@ ], "license_file": null }, - "tokio 1.43.0": { + "tokio 1.42.0": { "name": "tokio", - "version": "1.43.0", + "version": "1.42.0", "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio/1.43.0/download", - "sha256": "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" + "url": "https://static.crates.io/crates/tokio/1.42.0/download", + "sha256": "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" } }, "targets": [ @@ -72690,78 +72538,78 @@ "target": "bytes" }, { - "id": "mio 1.0.3", + "id": "mio 1.0.2", "target": "mio" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "aarch64-apple-ios": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "aarch64-apple-ios-sim": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "aarch64-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "aarch64-pc-windows-msvc": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { @@ -72771,139 +72619,139 @@ ], "aarch64-unknown-fuchsia": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "aarch64-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "aarch64-unknown-nixos-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "arm-unknown-linux-gnueabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "armv7-linux-androideabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "armv7-unknown-linux-gnueabi": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "cfg(tokio_taskdump)": [ { - "id": "backtrace 0.3.74", + "id": "backtrace 0.3.68", "target": "backtrace" } ], "i686-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "i686-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "i686-pc-windows-msvc": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { @@ -72913,129 +72761,129 @@ ], "i686-unknown-freebsd": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "i686-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "powerpc-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "riscv32imc-unknown-none-elf": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "riscv64gc-unknown-none-elf": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "s390x-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "thumbv7em-none-eabi": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "thumbv8m.main-none-eabi": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "x86_64-apple-darwin": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "x86_64-apple-ios": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "x86_64-linux-android": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "x86_64-pc-windows-msvc": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { @@ -73045,63 +72893,63 @@ ], "x86_64-unknown-freebsd": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "x86_64-unknown-fuchsia": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "x86_64-unknown-linux-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "signal-hook-registry 1.4.2", + "id": "signal-hook-registry 1.4.1", "target": "signal_hook_registry" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ], "x86_64-unknown-none": [ { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" } ] @@ -73111,13 +72959,13 @@ "proc_macro_deps": { "common": [ { - "id": "tokio-macros 2.5.0", + "id": "tokio-macros 2.4.0", "target": "tokio_macros" } ], "selects": {} }, - "version": "1.43.0" + "version": "1.42.0" }, "license": "MIT", "license_ids": [ @@ -73157,11 +73005,11 @@ "deps": { "common": [ { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -73177,14 +73025,14 @@ ], "license_file": "LICENSE-APACHE" }, - "tokio-macros 2.5.0": { + "tokio-macros 2.4.0": { "name": "tokio-macros", - "version": "2.5.0", + "version": "2.4.0", "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio-macros/2.5.0/download", - "sha256": "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" + "url": "https://static.crates.io/crates/tokio-macros/2.4.0/download", + "sha256": "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" } }, "targets": [ @@ -73209,22 +73057,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.5.0" + "version": "2.4.0" }, "license": "MIT", "license_ids": [ @@ -73276,11 +73124,11 @@ "target": "futures_util" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -73344,7 +73192,7 @@ "target": "rustls" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -73405,12 +73253,12 @@ "target": "rustls" }, { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -73426,14 +73274,14 @@ ], "license_file": "LICENSE-APACHE" }, - "tokio-rustls 0.26.1": { + "tokio-rustls 0.26.0": { "name": "tokio-rustls", - "version": "0.26.1", + "version": "0.26.0", "package_url": "https://github.com/rustls/tokio-rustls", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio-rustls/0.26.1/download", - "sha256": "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37" + "url": "https://static.crates.io/crates/tokio-rustls/0.26.0/download", + "sha256": "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" } }, "targets": [ @@ -73466,20 +73314,25 @@ "deps": { "common": [ { - "id": "rustls 0.23.21", + "id": "rustls 0.23.18", "target": "rustls" }, { - "id": "tokio 1.43.0", + "id": "rustls-pki-types 1.10.0", + "target": "rustls_pki_types", + "alias": "pki_types" + }, + { + "id": "tokio 1.42.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "0.26.1" + "version": "0.26.0" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -73546,7 +73399,7 @@ "target": "futures_sink" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.2", "target": "pin_project" }, { @@ -73554,7 +73407,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -73564,7 +73417,7 @@ "proc_macro_deps": { "common": [ { - "id": "educe 0.4.23", + "id": "educe 0.4.22", "target": "educe" } ], @@ -73618,7 +73471,7 @@ "deps": { "common": [ { - "id": "either 1.13.0", + "id": "either 1.8.1", "target": "either" }, { @@ -73626,11 +73479,11 @@ "target": "futures_util" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -73689,11 +73542,11 @@ "target": "futures_core" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -73752,7 +73605,7 @@ "target": "futures_core" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -73816,11 +73669,11 @@ "target": "futures_util" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -73909,15 +73762,15 @@ "target": "futures_util" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "slab 0.4.9", + "id": "slab 0.4.8", "target": "slab" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" } ], @@ -74025,14 +73878,76 @@ ], "license_file": "LICENSE-APACHE" }, - "toml_edit 0.22.22": { + "toml_edit 0.19.14": { + "name": "toml_edit", + "version": "0.19.14", + "package_url": "https://github.com/toml-rs/toml", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/toml_edit/0.19.14/download", + "sha256": "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" + } + }, + "targets": [ + { + "Library": { + "crate_name": "toml_edit", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "toml_edit", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "indexmap 2.2.6", + "target": "indexmap" + }, + { + "id": "toml_datetime 0.6.8", + "target": "toml_datetime" + }, + { + "id": "winnow 0.5.0", + "target": "winnow" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.19.14" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "toml_edit 0.22.20": { "name": "toml_edit", - "version": "0.22.22", + "version": "0.22.20", "package_url": "https://github.com/toml-rs/toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml_edit/0.22.22/download", - "sha256": "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" + "url": "https://static.crates.io/crates/toml_edit/0.22.20/download", + "sha256": "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d" } }, "targets": [ @@ -74065,7 +73980,7 @@ "deps": { "common": [ { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { @@ -74073,14 +73988,14 @@ "target": "toml_datetime" }, { - "id": "winnow 0.6.24", + "id": "winnow 0.6.20", "target": "winnow" } ], "selects": {} }, "edition": "2021", - "version": "0.22.22" + "version": "0.22.20" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -74149,7 +74064,7 @@ "target": "bytes" }, { - "id": "h2 0.4.7", + "id": "h2 0.4.4", "target": "h2" }, { @@ -74165,11 +74080,11 @@ "target": "http_body_util" }, { - "id": "hyper 1.5.2", + "id": "hyper 1.5.1", "target": "hyper" }, { - "id": "hyper-timeout 0.5.2", + "id": "hyper-timeout 0.5.1", "target": "hyper_timeout" }, { @@ -74181,19 +74096,19 @@ "target": "percent_encoding" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.2", "target": "pin_project" }, { - "id": "prost 0.13.4", + "id": "prost 0.13.3", "target": "prost" }, { - "id": "socket2 0.5.8", + "id": "socket2 0.5.7", "target": "socket2" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -74223,7 +74138,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" } ], @@ -74278,27 +74193,27 @@ "deps": { "common": [ { - "id": "prettyplease 0.2.29", + "id": "prettyplease 0.2.15", "target": "prettyplease" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "prost-build 0.13.4", + "id": "prost-build 0.13.3", "target": "prost_build" }, { - "id": "prost-types 0.13.4", + "id": "prost-types 0.13.3", "target": "prost_types" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -74385,11 +74300,11 @@ "target": "indexmap" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.2", "target": "pin_project" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -74397,11 +74312,11 @@ "target": "rand" }, { - "id": "slab 0.4.9", + "id": "slab 0.4.8", "target": "slab" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -74432,14 +74347,14 @@ ], "license_file": "LICENSE" }, - "tower 0.5.2": { + "tower 0.5.1": { "name": "tower", - "version": "0.5.2", + "version": "0.5.1", "package_url": "https://github.com/tower-rs/tower", "repository": { "Http": { - "url": "https://static.crates.io/crates/tower/0.5.2/download", - "sha256": "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" + "url": "https://static.crates.io/crates/tower/0.5.1/download", + "sha256": "2873938d487c3cfb9aed7546dc9f2711d867c9f90c46b889989a2cb84eba6b4f" } }, "targets": [ @@ -74506,27 +74421,27 @@ "target": "futures_util" }, { - "id": "hdrhistogram 7.5.4", + "id": "hdrhistogram 7.5.2", "target": "hdrhistogram" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "slab 0.4.9", + "id": "slab 0.4.8", "target": "slab" }, { - "id": "sync_wrapper 1.0.2", + "id": "sync_wrapper 0.1.2", "target": "sync_wrapper" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -74549,7 +74464,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.2" + "version": "0.5.1" }, "license": "MIT", "license_ids": [ @@ -74604,11 +74519,11 @@ "deps": { "common": [ { - "id": "base64 0.21.7", + "id": "base64 0.21.6", "target": "base64" }, { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -74632,11 +74547,11 @@ "target": "mime" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -74718,11 +74633,11 @@ "deps": { "common": [ { - "id": "async-compression 0.4.18", + "id": "async-compression 0.4.3", "target": "async_compression" }, { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -74746,11 +74661,11 @@ "target": "http_body_util" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -74758,7 +74673,7 @@ "target": "tokio_util" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.1", "target": "tower" }, { @@ -74774,7 +74689,7 @@ "target": "tracing" }, { - "id": "uuid 1.12.0", + "id": "uuid 1.11.0", "target": "uuid" } ], @@ -74871,7 +74786,7 @@ "target": "tower_service" }, { - "id": "ulid 1.1.4", + "id": "ulid 1.0.0", "target": "ulid" } ], @@ -74960,11 +74875,11 @@ "target": "futures_util" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.2", "target": "pin_project" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -74991,14 +74906,14 @@ ], "license_file": "LICENSE" }, - "tower_governor 0.4.3": { + "tower_governor 0.4.2": { "name": "tower_governor", - "version": "0.4.3", + "version": "0.4.2", "package_url": "https://github.com/benwis/tower-governor", "repository": { "Http": { - "url": "https://static.crates.io/crates/tower_governor/0.4.3/download", - "sha256": "aea939ea6cfa7c4880f3e7422616624f97a567c16df67b53b11f0d03917a8e46" + "url": "https://static.crates.io/crates/tower_governor/0.4.2/download", + "sha256": "313fa625fea5790ed56360a30ea980e41229cf482b4835801a67ef1922bf63b9" } }, "targets": [ @@ -75038,7 +74953,7 @@ "target": "forwarded_header_value" }, { - "id": "governor 0.6.3", + "id": "governor 0.6.0", "target": "governor" }, { @@ -75046,15 +74961,15 @@ "target": "http" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.2", "target": "pin_project" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tower 0.5.2", + "id": "tower 0.4.13", "target": "tower" }, { @@ -75065,14 +74980,14 @@ "selects": {} }, "edition": "2021", - "version": "0.4.3" + "version": "0.4.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE" + "license_file": null }, "tracing 0.1.41": { "name": "tracing", @@ -75116,11 +75031,11 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.13", "target": "pin_project_lite" }, { @@ -75180,15 +75095,15 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.14", + "id": "crossbeam-channel 0.5.13", "target": "crossbeam_channel" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" }, { @@ -75239,15 +75154,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -75302,7 +75217,7 @@ "deps": { "common": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ], @@ -75356,7 +75271,7 @@ "deps": { "common": [ { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -75418,11 +75333,11 @@ "deps": { "common": [ { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -75473,7 +75388,7 @@ "deps": { "common": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -75545,11 +75460,11 @@ "deps": { "common": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "opentelemetry 0.27.1", + "id": "opentelemetry 0.27.0", "target": "opentelemetry" }, { @@ -75580,7 +75495,7 @@ "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { @@ -75740,7 +75655,7 @@ "deps": { "common": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { @@ -75829,11 +75744,11 @@ "target": "nu_ansi_term" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -75841,11 +75756,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "sharded-slab 0.1.7", + "id": "sharded-slab 0.1.4", "target": "sharded_slab" }, { @@ -75853,11 +75768,11 @@ "target": "smallvec" }, { - "id": "thread_local 1.1.8", + "id": "thread_local 1.1.7", "target": "thread_local" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" }, { @@ -75927,7 +75842,7 @@ "deps": { "common": [ { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -75943,6 +75858,45 @@ ], "license_file": null }, + "triomphe 0.1.9": { + "name": "triomphe", + "version": "0.1.9", + "package_url": "https://github.com/Manishearth/triomphe", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/triomphe/0.1.9/download", + "sha256": "0eee8098afad3fb0c54a9007aab6804558410503ad676d4633f9c2559a00ac0f" + } + }, + "targets": [ + { + "Library": { + "crate_name": "triomphe", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "triomphe", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2015", + "version": "0.1.9" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "trust-dns-proto 0.22.0": { "name": "trust-dns-proto", "version": "0.22.0", @@ -75986,7 +75940,7 @@ "target": "cfg_if" }, { - "id": "data-encoding 2.7.0", + "id": "data-encoding 2.4.0", "target": "data_encoding" }, { @@ -76010,7 +75964,7 @@ "target": "ipnet" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -76022,15 +75976,15 @@ "target": "smallvec" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tinyvec 1.8.1", + "id": "tinyvec 1.6.0", "target": "tinyvec" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -76038,7 +75992,7 @@ "target": "tracing" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" } ], @@ -76048,7 +76002,7 @@ "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.85", + "id": "async-trait 0.1.83", "target": "async_trait" }, { @@ -76118,7 +76072,7 @@ "target": "futures_util" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -76126,7 +76080,7 @@ "target": "lru_cache" }, { - "id": "parking_lot 0.12.3", + "id": "parking_lot 0.12.1", "target": "parking_lot" }, { @@ -76138,11 +76092,11 @@ "target": "smallvec" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -76185,14 +76139,14 @@ ], "license_file": "LICENSE-APACHE" }, - "try-lock 0.2.5": { + "try-lock 0.2.4": { "name": "try-lock", - "version": "0.2.5", + "version": "0.2.4", "package_url": "https://github.com/seanmonstar/try-lock", "repository": { "Http": { - "url": "https://static.crates.io/crates/try-lock/0.2.5/download", - "sha256": "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + "url": "https://static.crates.io/crates/try-lock/0.2.4/download", + "sha256": "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" } }, "targets": [ @@ -76215,7 +76169,7 @@ "**" ], "edition": "2015", - "version": "0.2.5" + "version": "0.2.4" }, "license": "MIT", "license_ids": [ @@ -76274,7 +76228,7 @@ "target": "bytes" }, { - "id": "data-encoding 2.7.0", + "id": "data-encoding 2.4.0", "target": "data_encoding" }, { @@ -76282,11 +76236,11 @@ "target": "http" }, { - "id": "httparse 1.9.5", + "id": "httparse 1.8.0", "target": "httparse" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -76298,11 +76252,11 @@ "target": "sha1" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "url 2.5.4", + "id": "url 2.5.3", "target": "url" }, { @@ -76384,7 +76338,7 @@ "target": "scoped_tls" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -76532,14 +76486,14 @@ ], "license_file": "LICENSE" }, - "ucd-trie 0.1.7": { + "ucd-trie 0.1.6": { "name": "ucd-trie", - "version": "0.1.7", + "version": "0.1.6", "package_url": "https://github.com/BurntSushi/ucd-generate", "repository": { "Http": { - "url": "https://static.crates.io/crates/ucd-trie/0.1.7/download", - "sha256": "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971" + "url": "https://static.crates.io/crates/ucd-trie/0.1.6/download", + "sha256": "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" } }, "targets": [ @@ -76568,7 +76522,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.7" + "version": "0.1.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -76643,14 +76597,14 @@ ], "license_file": null }, - "ulid 1.1.4": { + "ulid 1.0.0": { "name": "ulid", - "version": "1.1.4", + "version": "1.0.0", "package_url": "https://github.com/dylanhart/ulid-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ulid/1.1.4/download", - "sha256": "f294bff79170ed1c5633812aff1e565c35d993a36e757f9bc0accf5eec4e6045" + "url": "https://static.crates.io/crates/ulid/1.0.0/download", + "sha256": "13a3aaa69b04e5b66cc27309710a569ea23593612387d67daaf102e73aa974fd" } }, "targets": [ @@ -76687,17 +76641,10 @@ "target": "rand" } ], - "selects": { - "wasm32-unknown-unknown": [ - { - "id": "web-time 1.1.0", - "target": "web_time" - } - ] - } + "selects": {} }, "edition": "2018", - "version": "1.1.4" + "version": "1.0.0" }, "license": "MIT", "license_ids": [ @@ -76744,14 +76691,14 @@ ], "license_file": "LICENSE-APACHE" }, - "unicase 2.8.1": { + "unicase 2.6.0": { "name": "unicase", - "version": "2.8.1", + "version": "2.6.0", "package_url": "https://github.com/seanmonstar/unicase", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicase/2.8.1/download", - "sha256": "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" + "url": "https://static.crates.io/crates/unicase/2.6.0/download", + "sha256": "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" } }, "targets": [ @@ -76766,6 +76713,18 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], "library_target_name": "unicase", @@ -76773,24 +76732,50 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "2.8.1" + "deps": { + "common": [ + { + "id": "unicase 2.6.0", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2015", + "version": "2.6.0" }, - "license": "MIT OR Apache-2.0", + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "version_check 0.9.4", + "target": "version_check" + } + ], + "selects": {} + } + }, + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "unicode-bidi 0.3.18": { + "unicode-bidi 0.3.13": { "name": "unicode-bidi", - "version": "0.3.18", + "version": "0.3.13", "package_url": "https://github.com/servo/unicode-bidi", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-bidi/0.3.18/download", - "sha256": "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" + "url": "https://static.crates.io/crates/unicode-bidi/0.3.13/download", + "sha256": "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" } }, "targets": [ @@ -76821,7 +76806,7 @@ "selects": {} }, "edition": "2018", - "version": "0.3.18" + "version": "0.3.13" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -76830,14 +76815,14 @@ ], "license_file": "LICENSE-APACHE" }, - "unicode-ident 1.0.14": { + "unicode-ident 1.0.11": { "name": "unicode-ident", - "version": "1.0.14", + "version": "1.0.11", "package_url": "https://github.com/dtolnay/unicode-ident", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-ident/1.0.14/download", - "sha256": "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" + "url": "https://static.crates.io/crates/unicode-ident/1.0.11/download", + "sha256": "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" } }, "targets": [ @@ -76860,24 +76845,24 @@ "**" ], "edition": "2018", - "version": "1.0.14" + "version": "1.0.11" }, - "license": "(MIT OR Apache-2.0) AND Unicode-3.0", + "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", "license_ids": [ "Apache-2.0", "MIT", - "Unicode-3.0" + "Unicode-DFS-2016" ], "license_file": "LICENSE-APACHE" }, - "unicode-normalization 0.1.24": { + "unicode-normalization 0.1.22": { "name": "unicode-normalization", - "version": "0.1.24", + "version": "0.1.22", "package_url": "https://github.com/unicode-rs/unicode-normalization", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-normalization/0.1.24/download", - "sha256": "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" + "url": "https://static.crates.io/crates/unicode-normalization/0.1.22/download", + "sha256": "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" } }, "targets": [ @@ -76909,14 +76894,14 @@ "deps": { "common": [ { - "id": "tinyvec 1.8.1", + "id": "tinyvec 1.6.0", "target": "tinyvec" } ], "selects": {} }, "edition": "2018", - "version": "0.1.24" + "version": "0.1.22" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -76925,14 +76910,14 @@ ], "license_file": "LICENSE-APACHE" }, - "unicode-segmentation 1.12.0": { + "unicode-segmentation 1.10.1": { "name": "unicode-segmentation", - "version": "1.12.0", + "version": "1.10.1", "package_url": "https://github.com/unicode-rs/unicode-segmentation", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-segmentation/1.12.0/download", - "sha256": "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" + "url": "https://static.crates.io/crates/unicode-segmentation/1.10.1/download", + "sha256": "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" } }, "targets": [ @@ -76955,69 +76940,23 @@ "**" ], "edition": "2018", - "version": "1.12.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "unicode-width 0.1.14": { - "name": "unicode-width", - "version": "0.1.14", - "package_url": "https://github.com/unicode-rs/unicode-width", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/unicode-width/0.1.14/download", - "sha256": "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" - } - }, - "targets": [ - { - "Library": { - "crate_name": "unicode_width", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "unicode_width", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "cjk", - "default" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.14" + "version": "1.10.1" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "unicode-width 0.2.0": { + "unicode-width 0.1.10": { "name": "unicode-width", - "version": "0.2.0", + "version": "0.1.10", "package_url": "https://github.com/unicode-rs/unicode-width", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-width/0.2.0/download", - "sha256": "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" + "url": "https://static.crates.io/crates/unicode-width/0.1.10/download", + "sha256": "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" } }, "targets": [ @@ -77041,29 +76980,28 @@ ], "crate_features": { "common": [ - "cjk", "default" ], "selects": {} }, - "edition": "2021", - "version": "0.2.0" + "edition": "2015", + "version": "0.1.10" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "unicode-xid 0.2.6": { + "unicode-xid 0.2.4": { "name": "unicode-xid", - "version": "0.2.6", + "version": "0.2.4", "package_url": "https://github.com/unicode-rs/unicode-xid", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-xid/0.2.6/download", - "sha256": "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" + "url": "https://static.crates.io/crates/unicode-xid/0.2.4/download", + "sha256": "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" } }, "targets": [ @@ -77092,7 +77030,7 @@ "selects": {} }, "edition": "2015", - "version": "0.2.6" + "version": "0.2.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -77309,7 +77247,7 @@ "target": "fnv" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" } ], @@ -77324,14 +77262,14 @@ ], "license_file": "LICENSE" }, - "url 2.5.4": { + "url 2.5.3": { "name": "url", - "version": "2.5.4", + "version": "2.5.3", "package_url": "https://github.com/servo/rust-url", "repository": { "Http": { - "url": "https://static.crates.io/crates/url/2.5.4/download", - "sha256": "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" + "url": "https://static.crates.io/crates/url/2.5.3/download", + "sha256": "8d157f1b96d14500ffdc1f10ba712e780825526c03d9a49b4d0324b0d9113ada" } }, "targets": [ @@ -77383,7 +77321,7 @@ "selects": {} }, "edition": "2018", - "version": "2.5.4" + "version": "2.5.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -77508,14 +77446,14 @@ ], "license_file": "LICENSE-APACHE" }, - "utf8-width 0.1.7": { + "utf8-width 0.1.6": { "name": "utf8-width", - "version": "0.1.7", + "version": "0.1.6", "package_url": "https://github.com/magiclen/utf8-width", "repository": { "Http": { - "url": "https://static.crates.io/crates/utf8-width/0.1.7/download", - "sha256": "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" + "url": "https://static.crates.io/crates/utf8-width/0.1.6/download", + "sha256": "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1" } }, "targets": [ @@ -77538,7 +77476,7 @@ "**" ], "edition": "2021", - "version": "0.1.7" + "version": "0.1.6" }, "license": "MIT", "license_ids": [ @@ -77585,14 +77523,14 @@ ], "license_file": "LICENSE-APACHE" }, - "utf8parse 0.2.2": { + "utf8parse 0.2.1": { "name": "utf8parse", - "version": "0.2.2", + "version": "0.2.1", "package_url": "https://github.com/alacritty/vte", "repository": { "Http": { - "url": "https://static.crates.io/crates/utf8parse/0.2.2/download", - "sha256": "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" + "url": "https://static.crates.io/crates/utf8parse/0.2.1/download", + "sha256": "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" } }, "targets": [ @@ -77621,7 +77559,7 @@ "selects": {} }, "edition": "2018", - "version": "0.2.2" + "version": "0.2.1" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -77630,14 +77568,14 @@ ], "license_file": "LICENSE-APACHE" }, - "uuid 1.12.0": { + "uuid 1.11.0": { "name": "uuid", - "version": "1.12.0", + "version": "1.11.0", "package_url": "https://github.com/uuid-rs/uuid", "repository": { "Http": { - "url": "https://static.crates.io/crates/uuid/1.12.0/download", - "sha256": "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4" + "url": "https://static.crates.io/crates/uuid/1.11.0/download", + "sha256": "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" } }, "targets": [ @@ -77673,7 +77611,7 @@ "deps": { "common": [ { - "id": "getrandom 0.2.15", + "id": "getrandom 0.2.10", "target": "getrandom" }, { @@ -77684,7 +77622,7 @@ "selects": {} }, "edition": "2018", - "version": "1.12.0" + "version": "1.11.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -77799,14 +77737,14 @@ ], "license_file": "LICENSE-APACHE" }, - "version_check 0.9.5": { + "version_check 0.9.4": { "name": "version_check", - "version": "0.9.5", + "version": "0.9.4", "package_url": "https://github.com/SergioBenitez/version_check", "repository": { "Http": { - "url": "https://static.crates.io/crates/version_check/0.9.5/download", - "sha256": "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + "url": "https://static.crates.io/crates/version_check/0.9.4/download", + "sha256": "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" } }, "targets": [ @@ -77829,7 +77767,7 @@ "**" ], "edition": "2015", - "version": "0.9.5" + "version": "0.9.4" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -77897,19 +77835,19 @@ "target": "cfg_if" }, { - "id": "chrono 0.4.39", + "id": "chrono 0.4.38", "target": "chrono" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "ordered-float 4.6.0", + "id": "ordered-float 4.2.0", "target": "ordered_float" }, { - "id": "regex 1.11.1", + "id": "regex 1.11.0", "target": "regex" }, { @@ -77917,7 +77855,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -77948,7 +77886,7 @@ "deps": { "common": [ { - "id": "lalrpop 0.20.2", + "id": "lalrpop 0.20.0", "target": "lalrpop" } ], @@ -77993,7 +77931,7 @@ "deps": { "common": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { @@ -78046,7 +77984,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ] @@ -78062,14 +78000,53 @@ ], "license_file": "LICENSE-APACHE" }, - "walkdir 2.5.0": { + "waker-fn 1.1.0": { + "name": "waker-fn", + "version": "1.1.0", + "package_url": "https://github.com/stjepang/waker-fn", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/waker-fn/1.1.0/download", + "sha256": "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" + } + }, + "targets": [ + { + "Library": { + "crate_name": "waker_fn", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "waker_fn", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2018", + "version": "1.1.0" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "walkdir 2.3.3": { "name": "walkdir", - "version": "2.5.0", + "version": "2.3.3", "package_url": "https://github.com/BurntSushi/walkdir", "repository": { "Http": { - "url": "https://static.crates.io/crates/walkdir/2.5.0/download", - "sha256": "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" + "url": "https://static.crates.io/crates/walkdir/2.3.3/download", + "sha256": "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" } }, "targets": [ @@ -78101,14 +78078,14 @@ "selects": { "cfg(windows)": [ { - "id": "winapi-util 0.1.9", + "id": "winapi-util 0.1.5", "target": "winapi_util" } ] } }, "edition": "2018", - "version": "2.5.0" + "version": "2.3.3" }, "license": "Unlicense/MIT", "license_ids": [ @@ -78117,14 +78094,14 @@ ], "license_file": "LICENSE-MIT" }, - "walrus 0.21.3": { + "walrus 0.21.1": { "name": "walrus", - "version": "0.21.3", + "version": "0.21.1", "package_url": "https://github.com/rustwasm/walrus", "repository": { "Http": { - "url": "https://static.crates.io/crates/walrus/0.21.3/download", - "sha256": "501ace8ec3492754a9b3c4b59eac7159ceff8414f9e43a05029fe8ef43b9218f" + "url": "https://static.crates.io/crates/walrus/0.21.1/download", + "sha256": "467611cafbc8a84834b77d2b4bb191fd2f5769752def8340407e924390c6883b" } }, "targets": [ @@ -78149,7 +78126,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -78165,7 +78142,7 @@ "target": "leb128" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -78189,7 +78166,7 @@ ], "selects": {} }, - "version": "0.21.3" + "version": "0.21.1" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -78234,11 +78211,11 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { @@ -78290,7 +78267,7 @@ "deps": { "common": [ { - "id": "try-lock 0.2.5", + "id": "try-lock 0.2.4", "target": "try_lock" } ], @@ -78362,7 +78339,7 @@ "target": "futures_util" }, { - "id": "headers 0.3.9", + "id": "headers 0.3.8", "target": "headers" }, { @@ -78370,11 +78347,11 @@ "target": "http" }, { - "id": "hyper 0.14.32", + "id": "hyper 0.14.27", "target": "hyper" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -78382,7 +78359,7 @@ "target": "mime" }, { - "id": "mime_guess 2.0.5", + "id": "mime_guess 2.0.4", "target": "mime_guess" }, { @@ -78394,7 +78371,7 @@ "target": "percent_encoding" }, { - "id": "pin-project 1.1.8", + "id": "pin-project 1.1.2", "target": "pin_project" }, { @@ -78410,7 +78387,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { @@ -78418,7 +78395,7 @@ "target": "serde_urlencoded" }, { - "id": "tokio 1.43.0", + "id": "tokio 1.42.0", "target": "tokio" }, { @@ -78499,14 +78476,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen 0.2.100": { + "wasm-bindgen 0.2.95": { "name": "wasm-bindgen", - "version": "0.2.100", + "version": "0.2.95", "package_url": "https://github.com/rustwasm/wasm-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen/0.2.100/download", - "sha256": "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" + "url": "https://static.crates.io/crates/wasm-bindgen/0.2.95/download", + "sha256": "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e" } }, "targets": [ @@ -78543,8 +78520,7 @@ "crate_features": { "common": [ "default", - "msrv", - "rustversion", + "spans", "std" ], "selects": {} @@ -78556,11 +78532,11 @@ "target": "cfg_if" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "build_script_build" } ], @@ -78570,17 +78546,13 @@ "proc_macro_deps": { "common": [ { - "id": "rustversion 1.0.19", - "target": "rustversion" - }, - { - "id": "wasm-bindgen-macro 0.2.100", + "id": "wasm-bindgen-macro 0.2.95", "target": "wasm_bindgen_macro" } ], "selects": {} }, - "version": "0.2.100" + "version": "0.2.95" }, "build_script_attrs": { "compile_data_glob": [ @@ -78597,14 +78569,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-backend 0.2.100": { + "wasm-bindgen-backend 0.2.95": { "name": "wasm-bindgen-backend", - "version": "0.2.100", + "version": "0.2.95", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-backend/0.2.100/download", - "sha256": "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" + "url": "https://static.crates.io/crates/wasm-bindgen-backend/0.2.95/download", + "sha256": "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358" } }, "targets": [ @@ -78626,6 +78598,12 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "spans" + ], + "selects": {} + }, "deps": { "common": [ { @@ -78633,30 +78611,34 @@ "target": "bumpalo" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "proc-macro2 1.0.93", + "id": "once_cell 1.19.0", + "target": "once_cell" + }, + { + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" }, { - "id": "wasm-bindgen-shared 0.2.100", + "id": "wasm-bindgen-shared 0.2.95", "target": "wasm_bindgen_shared" } ], "selects": {} }, "edition": "2021", - "version": "0.2.100" + "version": "0.2.95" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -78665,14 +78647,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-futures 0.4.50": { + "wasm-bindgen-futures 0.4.37": { "name": "wasm-bindgen-futures", - "version": "0.4.50", + "version": "0.4.37", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-futures/0.4.50/download", - "sha256": "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" + "url": "https://static.crates.io/crates/wasm-bindgen-futures/0.4.37/download", + "sha256": "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" } }, "targets": [ @@ -78694,13 +78676,6 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, "deps": { "common": [ { @@ -78708,45 +78683,41 @@ "target": "cfg_if" }, { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { - "id": "once_cell 1.20.2", - "target": "once_cell" - }, - { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], "selects": { "cfg(target_feature = \"atomics\")": [ { - "id": "web-sys 0.3.77", + "id": "web-sys 0.3.64", "target": "web_sys" } ] } }, - "edition": "2021", - "version": "0.4.50" + "edition": "2018", + "version": "0.4.37" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-macro 0.2.100": { + "wasm-bindgen-macro 0.2.95": { "name": "wasm-bindgen-macro", - "version": "0.2.100", + "version": "0.2.95", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-macro/0.2.100/download", - "sha256": "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" + "url": "https://static.crates.io/crates/wasm-bindgen-macro/0.2.95/download", + "sha256": "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56" } }, "targets": [ @@ -78768,21 +78739,27 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "spans" + ], + "selects": {} + }, "deps": { "common": [ { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "wasm-bindgen-macro-support 0.2.100", + "id": "wasm-bindgen-macro-support 0.2.95", "target": "wasm_bindgen_macro_support" } ], "selects": {} }, "edition": "2021", - "version": "0.2.100" + "version": "0.2.95" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -78791,14 +78768,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-macro-support 0.2.100": { + "wasm-bindgen-macro-support 0.2.95": { "name": "wasm-bindgen-macro-support", - "version": "0.2.100", + "version": "0.2.95", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.100/download", - "sha256": "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" + "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.95/download", + "sha256": "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68" } }, "targets": [ @@ -78820,33 +78797,39 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "spans" + ], + "selects": {} + }, "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" }, { - "id": "wasm-bindgen-backend 0.2.100", + "id": "wasm-bindgen-backend 0.2.95", "target": "wasm_bindgen_backend" }, { - "id": "wasm-bindgen-shared 0.2.100", + "id": "wasm-bindgen-shared 0.2.95", "target": "wasm_bindgen_shared" } ], "selects": {} }, "edition": "2021", - "version": "0.2.100" + "version": "0.2.95" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -78855,14 +78838,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-shared 0.2.100": { + "wasm-bindgen-shared 0.2.95": { "name": "wasm-bindgen-shared", - "version": "0.2.100", + "version": "0.2.95", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-shared/0.2.100/download", - "sha256": "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" + "url": "https://static.crates.io/crates/wasm-bindgen-shared/0.2.95/download", + "sha256": "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" } }, "targets": [ @@ -78899,18 +78882,14 @@ "deps": { "common": [ { - "id": "unicode-ident 1.0.14", - "target": "unicode_ident" - }, - { - "id": "wasm-bindgen-shared 0.2.100", + "id": "wasm-bindgen-shared 0.2.95", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.2.100" + "version": "0.2.95" }, "build_script_attrs": { "compile_data_glob": [ @@ -79098,85 +79077,6 @@ ], "license_file": null }, - "wasm-encoder 0.223.0": { - "name": "wasm-encoder", - "version": "0.223.0", - "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-encoder", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wasm-encoder/0.223.0/download", - "sha256": "7e636076193fa68103e937ac951b5f2f587624097017d764b8984d9c0f149464" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wasm_encoder", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wasm_encoder", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "component-model", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "leb128 0.2.5", - "target": "leb128" - }, - { - "id": "wasm-encoder 0.223.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.223.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": null - }, "wasm-smith 0.212.0": { "name": "wasm-smith", "version": "0.212.0", @@ -79215,19 +79115,19 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "arbitrary 1.4.1", + "id": "arbitrary 1.3.2", "target": "arbitrary" }, { - "id": "flagset 0.4.6", + "id": "flagset 0.4.3", "target": "flagset" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { @@ -79254,14 +79154,14 @@ ], "license_file": "LICENSE" }, - "wasm-streams 0.4.2": { + "wasm-streams 0.4.0": { "name": "wasm-streams", - "version": "0.4.2", + "version": "0.4.0", "package_url": "https://github.com/MattiasBuelens/wasm-streams/", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-streams/0.4.2/download", - "sha256": "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" + "url": "https://static.crates.io/crates/wasm-streams/0.4.0/download", + "sha256": "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" } }, "targets": [ @@ -79290,26 +79190,26 @@ "target": "futures_util" }, { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" }, { - "id": "wasm-bindgen-futures 0.4.50", + "id": "wasm-bindgen-futures 0.4.37", "target": "wasm_bindgen_futures" }, { - "id": "web-sys 0.3.77", + "id": "web-sys 0.3.64", "target": "web_sys" } ], "selects": {} }, "edition": "2021", - "version": "0.4.2" + "version": "0.4.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -79350,15 +79250,15 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" } ], @@ -79418,7 +79318,7 @@ "target": "ahash" }, { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -79426,11 +79326,11 @@ "target": "hashbrown" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -79495,7 +79395,7 @@ "target": "ahash" }, { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -79503,11 +79403,11 @@ "target": "hashbrown" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -79582,11 +79482,11 @@ "deps": { "common": [ { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -79618,78 +79518,6 @@ ], "license_file": null }, - "wasmparser 0.223.0": { - "name": "wasmparser", - "version": "0.223.0", - "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wasmparser/0.223.0/download", - "sha256": "d5a99faceb1a5a84dd6084ec4bfa4b2ab153b5793b43fd8f58b89232634afc35" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wasmparser", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wasmparser", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bitflags 2.8.0", - "target": "bitflags" - }, - { - "id": "wasmparser 0.223.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.223.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "data_glob": [ - "**" - ] - }, - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": null - }, "wasmprinter 0.217.0": { "name": "wasmprinter", "version": "0.217.0", @@ -79722,7 +79550,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -79785,7 +79613,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -79809,14 +79637,14 @@ ], "license_file": null }, - "wasmtime 28.0.1": { + "wasmtime 28.0.0": { "name": "wasmtime", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime/28.0.1/download", - "sha256": "edd30973c65eceb0f37dfcc430d83abd5eb24015fdfcab6912f52949287e04f0" + "url": "https://static.crates.io/crates/wasmtime/28.0.0/download", + "sha256": "f639ecae347b9a2227e453a7b7671e84370a0b61f47a15e0390fe9b7725e47b3" } }, "targets": [ @@ -79866,11 +79694,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "bitflags 2.8.0", + "id": "bitflags 2.6.0", "target": "bitflags" }, { @@ -79886,19 +79714,19 @@ "target": "hashbrown" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" }, { - "id": "libm 0.2.11", + "id": "libm 0.2.7", "target": "libm" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -79906,11 +79734,11 @@ "target": "object" }, { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" }, { - "id": "postcard 1.1.1", + "id": "postcard 1.0.8", "target": "postcard" }, { @@ -79938,27 +79766,27 @@ "target": "wasmparser" }, { - "id": "wasmtime 28.0.1", + "id": "wasmtime 28.0.0", "target": "build_script_build" }, { - "id": "wasmtime-asm-macros 28.0.1", + "id": "wasmtime-asm-macros 28.0.0", "target": "wasmtime_asm_macros" }, { - "id": "wasmtime-cranelift 28.0.1", + "id": "wasmtime-cranelift 28.0.0", "target": "wasmtime_cranelift" }, { - "id": "wasmtime-environ 28.0.1", + "id": "wasmtime-environ 28.0.0", "target": "wasmtime_environ" }, { - "id": "wasmtime-jit-icache-coherence 28.0.1", + "id": "wasmtime-jit-icache-coherence 28.0.0", "target": "wasmtime_jit_icache_coherence" }, { - "id": "wasmtime-slab 28.0.1", + "id": "wasmtime-slab 28.0.0", "target": "wasmtime_slab" } ], @@ -79969,25 +79797,25 @@ "target": "mach2" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "aarch64-apple-ios": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "aarch64-apple-ios-sim": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "aarch64-linux-android": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -79999,7 +79827,7 @@ ], "aarch64-unknown-fuchsia": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80009,7 +79837,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80019,13 +79847,13 @@ "target": "memfd" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "aarch64-unknown-nto-qnx710": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80035,13 +79863,13 @@ "target": "memfd" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "armv7-linux-androideabi": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80051,7 +79879,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80061,13 +79889,13 @@ "target": "mach2" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "i686-linux-android": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80079,7 +79907,7 @@ ], "i686-unknown-freebsd": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80089,7 +79917,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80099,7 +79927,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80109,11 +79937,11 @@ "target": "memfd" }, { - "id": "psm 0.1.24", + "id": "psm 0.1.21", "target": "psm" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80123,19 +79951,19 @@ "target": "mach2" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "x86_64-apple-ios": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "x86_64-linux-android": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80147,13 +79975,13 @@ ], "x86_64-unknown-freebsd": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], "x86_64-unknown-fuchsia": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80163,7 +79991,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80173,7 +80001,7 @@ "target": "memfd" }, { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ] @@ -80191,13 +80019,13 @@ "target": "serde_derive" }, { - "id": "wasmtime-versioned-export-macros 28.0.1", + "id": "wasmtime-versioned-export-macros 28.0.0", "target": "wasmtime_versioned_export_macros" } ], "selects": {} }, - "version": "28.0.1" + "version": "28.0.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -80209,7 +80037,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -80218,7 +80046,7 @@ "proc_macro_deps": { "common": [ { - "id": "wasmtime-versioned-export-macros 28.0.1", + "id": "wasmtime-versioned-export-macros 28.0.0", "target": "wasmtime_versioned_export_macros" } ], @@ -80231,14 +80059,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-asm-macros 28.0.1": { + "wasmtime-asm-macros 28.0.0": { "name": "wasmtime-asm-macros", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-asm-macros/28.0.1/download", - "sha256": "c6c21dd30d1f3f93ee390ac1a7ec304ecdbfdab6390e1add41a1f52727b0992b" + "url": "https://static.crates.io/crates/wasmtime-asm-macros/28.0.0/download", + "sha256": "882a18800471cfc063c8b3ccf75723784acc3fd534009ac09421f2fac2fcdcec" } }, "targets": [ @@ -80270,7 +80098,7 @@ "selects": {} }, "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80278,14 +80106,14 @@ ], "license_file": null }, - "wasmtime-component-macro 28.0.1": { + "wasmtime-component-macro 28.0.0": { "name": "wasmtime-component-macro", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-component-macro/28.0.1/download", - "sha256": "9f948a6ef3119d52c9f12936970de28ddf3f9bea04bc65571f4a92d2e5ab38f4" + "url": "https://static.crates.io/crates/wasmtime-component-macro/28.0.0/download", + "sha256": "eb5c0a77c9e1927c3d471f53cc13767c3d3438e5d5ffd394e3eb31c86445fd60" } }, "targets": [ @@ -80322,31 +80150,31 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" }, { - "id": "wasmtime-component-macro 28.0.1", + "id": "wasmtime-component-macro 28.0.0", "target": "build_script_build" }, { - "id": "wasmtime-component-util 28.0.1", + "id": "wasmtime-component-util 28.0.0", "target": "wasmtime_component_util" }, { - "id": "wasmtime-wit-bindgen 28.0.1", + "id": "wasmtime-wit-bindgen 28.0.0", "target": "wasmtime_wit_bindgen" }, { @@ -80357,7 +80185,7 @@ "selects": {} }, "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -80373,14 +80201,14 @@ ], "license_file": null }, - "wasmtime-component-util 28.0.1": { + "wasmtime-component-util 28.0.0": { "name": "wasmtime-component-util", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-component-util/28.0.1/download", - "sha256": "b9275aa01ceaaa2fa6c0ecaa5267518d80b9d6e9ae7c7ea42f4c6e073e6a69ef" + "url": "https://static.crates.io/crates/wasmtime-component-util/28.0.0/download", + "sha256": "43702ca98bf5162eca0573db691ed9ecd36d716f8c6688410fe26ec16b6f9bcb" } }, "targets": [ @@ -80403,7 +80231,7 @@ "**" ], "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80411,14 +80239,14 @@ ], "license_file": null }, - "wasmtime-cranelift 28.0.1": { + "wasmtime-cranelift 28.0.0": { "name": "wasmtime-cranelift", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-cranelift/28.0.1/download", - "sha256": "0701a44a323267aae4499672dae422b266cee3135a23b640972ec8c0e10a44a2" + "url": "https://static.crates.io/crates/wasmtime-cranelift/28.0.0/download", + "sha256": "20070aa5b75080a8932ec328419faf841df2bc6ceb16b55b0df2b952098392a2" } }, "targets": [ @@ -80450,7 +80278,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -80458,23 +80286,23 @@ "target": "cfg_if" }, { - "id": "cranelift-codegen 0.115.1", + "id": "cranelift-codegen 0.115.0", "target": "cranelift_codegen" }, { - "id": "cranelift-control 0.115.1", + "id": "cranelift-control 0.115.0", "target": "cranelift_control" }, { - "id": "cranelift-entity 0.115.1", + "id": "cranelift-entity 0.115.0", "target": "cranelift_entity" }, { - "id": "cranelift-frontend 0.115.1", + "id": "cranelift-frontend 0.115.0", "target": "cranelift_frontend" }, { - "id": "cranelift-native 0.115.1", + "id": "cranelift-native 0.115.0", "target": "cranelift_native" }, { @@ -80482,11 +80310,11 @@ "target": "gimli" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.12.0", "target": "itertools" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -80502,7 +80330,7 @@ "target": "target_lexicon" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { @@ -80510,7 +80338,7 @@ "target": "wasmparser" }, { - "id": "wasmtime-environ 28.0.1", + "id": "wasmtime-environ 28.0.0", "target": "wasmtime_environ" } ], @@ -80520,13 +80348,13 @@ "proc_macro_deps": { "common": [ { - "id": "wasmtime-versioned-export-macros 28.0.1", + "id": "wasmtime-versioned-export-macros 28.0.0", "target": "wasmtime_versioned_export_macros" } ], "selects": {} }, - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80534,14 +80362,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-environ 28.0.1": { + "wasmtime-environ 28.0.0": { "name": "wasmtime-environ", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-environ/28.0.1/download", - "sha256": "264c968c1b81d340355ece2be0bc31a10f567ccb6ce08512c3b7d10e26f3cbe5" + "url": "https://static.crates.io/crates/wasmtime-environ/28.0.0/download", + "sha256": "2604ddb24879d4dc1dedcb7081d7a8e017259bce916fdae097a97db52cbaab80" } }, "targets": [ @@ -80575,15 +80403,15 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "cranelift-bitset 0.115.1", + "id": "cranelift-bitset 0.115.0", "target": "cranelift_bitset" }, { - "id": "cranelift-entity 0.115.1", + "id": "cranelift-entity 0.115.0", "target": "cranelift_entity" }, { @@ -80591,11 +80419,11 @@ "target": "gimli" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { @@ -80603,7 +80431,7 @@ "target": "object" }, { - "id": "postcard 1.1.1", + "id": "postcard 1.0.8", "target": "postcard" }, { @@ -80643,7 +80471,7 @@ ], "selects": {} }, - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80651,14 +80479,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-fiber 28.0.1": { + "wasmtime-fiber 28.0.0": { "name": "wasmtime-fiber", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-fiber/28.0.1/download", - "sha256": "78505221fd5bd7b07b4e1fa2804edea49dc231e626ad6861adc8f531812973e6" + "url": "https://static.crates.io/crates/wasmtime-fiber/28.0.0/download", + "sha256": "98593412d2b167ebe2b59d4a17a184978a72f976b53b3a0ec05629451079ac1d" } }, "targets": [ @@ -80695,7 +80523,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -80703,18 +80531,18 @@ "target": "cfg_if" }, { - "id": "wasmtime-asm-macros 28.0.1", + "id": "wasmtime-asm-macros 28.0.0", "target": "wasmtime_asm_macros" }, { - "id": "wasmtime-fiber 28.0.1", + "id": "wasmtime-fiber 28.0.0", "target": "build_script_build" } ], "selects": { "cfg(unix)": [ { - "id": "rustix 0.38.43", + "id": "rustix 0.38.32", "target": "rustix" } ], @@ -80730,13 +80558,13 @@ "proc_macro_deps": { "common": [ { - "id": "wasmtime-versioned-export-macros 28.0.1", + "id": "wasmtime-versioned-export-macros 28.0.0", "target": "wasmtime_versioned_export_macros" } ], "selects": {} }, - "version": "28.0.1" + "version": "28.0.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -80748,7 +80576,7 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" } ], @@ -80757,7 +80585,7 @@ "proc_macro_deps": { "common": [ { - "id": "wasmtime-versioned-export-macros 28.0.1", + "id": "wasmtime-versioned-export-macros 28.0.0", "target": "wasmtime_versioned_export_macros" } ], @@ -80770,14 +80598,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-jit-icache-coherence 28.0.1": { + "wasmtime-jit-icache-coherence 28.0.0": { "name": "wasmtime-jit-icache-coherence", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-jit-icache-coherence/28.0.1/download", - "sha256": "9bedb677ca1b549d98f95e9e1f9251b460090d99a2c196a0614228c064bf2e59" + "url": "https://static.crates.io/crates/wasmtime-jit-icache-coherence/28.0.0/download", + "sha256": "d40d7722b9e1fbeae135715710a8a2570b1e6cf72b74dd653962d89831c6c70d" } }, "targets": [ @@ -80802,7 +80630,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -80813,7 +80641,7 @@ "selects": { "cfg(any(target_os = \"linux\", target_os = \"macos\", target_os = \"freebsd\", target_os = \"android\"))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -80826,7 +80654,7 @@ } }, "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80834,14 +80662,14 @@ ], "license_file": null }, - "wasmtime-slab 28.0.1": { + "wasmtime-slab 28.0.0": { "name": "wasmtime-slab", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-slab/28.0.1/download", - "sha256": "564905638c132c275d365c1fa074f0b499790568f43148d29de84ccecfb5cb31" + "url": "https://static.crates.io/crates/wasmtime-slab/28.0.0/download", + "sha256": "8579c335220b4ece9aa490a0e8b46de78cd342b195ab21ff981d095e14b52383" } }, "targets": [ @@ -80864,7 +80692,7 @@ "**" ], "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80872,14 +80700,14 @@ ], "license_file": null }, - "wasmtime-versioned-export-macros 28.0.1": { + "wasmtime-versioned-export-macros 28.0.0": { "name": "wasmtime-versioned-export-macros", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-versioned-export-macros/28.0.1/download", - "sha256": "1e91092e6cf77390eeccee273846a9327f3e8f91c3c6280f60f37809f0e62d29" + "url": "https://static.crates.io/crates/wasmtime-versioned-export-macros/28.0.0/download", + "sha256": "d7de0a56fb0a69b185968f2d7a9ba54750920a806470dff7ad8de91ac06d277e" } }, "targets": [ @@ -80904,22 +80732,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -80927,14 +80755,14 @@ ], "license_file": null }, - "wasmtime-winch 28.0.1": { + "wasmtime-winch 28.0.0": { "name": "wasmtime-winch", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-winch/28.0.1/download", - "sha256": "b111d909dc604c741bd8ac2f4af373eaa5c68c34b5717271bcb687688212cef8" + "url": "https://static.crates.io/crates/wasmtime-winch/28.0.0/download", + "sha256": "abd309943c443f5590d12f9aba9ba63c481091c955a0a14de0c2a9e0e3aaeca9" } }, "targets": [ @@ -80959,11 +80787,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "cranelift-codegen 0.115.1", + "id": "cranelift-codegen 0.115.0", "target": "cranelift_codegen" }, { @@ -80983,22 +80811,22 @@ "target": "wasmparser" }, { - "id": "wasmtime-cranelift 28.0.1", + "id": "wasmtime-cranelift 28.0.0", "target": "wasmtime_cranelift" }, { - "id": "wasmtime-environ 28.0.1", + "id": "wasmtime-environ 28.0.0", "target": "wasmtime_environ" }, { - "id": "winch-codegen 28.0.1", + "id": "winch-codegen 28.0.0", "target": "winch_codegen" } ], "selects": {} }, "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -81006,14 +80834,14 @@ ], "license_file": "LICENSE" }, - "wasmtime-wit-bindgen 28.0.1": { + "wasmtime-wit-bindgen 28.0.0": { "name": "wasmtime-wit-bindgen", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasmtime-wit-bindgen/28.0.1/download", - "sha256": "5f38f7a5eb2f06f53fe943e7fb8bf4197f7cf279f1bc52c0ce56e9d3ffd750a4" + "url": "https://static.crates.io/crates/wasmtime-wit-bindgen/28.0.0/download", + "sha256": "969f83022dac3435d6469edb582ceed04cfe32aa44dc3ef16e5cb55574633df8" } }, "targets": [ @@ -81038,7 +80866,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -81046,7 +80874,7 @@ "target": "heck" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { @@ -81057,7 +80885,7 @@ "selects": {} }, "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -81116,7 +80944,7 @@ "target": "memchr" }, { - "id": "unicode-width 0.1.14", + "id": "unicode-width 0.1.10", "target": "unicode_width" }, { @@ -81135,85 +80963,14 @@ ], "license_file": "LICENSE" }, - "wast 223.0.0": { - "name": "wast", - "version": "223.0.0", - "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wast", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wast/223.0.0/download", - "sha256": "d59b2ba8a2ff9f06194b7be9524f92e45e70149f4dacc0d0c7ad92b59ac875e4" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wast", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wast", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "component-model", - "wasm-module" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bumpalo 3.16.0", - "target": "bumpalo" - }, - { - "id": "leb128 0.2.5", - "target": "leb128" - }, - { - "id": "memchr 2.7.4", - "target": "memchr" - }, - { - "id": "unicode-width 0.2.0", - "target": "unicode_width" - }, - { - "id": "wasm-encoder 0.223.0", - "target": "wasm_encoder" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "223.0.0" - }, - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": null - }, - "wat 1.223.0": { + "wat 1.212.0": { "name": "wat", - "version": "1.223.0", + "version": "1.212.0", "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wat", "repository": { "Http": { - "url": "https://static.crates.io/crates/wat/1.223.0/download", - "sha256": "662786915c427e4918ff01eabb3c4756d4d947cd8f635761526b4cc9da2eaaad" + "url": "https://static.crates.io/crates/wat/1.212.0/download", + "sha256": "c74ca7f93f11a5d6eed8499f2a8daaad6e225cab0151bc25a091fff3b987532f" } }, "targets": [ @@ -81235,40 +80992,32 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "component-model", - "default" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "wast 223.0.0", + "id": "wast 212.0.0", "target": "wast" } ], "selects": {} }, "edition": "2021", - "version": "1.223.0" + "version": "1.212.0" }, - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ - "Apache-2.0", - "MIT" + "Apache-2.0" ], - "license_file": null + "license_file": "LICENSE" }, - "web-sys 0.3.77": { + "web-sys 0.3.64": { "name": "web-sys", - "version": "0.3.77", + "version": "0.3.64", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/web-sys/0.3.77/download", - "sha256": "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" + "url": "https://static.crates.io/crates/web-sys/0.3.64/download", + "sha256": "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" } }, "targets": [ @@ -81328,9 +81077,7 @@ "WorkerGlobalScope", "WritableStream", "WritableStreamDefaultController", - "WritableStreamDefaultWriter", - "default", - "std" + "WritableStreamDefaultWriter" ], "selects": { "wasm32-unknown-unknown": [ @@ -81350,20 +81097,20 @@ "deps": { "common": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ], "selects": {} }, - "edition": "2021", - "version": "0.3.77" + "edition": "2018", + "version": "0.3.64" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -81404,11 +81151,11 @@ "selects": { "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ { - "id": "js-sys 0.3.77", + "id": "js-sys 0.3.64", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.100", + "id": "wasm-bindgen 0.2.95", "target": "wasm_bindgen" } ] @@ -81424,14 +81171,14 @@ ], "license_file": "LICENSE-APACHE" }, - "webpki-root-certs 0.26.7": { + "webpki-root-certs 0.26.6": { "name": "webpki-root-certs", - "version": "0.26.7", + "version": "0.26.6", "package_url": "https://github.com/rustls/webpki-roots", "repository": { "Http": { - "url": "https://static.crates.io/crates/webpki-root-certs/0.26.7/download", - "sha256": "9cd5da49bdf1f30054cfe0b8ce2958b8fbeb67c4d82c8967a598af481bef255c" + "url": "https://static.crates.io/crates/webpki-root-certs/0.26.6/download", + "sha256": "e8c6dfa3ac045bc517de14c7b1384298de1dbd229d38e08e169d9ae8c170937c" } }, "targets": [ @@ -81456,7 +81203,7 @@ "deps": { "common": [ { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" } @@ -81464,7 +81211,7 @@ "selects": {} }, "edition": "2018", - "version": "0.26.7" + "version": "0.26.6" }, "license": "MPL-2.0", "license_ids": [ @@ -81472,14 +81219,14 @@ ], "license_file": "LICENSE" }, - "webpki-roots 0.25.4": { + "webpki-roots 0.25.2": { "name": "webpki-roots", - "version": "0.25.4", + "version": "0.25.2", "package_url": "https://github.com/rustls/webpki-roots", "repository": { "Http": { - "url": "https://static.crates.io/crates/webpki-roots/0.25.4/download", - "sha256": "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" + "url": "https://static.crates.io/crates/webpki-roots/0.25.2/download", + "sha256": "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" } }, "targets": [ @@ -81502,7 +81249,7 @@ "**" ], "edition": "2018", - "version": "0.25.4" + "version": "0.25.2" }, "license": "MPL-2.0", "license_ids": [ @@ -81510,14 +81257,14 @@ ], "license_file": "LICENSE" }, - "webpki-roots 0.26.7": { + "webpki-roots 0.26.1": { "name": "webpki-roots", - "version": "0.26.7", + "version": "0.26.1", "package_url": "https://github.com/rustls/webpki-roots", "repository": { "Http": { - "url": "https://static.crates.io/crates/webpki-roots/0.26.7/download", - "sha256": "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e" + "url": "https://static.crates.io/crates/webpki-roots/0.26.1/download", + "sha256": "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" } }, "targets": [ @@ -81542,7 +81289,7 @@ "deps": { "common": [ { - "id": "rustls-pki-types 1.10.1", + "id": "rustls-pki-types 1.10.0", "target": "rustls_pki_types", "alias": "pki_types" } @@ -81550,7 +81297,7 @@ "selects": {} }, "edition": "2018", - "version": "0.26.7" + "version": "0.26.1" }, "license": "MPL-2.0", "license_ids": [ @@ -81624,7 +81371,7 @@ "selects": { "cfg(all(unix, not(target_arch = \"wasm32\")))": [ { - "id": "libc 0.2.169", + "id": "libc 0.2.158", "target": "libc" } ], @@ -81653,14 +81400,14 @@ ], "license_file": null }, - "which 4.4.2": { + "which 4.4.0": { "name": "which", - "version": "4.4.2", + "version": "4.4.0", "package_url": "https://github.com/harryfei/which-rs.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/which/4.4.2/download", - "sha256": "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" + "url": "https://static.crates.io/crates/which/4.4.0/download", + "sha256": "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" } }, "targets": [ @@ -81685,31 +81432,25 @@ "deps": { "common": [ { - "id": "either 1.13.0", + "id": "either 1.8.1", "target": "either" }, { - "id": "rustix 0.38.43", - "target": "rustix" + "id": "libc 0.2.158", + "target": "libc" } ], "selects": { - "cfg(any(windows, unix, target_os = \"redox\"))": [ - { - "id": "home 0.5.11", - "target": "home" - } - ], "cfg(windows)": [ { - "id": "once_cell 1.20.2", + "id": "once_cell 1.19.0", "target": "once_cell" } ] } }, - "edition": "2021", - "version": "4.4.2" + "edition": "2018", + "version": "4.4.0" }, "license": "MIT", "license_ids": [ @@ -81717,14 +81458,14 @@ ], "license_file": "LICENSE.txt" }, - "widestring 1.1.0": { + "widestring 1.0.2": { "name": "widestring", - "version": "1.1.0", + "version": "1.0.2", "package_url": "https://github.com/starkat99/widestring-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/widestring/1.1.0/download", - "sha256": "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" + "url": "https://static.crates.io/crates/widestring/1.0.2/download", + "sha256": "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" } }, "targets": [ @@ -81755,7 +81496,7 @@ "selects": {} }, "edition": "2021", - "version": "1.1.0" + "version": "1.0.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -81847,6 +81588,7 @@ "common": [ "consoleapi", "errhandlingapi", + "fibersapi", "fileapi", "handleapi", "impl-default", @@ -81865,6 +81607,7 @@ "profileapi", "psapi", "shlobj", + "std", "synchapi", "sysinfoapi", "winbase", @@ -81987,14 +81730,14 @@ ], "license_file": null }, - "winapi-util 0.1.9": { + "winapi-util 0.1.5": { "name": "winapi-util", - "version": "0.1.9", + "version": "0.1.5", "package_url": "https://github.com/BurntSushi/winapi-util", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi-util/0.1.9/download", - "sha256": "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" + "url": "https://static.crates.io/crates/winapi-util/0.1.5/download", + "sha256": "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" } }, "targets": [ @@ -82021,16 +81764,16 @@ "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.59.0", - "target": "windows_sys" + "id": "winapi 0.3.9", + "target": "winapi" } ] } }, - "edition": "2021", - "version": "0.1.9" + "edition": "2018", + "version": "0.1.5" }, - "license": "Unlicense OR MIT", + "license": "Unlicense/MIT", "license_ids": [ "MIT", "Unlicense" @@ -82105,14 +81848,14 @@ ], "license_file": null }, - "winch-codegen 28.0.1": { + "winch-codegen 28.0.0": { "name": "winch-codegen", - "version": "28.0.1", + "version": "28.0.0", "package_url": "https://github.com/bytecodealliance/wasmtime", "repository": { "Http": { - "url": "https://static.crates.io/crates/winch-codegen/28.0.1/download", - "sha256": "6232f40a795be2ce10fc761ed3b403825126a60d12491ac556ea104a932fd18a" + "url": "https://static.crates.io/crates/winch-codegen/28.0.0/download", + "sha256": "9110decc2983ed94de904804dcd979ba59cbabc78a94fec6b1d8468ec513d0f6" } }, "targets": [ @@ -82149,11 +81892,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { - "id": "cranelift-codegen 0.115.1", + "id": "cranelift-codegen 0.115.0", "target": "cranelift_codegen" }, { @@ -82177,22 +81920,22 @@ "target": "wasmparser" }, { - "id": "wasmtime-cranelift 28.0.1", + "id": "wasmtime-cranelift 28.0.0", "target": "wasmtime_cranelift" }, { - "id": "wasmtime-environ 28.0.1", + "id": "wasmtime-environ 28.0.0", "target": "wasmtime_environ" }, { - "id": "winch-codegen 28.0.1", + "id": "winch-codegen 28.0.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "28.0.1" + "version": "28.0.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -82208,58 +81951,6 @@ ], "license_file": "LICENSE" }, - "windows 0.58.0": { - "name": "windows", - "version": "0.58.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows/0.58.0/download", - "sha256": "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows-core 0.58.0", - "target": "windows_core" - }, - { - "id": "windows-targets 0.52.6", - "target": "windows_targets" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.58.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, "windows-core 0.52.0": { "name": "windows-core", "version": "0.52.0", @@ -82308,187 +81999,6 @@ ], "license_file": "license-apache-2.0" }, - "windows-core 0.58.0": { - "name": "windows-core", - "version": "0.58.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-core/0.58.0/download", - "sha256": "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_core", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows-result 0.2.0", - "target": "windows_result" - }, - { - "id": "windows-strings 0.1.0", - "target": "windows_strings" - }, - { - "id": "windows-targets 0.52.6", - "target": "windows_targets" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "windows-implement 0.58.0", - "target": "windows_implement" - }, - { - "id": "windows-interface 0.58.0", - "target": "windows_interface" - } - ], - "selects": {} - }, - "version": "0.58.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-implement 0.58.0": { - "name": "windows-implement", - "version": "0.58.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-implement/0.58.0/download", - "sha256": "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "windows_implement", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_implement", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.93", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.38", - "target": "quote" - }, - { - "id": "syn 2.0.96", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.58.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-interface 0.58.0": { - "name": "windows-interface", - "version": "0.58.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-interface/0.58.0/download", - "sha256": "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "windows_interface", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_interface", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.93", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.38", - "target": "quote" - }, - { - "id": "syn 2.0.96", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.58.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, "windows-registry 0.2.0": { "name": "windows-registry", "version": "0.2.0", @@ -82659,6 +82169,71 @@ ], "license_file": "license-apache-2.0" }, + "windows-sys 0.45.0": { + "name": "windows-sys", + "version": "0.45.0", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows-sys/0.45.0/download", + "sha256": "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_sys", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_sys", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "Win32", + "Win32_Foundation", + "Win32_Storage", + "Win32_Storage_FileSystem", + "Win32_System", + "Win32_System_Console", + "Win32_UI", + "Win32_UI_Input", + "Win32_UI_Input_KeyboardAndMouse", + "default" + ], + "selects": {} + }, + "deps": { + "common": [], + "selects": { + "cfg(not(windows_raw_dylib))": [ + { + "id": "windows-targets 0.42.2", + "target": "windows_targets" + } + ] + } + }, + "edition": "2018", + "version": "0.45.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, "windows-sys 0.48.0": { "name": "windows-sys", "version": "0.48.0", @@ -82698,23 +82273,33 @@ "Win32_Networking", "Win32_Networking_WinSock", "Win32_Security", + "Win32_Security_Authentication", + "Win32_Security_Authentication_Identity", + "Win32_Security_Credentials", + "Win32_Security_Cryptography", "Win32_Storage", "Win32_Storage_FileSystem", "Win32_System", "Win32_System_Console", "Win32_System_Diagnostics", "Win32_System_Diagnostics_Debug", + "Win32_System_IO", "Win32_System_Memory", "Win32_System_Registry", "Win32_System_Time", + "Win32_System_WindowsProgramming", "default" ], - "selects": {} + "selects": { + "aarch64-pc-windows-msvc": [ + "Win32_System_Threading" + ] + } }, "deps": { "common": [ { - "id": "windows-targets 0.48.5", + "id": "windows-targets 0.48.1", "target": "windows_targets" } ], @@ -82769,6 +82354,8 @@ "Wdk_System_IO", "Win32", "Win32_Foundation", + "Win32_NetworkManagement", + "Win32_NetworkManagement_IpHelper", "Win32_Networking", "Win32_Networking_WinSock", "Win32_Security", @@ -82776,12 +82363,17 @@ "Win32_Storage", "Win32_Storage_FileSystem", "Win32_System", + "Win32_System_Com", "Win32_System_Console", + "Win32_System_Diagnostics", + "Win32_System_Diagnostics_Debug", "Win32_System_IO", "Win32_System_Pipes", "Win32_System_SystemServices", "Win32_System_Threading", "Win32_System_WindowsProgramming", + "Win32_UI", + "Win32_UI_Shell", "default" ], "selects": {} @@ -82842,19 +82434,12 @@ "Wdk_Storage_FileSystem", "Win32", "Win32_Foundation", - "Win32_NetworkManagement", - "Win32_NetworkManagement_IpHelper", "Win32_Networking", "Win32_Networking_WinSock", "Win32_Security", - "Win32_Security_Authentication", - "Win32_Security_Authentication_Identity", - "Win32_Security_Credentials", - "Win32_Security_Cryptography", "Win32_Storage", "Win32_Storage_FileSystem", "Win32_System", - "Win32_System_Com", "Win32_System_Console", "Win32_System_Diagnostics", "Win32_System_Diagnostics_Debug", @@ -82865,10 +82450,6 @@ "Win32_System_SystemInformation", "Win32_System_Threading", "Win32_System_WindowsProgramming", - "Win32_UI", - "Win32_UI_Input", - "Win32_UI_Input_KeyboardAndMouse", - "Win32_UI_Shell", "default" ], "selects": {} @@ -82892,14 +82473,130 @@ ], "license_file": "license-apache-2.0" }, - "windows-targets 0.48.5": { + "windows-targets 0.42.2": { + "name": "windows-targets", + "version": "0.42.2", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows-targets/0.42.2/download", + "sha256": "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_targets", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_targets", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [], + "selects": { + "aarch64-pc-windows-gnullvm": [ + { + "id": "windows_aarch64_gnullvm 0.42.2", + "target": "windows_aarch64_gnullvm" + } + ], + "aarch64-pc-windows-msvc": [ + { + "id": "windows_aarch64_msvc 0.42.2", + "target": "windows_aarch64_msvc" + } + ], + "aarch64-uwp-windows-msvc": [ + { + "id": "windows_aarch64_msvc 0.42.2", + "target": "windows_aarch64_msvc" + } + ], + "i686-pc-windows-gnu": [ + { + "id": "windows_i686_gnu 0.42.2", + "target": "windows_i686_gnu" + } + ], + "i686-pc-windows-msvc": [ + { + "id": "windows_i686_msvc 0.42.2", + "target": "windows_i686_msvc" + } + ], + "i686-uwp-windows-gnu": [ + { + "id": "windows_i686_gnu 0.42.2", + "target": "windows_i686_gnu" + } + ], + "i686-uwp-windows-msvc": [ + { + "id": "windows_i686_msvc 0.42.2", + "target": "windows_i686_msvc" + } + ], + "x86_64-pc-windows-gnu": [ + { + "id": "windows_x86_64_gnu 0.42.2", + "target": "windows_x86_64_gnu" + } + ], + "x86_64-pc-windows-gnullvm": [ + { + "id": "windows_x86_64_gnullvm 0.42.2", + "target": "windows_x86_64_gnullvm" + } + ], + "x86_64-pc-windows-msvc": [ + { + "id": "windows_x86_64_msvc 0.42.2", + "target": "windows_x86_64_msvc" + } + ], + "x86_64-uwp-windows-gnu": [ + { + "id": "windows_x86_64_gnu 0.42.2", + "target": "windows_x86_64_gnu" + } + ], + "x86_64-uwp-windows-msvc": [ + { + "id": "windows_x86_64_msvc 0.42.2", + "target": "windows_x86_64_msvc" + } + ] + } + }, + "edition": "2018", + "version": "0.42.2" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows-targets 0.48.1": { "name": "windows-targets", - "version": "0.48.5", + "version": "0.48.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-targets/0.48.5/download", - "sha256": "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" + "url": "https://static.crates.io/crates/windows-targets/0.48.1/download", + "sha256": "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" } }, "targets": [ @@ -82926,50 +82623,50 @@ "selects": { "aarch64-pc-windows-gnullvm": [ { - "id": "windows_aarch64_gnullvm 0.48.5", + "id": "windows_aarch64_gnullvm 0.48.0", "target": "windows_aarch64_gnullvm" } ], "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ { - "id": "windows_aarch64_msvc 0.48.5", + "id": "windows_aarch64_msvc 0.48.0", "target": "windows_aarch64_msvc" } ], "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))": [ { - "id": "windows_i686_gnu 0.48.5", + "id": "windows_i686_gnu 0.48.0", "target": "windows_i686_gnu" } ], "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [ { - "id": "windows_i686_msvc 0.48.5", + "id": "windows_i686_msvc 0.48.0", "target": "windows_i686_msvc" } ], "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ { - "id": "windows_x86_64_gnu 0.48.5", + "id": "windows_x86_64_gnu 0.48.0", "target": "windows_x86_64_gnu" } ], "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ { - "id": "windows_x86_64_msvc 0.48.5", + "id": "windows_x86_64_msvc 0.48.0", "target": "windows_x86_64_msvc" } ], "x86_64-pc-windows-gnullvm": [ { - "id": "windows_x86_64_gnullvm 0.48.5", + "id": "windows_x86_64_gnullvm 0.48.0", "target": "windows_x86_64_gnullvm" } ] } }, "edition": "2018", - "version": "0.48.5" + "version": "0.48.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -83070,14 +82767,14 @@ ], "license_file": "license-apache-2.0" }, - "windows_aarch64_gnullvm 0.48.5": { + "windows_aarch64_gnullvm 0.42.2": { "name": "windows_aarch64_gnullvm", - "version": "0.48.5", + "version": "0.42.2", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.48.5/download", - "sha256": "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.42.2/download", + "sha256": "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" } }, "targets": [ @@ -83114,14 +82811,82 @@ "deps": { "common": [ { - "id": "windows_aarch64_gnullvm 0.48.5", + "id": "windows_aarch64_gnullvm 0.42.2", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.48.5" + "version": "0.42.2" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows_aarch64_gnullvm 0.48.0": { + "name": "windows_aarch64_gnullvm", + "version": "0.48.0", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.48.0/download", + "sha256": "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_aarch64_gnullvm", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_aarch64_gnullvm", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_aarch64_gnullvm 0.48.0", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.48.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -83206,14 +82971,82 @@ ], "license_file": "license-apache-2.0" }, - "windows_aarch64_msvc 0.48.5": { + "windows_aarch64_msvc 0.42.2": { + "name": "windows_aarch64_msvc", + "version": "0.42.2", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.42.2/download", + "sha256": "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_aarch64_msvc", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_aarch64_msvc", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_aarch64_msvc 0.42.2", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.42.2" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows_aarch64_msvc 0.48.0": { "name": "windows_aarch64_msvc", - "version": "0.48.5", + "version": "0.48.0", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.48.5/download", - "sha256": "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.48.0/download", + "sha256": "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" } }, "targets": [ @@ -83250,14 +83083,14 @@ "deps": { "common": [ { - "id": "windows_aarch64_msvc 0.48.5", + "id": "windows_aarch64_msvc 0.48.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.48.5" + "version": "0.48.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -83342,14 +83175,14 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_gnu 0.48.5": { + "windows_i686_gnu 0.42.2": { "name": "windows_i686_gnu", - "version": "0.48.5", + "version": "0.42.2", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.48.5/download", - "sha256": "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + "url": "https://static.crates.io/crates/windows_i686_gnu/0.42.2/download", + "sha256": "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" } }, "targets": [ @@ -83386,14 +83219,82 @@ "deps": { "common": [ { - "id": "windows_i686_gnu 0.48.5", + "id": "windows_i686_gnu 0.42.2", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.48.5" + "version": "0.42.2" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows_i686_gnu 0.48.0": { + "name": "windows_i686_gnu", + "version": "0.48.0", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_i686_gnu/0.48.0/download", + "sha256": "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_i686_gnu", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_i686_gnu", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_i686_gnu 0.48.0", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.48.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -83514,7 +83415,143 @@ } } ], - "library_target_name": "windows_i686_gnullvm", + "library_target_name": "windows_i686_gnullvm", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_i686_gnullvm 0.52.6", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.52.6" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows_i686_msvc 0.42.2": { + "name": "windows_i686_msvc", + "version": "0.42.2", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_i686_msvc/0.42.2/download", + "sha256": "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_i686_msvc", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_i686_msvc", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_i686_msvc 0.42.2", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.42.2" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows_i686_msvc 0.48.0": { + "name": "windows_i686_msvc", + "version": "0.48.0", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_i686_msvc/0.48.0/download", + "sha256": "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_i686_msvc", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_i686_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -83522,14 +83559,14 @@ "deps": { "common": [ { - "id": "windows_i686_gnullvm 0.52.6", + "id": "windows_i686_msvc 0.48.0", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.52.6" + "edition": "2018", + "version": "0.48.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -83546,14 +83583,14 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_msvc 0.48.5": { + "windows_i686_msvc 0.52.6": { "name": "windows_i686_msvc", - "version": "0.48.5", + "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.48.5/download", - "sha256": "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + "url": "https://static.crates.io/crates/windows_i686_msvc/0.52.6/download", + "sha256": "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" } }, "targets": [ @@ -83590,14 +83627,14 @@ "deps": { "common": [ { - "id": "windows_i686_msvc 0.48.5", + "id": "windows_i686_msvc 0.52.6", "target": "build_script_build" } ], "selects": {} }, - "edition": "2018", - "version": "0.48.5" + "edition": "2021", + "version": "0.52.6" }, "build_script_attrs": { "compile_data_glob": [ @@ -83614,20 +83651,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_msvc 0.52.6": { - "name": "windows_i686_msvc", - "version": "0.52.6", + "windows_x86_64_gnu 0.42.2": { + "name": "windows_x86_64_gnu", + "version": "0.42.2", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.52.6/download", - "sha256": "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.42.2/download", + "sha256": "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_msvc", + "crate_name": "windows_x86_64_gnu", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -83650,7 +83687,7 @@ } } ], - "library_target_name": "windows_i686_msvc", + "library_target_name": "windows_x86_64_gnu", "common_attrs": { "compile_data_glob": [ "**" @@ -83658,14 +83695,14 @@ "deps": { "common": [ { - "id": "windows_i686_msvc 0.52.6", + "id": "windows_x86_64_gnu 0.42.2", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.52.6" + "edition": "2018", + "version": "0.42.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -83682,14 +83719,14 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_gnu 0.48.5": { + "windows_x86_64_gnu 0.48.0": { "name": "windows_x86_64_gnu", - "version": "0.48.5", + "version": "0.48.0", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.48.5/download", - "sha256": "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.48.0/download", + "sha256": "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" } }, "targets": [ @@ -83726,14 +83763,14 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnu 0.48.5", + "id": "windows_x86_64_gnu 0.48.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.48.5" + "version": "0.48.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -83818,14 +83855,14 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_gnullvm 0.48.5": { + "windows_x86_64_gnullvm 0.42.2": { "name": "windows_x86_64_gnullvm", - "version": "0.48.5", + "version": "0.42.2", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.48.5/download", - "sha256": "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.42.2/download", + "sha256": "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" } }, "targets": [ @@ -83862,14 +83899,82 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnullvm 0.48.5", + "id": "windows_x86_64_gnullvm 0.42.2", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.48.5" + "version": "0.42.2" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows_x86_64_gnullvm 0.48.0": { + "name": "windows_x86_64_gnullvm", + "version": "0.48.0", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.48.0/download", + "sha256": "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_x86_64_gnullvm", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_x86_64_gnullvm", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_x86_64_gnullvm 0.48.0", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.48.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -83954,14 +84059,82 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_msvc 0.48.5": { + "windows_x86_64_msvc 0.42.2": { + "name": "windows_x86_64_msvc", + "version": "0.42.2", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.42.2/download", + "sha256": "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_x86_64_msvc", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_x86_64_msvc", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_x86_64_msvc 0.42.2", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.42.2" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows_x86_64_msvc 0.48.0": { "name": "windows_x86_64_msvc", - "version": "0.48.5", + "version": "0.48.0", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.48.5/download", - "sha256": "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.48.0/download", + "sha256": "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" } }, "targets": [ @@ -83998,14 +84171,14 @@ "deps": { "common": [ { - "id": "windows_x86_64_msvc 0.48.5", + "id": "windows_x86_64_msvc 0.48.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.48.5" + "version": "0.48.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -84090,14 +84263,14 @@ ], "license_file": "license-apache-2.0" }, - "winnow 0.6.24": { + "winnow 0.5.0": { "name": "winnow", - "version": "0.6.24", + "version": "0.5.0", "package_url": "https://github.com/winnow-rs/winnow", "repository": { "Http": { - "url": "https://static.crates.io/crates/winnow/0.6.24/download", - "sha256": "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a" + "url": "https://static.crates.io/crates/winnow/0.5.0/download", + "sha256": "81fac9742fd1ad1bd9643b991319f72dd031016d44b77039a26977eb667141e7" } }, "targets": [ @@ -84128,7 +84301,53 @@ "selects": {} }, "edition": "2021", - "version": "0.6.24" + "version": "0.5.0" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE-MIT" + }, + "winnow 0.6.20": { + "name": "winnow", + "version": "0.6.20", + "package_url": "https://github.com/winnow-rs/winnow", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/winnow/0.6.20/download", + "sha256": "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" + } + }, + "targets": [ + { + "Library": { + "crate_name": "winnow", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "winnow", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc", + "default", + "std" + ], + "selects": {} + }, + "edition": "2021", + "version": "0.6.20" }, "license": "MIT", "license_ids": [ @@ -84228,7 +84447,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.95", + "id": "anyhow 1.0.93", "target": "anyhow" }, { @@ -84236,15 +84455,15 @@ "target": "id_arena" }, { - "id": "indexmap 2.7.0", + "id": "indexmap 2.2.6", "target": "indexmap" }, { - "id": "log 0.4.25", + "id": "log 0.4.20", "target": "log" }, { - "id": "semver 1.0.24", + "id": "semver 1.0.22", "target": "semver" }, { @@ -84252,11 +84471,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" }, { - "id": "unicode-xid 0.2.6", + "id": "unicode-xid 0.2.4", "target": "unicode_xid" }, { @@ -84486,7 +84705,7 @@ "deps": { "common": [ { - "id": "data-encoding 2.7.0", + "id": "data-encoding 2.4.0", "target": "data_encoding" }, { @@ -84494,7 +84713,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.135", + "id": "serde_json 1.0.132", "target": "serde_json" } ], @@ -84600,11 +84819,11 @@ "deps": { "common": [ { - "id": "const-oid 0.9.6", + "id": "const-oid 0.9.4", "target": "const_oid" }, { - "id": "der 0.7.9", + "id": "der 0.7.7", "target": "der" }, { @@ -84670,11 +84889,11 @@ "deps": { "common": [ { - "id": "asn1-rs 0.6.2", + "id": "asn1-rs 0.6.1", "target": "asn1_rs" }, { - "id": "data-encoding 2.7.0", + "id": "data-encoding 2.4.0", "target": "data_encoding" }, { @@ -84682,7 +84901,7 @@ "target": "der_parser" }, { - "id": "lazy_static 1.5.0", + "id": "lazy_static 1.4.0", "target": "lazy_static" }, { @@ -84690,7 +84909,7 @@ "target": "nom" }, { - "id": "oid-registry 0.7.1", + "id": "oid-registry 0.7.0", "target": "oid_registry" }, { @@ -84698,11 +84917,11 @@ "target": "rusticata_macros" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 1.0.68", "target": "thiserror" }, { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -84718,14 +84937,14 @@ ], "license_file": "LICENSE-APACHE" }, - "xattr 1.4.0": { + "xattr 0.2.3": { "name": "xattr", - "version": "1.4.0", + "version": "0.2.3", "package_url": "https://github.com/Stebalien/xattr", "repository": { "Http": { - "url": "https://static.crates.io/crates/xattr/1.4.0/download", - "sha256": "e105d177a3871454f754b33bb0ee637ecaaac997446375fd3e5d43a2ed00c909" + "url": "https://static.crates.io/crates/xattr/0.2.3/download", + "sha256": "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" } }, "targets": [ @@ -84757,27 +84976,14 @@ "deps": { "common": [ { - "id": "rustix 0.38.43", - "target": "rustix" + "id": "libc 0.2.158", + "target": "libc" } ], - "selects": { - "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))": [ - { - "id": "libc 0.2.169", - "target": "libc" - } - ], - "cfg(target_os = \"linux\")": [ - { - "id": "linux-raw-sys 0.4.15", - "target": "linux_raw_sys" - } - ] - } + "selects": {} }, - "edition": "2021", - "version": "1.4.0" + "edition": "2015", + "version": "0.2.3" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -84911,57 +85117,10 @@ "compile_data_glob": [ "**" ], - "edition": "2015", - "version": "0.5.1" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "yansi 1.0.1": { - "name": "yansi", - "version": "1.0.1", - "package_url": "https://github.com/SergioBenitez/yansi", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/yansi/1.0.1/download", - "sha256": "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" - } - }, - "targets": [ - { - "Library": { - "crate_name": "yansi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "yansi", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.1" + "edition": "2015", + "version": "0.5.1" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -85008,7 +85167,7 @@ "deps": { "common": [ { - "id": "time 0.3.37", + "id": "time 0.3.36", "target": "time" } ], @@ -85024,14 +85183,14 @@ ], "license_file": null }, - "yoke 0.7.5": { + "yoke 0.7.4": { "name": "yoke", - "version": "0.7.5", + "version": "0.7.4", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/yoke/0.7.5/download", - "sha256": "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" + "url": "https://static.crates.io/crates/yoke/0.7.4/download", + "sha256": "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" } }, "targets": [ @@ -85069,7 +85228,7 @@ "target": "stable_deref_trait" }, { - "id": "zerofrom 0.1.5", + "id": "zerofrom 0.1.4", "target": "zerofrom" } ], @@ -85079,13 +85238,13 @@ "proc_macro_deps": { "common": [ { - "id": "yoke-derive 0.7.5", + "id": "yoke-derive 0.7.4", "target": "yoke_derive" } ], "selects": {} }, - "version": "0.7.5" + "version": "0.7.4" }, "license": "Unicode-3.0", "license_ids": [ @@ -85093,14 +85252,14 @@ ], "license_file": "LICENSE" }, - "yoke-derive 0.7.5": { + "yoke-derive 0.7.4": { "name": "yoke-derive", - "version": "0.7.5", + "version": "0.7.4", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/yoke-derive/0.7.5/download", - "sha256": "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" + "url": "https://static.crates.io/crates/yoke-derive/0.7.4/download", + "sha256": "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" } }, "targets": [ @@ -85125,15 +85284,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" }, { @@ -85144,7 +85303,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.5" + "version": "0.7.4" }, "license": "Unicode-3.0", "license_ids": [ @@ -85152,14 +85311,14 @@ ], "license_file": "LICENSE" }, - "zerocopy 0.7.35": { + "zerocopy 0.7.32": { "name": "zerocopy", - "version": "0.7.35", + "version": "0.7.32", "package_url": "https://github.com/google/zerocopy", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerocopy/0.7.35/download", - "sha256": "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" + "url": "https://static.crates.io/crates/zerocopy/0.7.32/download", + "sha256": "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" } }, "targets": [ @@ -85183,34 +85342,23 @@ ], "crate_features": { "common": [ - "byteorder", - "default", - "derive", - "simd", - "zerocopy-derive" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "byteorder 1.5.0", - "target": "byteorder" - } + "simd" ], "selects": {} }, "edition": "2018", "proc_macro_deps": { - "common": [ - { - "id": "zerocopy-derive 0.7.35", - "target": "zerocopy_derive" - } - ], - "selects": {} + "common": [], + "selects": { + "cfg(any())": [ + { + "id": "zerocopy-derive 0.7.32", + "target": "zerocopy_derive" + } + ] + } }, - "version": "0.7.35" + "version": "0.7.32" }, "license": "BSD-2-Clause OR Apache-2.0 OR MIT", "license_ids": [ @@ -85220,14 +85368,14 @@ ], "license_file": "LICENSE-APACHE" }, - "zerocopy-derive 0.7.35": { + "zerocopy-derive 0.7.32": { "name": "zerocopy-derive", - "version": "0.7.35", + "version": "0.7.32", "package_url": "https://github.com/google/zerocopy", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerocopy-derive/0.7.35/download", - "sha256": "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" + "url": "https://static.crates.io/crates/zerocopy-derive/0.7.32/download", + "sha256": "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" } }, "targets": [ @@ -85252,22 +85400,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.7.35" + "version": "0.7.32" }, "license": "BSD-2-Clause OR Apache-2.0 OR MIT", "license_ids": [ @@ -85277,14 +85425,14 @@ ], "license_file": "LICENSE-APACHE" }, - "zerofrom 0.1.5": { + "zerofrom 0.1.4": { "name": "zerofrom", - "version": "0.1.5", + "version": "0.1.4", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerofrom/0.1.5/download", - "sha256": "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" + "url": "https://static.crates.io/crates/zerofrom/0.1.4/download", + "sha256": "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" } }, "targets": [ @@ -85317,13 +85465,13 @@ "proc_macro_deps": { "common": [ { - "id": "zerofrom-derive 0.1.5", + "id": "zerofrom-derive 0.1.4", "target": "zerofrom_derive" } ], "selects": {} }, - "version": "0.1.5" + "version": "0.1.4" }, "license": "Unicode-3.0", "license_ids": [ @@ -85331,14 +85479,14 @@ ], "license_file": "LICENSE" }, - "zerofrom-derive 0.1.5": { + "zerofrom-derive 0.1.4": { "name": "zerofrom-derive", - "version": "0.1.5", + "version": "0.1.4", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerofrom-derive/0.1.5/download", - "sha256": "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" + "url": "https://static.crates.io/crates/zerofrom-derive/0.1.4/download", + "sha256": "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" } }, "targets": [ @@ -85363,15 +85511,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" }, { @@ -85382,7 +85530,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.5" + "version": "0.1.4" }, "license": "Unicode-3.0", "license_ids": [ @@ -85479,15 +85627,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -85542,11 +85690,11 @@ "deps": { "common": [ { - "id": "yoke 0.7.5", + "id": "yoke 0.7.4", "target": "yoke" }, { - "id": "zerofrom 0.1.5", + "id": "zerofrom 0.1.4", "target": "zerofrom" } ], @@ -85602,15 +85750,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.93", + "id": "proc-macro2 1.0.89", "target": "proc_macro2" }, { - "id": "quote 1.0.38", + "id": "quote 1.0.37", "target": "quote" }, { - "id": "syn 2.0.96", + "id": "syn 2.0.87", "target": "syn" } ], @@ -85625,6 +85773,53 @@ ], "license_file": "LICENSE" }, + "zstd 0.12.4": { + "name": "zstd", + "version": "0.12.4", + "package_url": "https://github.com/gyscos/zstd-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/zstd/0.12.4/download", + "sha256": "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c" + } + }, + "targets": [ + { + "Library": { + "crate_name": "zstd", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "zstd", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "zstd-safe 6.0.5+zstd.1.5.4", + "target": "zstd_safe" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.12.4" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, "zstd 0.13.2": { "name": "zstd", "version": "0.13.2", @@ -85666,7 +85861,7 @@ "deps": { "common": [ { - "id": "zstd-safe 7.2.1", + "id": "zstd-safe 7.1.0", "target": "zstd_safe" } ], @@ -85681,14 +85876,105 @@ ], "license_file": "LICENSE" }, - "zstd-safe 7.2.1": { + "zstd-safe 6.0.5+zstd.1.5.4": { "name": "zstd-safe", - "version": "7.2.1", + "version": "6.0.5+zstd.1.5.4", "package_url": "https://github.com/gyscos/zstd-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/zstd-safe/7.2.1/download", - "sha256": "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059" + "url": "https://static.crates.io/crates/zstd-safe/6.0.5+zstd.1.5.4/download", + "sha256": "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b" + } + }, + "targets": [ + { + "Library": { + "crate_name": "zstd_safe", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "zstd_safe", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "libc 0.2.158", + "target": "libc" + }, + { + "id": "zstd-safe 6.0.5+zstd.1.5.4", + "target": "build_script_build" + }, + { + "id": "zstd-sys 2.0.10+zstd.1.5.6", + "target": "zstd_sys" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "6.0.5+zstd.1.5.4" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "data_glob": [ + "**" + ], + "link_deps": { + "common": [ + { + "id": "zstd-sys 2.0.10+zstd.1.5.6", + "target": "zstd_sys" + } + ], + "selects": {} + } + }, + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE" + }, + "zstd-safe 7.1.0": { + "name": "zstd-safe", + "version": "7.1.0", + "package_url": "https://github.com/gyscos/zstd-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/zstd-safe/7.1.0/download", + "sha256": "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a" } }, "targets": [ @@ -85734,18 +86020,18 @@ "deps": { "common": [ { - "id": "zstd-safe 7.2.1", + "id": "zstd-safe 7.1.0", "target": "build_script_build" }, { - "id": "zstd-sys 2.0.13+zstd.1.5.6", + "id": "zstd-sys 2.0.10+zstd.1.5.6", "target": "zstd_sys" } ], "selects": {} }, "edition": "2018", - "version": "7.2.1" + "version": "7.1.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -85757,7 +86043,7 @@ "link_deps": { "common": [ { - "id": "zstd-sys 2.0.13+zstd.1.5.6", + "id": "zstd-sys 2.0.10+zstd.1.5.6", "target": "zstd_sys" } ], @@ -85771,14 +86057,14 @@ ], "license_file": "LICENSE" }, - "zstd-sys 2.0.13+zstd.1.5.6": { + "zstd-sys 2.0.10+zstd.1.5.6": { "name": "zstd-sys", - "version": "2.0.13+zstd.1.5.6", + "version": "2.0.10+zstd.1.5.6", "package_url": "https://github.com/gyscos/zstd-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/zstd-sys/2.0.13+zstd.1.5.6/download", - "sha256": "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" + "url": "https://static.crates.io/crates/zstd-sys/2.0.10+zstd.1.5.6/download", + "sha256": "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa" } }, "targets": [ @@ -85823,14 +86109,14 @@ "deps": { "common": [ { - "id": "zstd-sys 2.0.13+zstd.1.5.6", + "id": "zstd-sys 2.0.10+zstd.1.5.6", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "2.0.13+zstd.1.5.6" + "version": "2.0.10+zstd.1.5.6" }, "build_script_attrs": { "compile_data_glob": [ @@ -85842,11 +86128,11 @@ "deps": { "common": [ { - "id": "cc 1.2.9", + "id": "cc 1.0.83", "target": "cc" }, { - "id": "pkg-config 0.3.31", + "id": "pkg-config 0.3.27", "target": "pkg_config" } ], @@ -85864,7 +86150,7 @@ }, "binary_crates": [ "canbench 0.1.8", - "ic-wasm 0.8.6", + "ic-wasm 0.8.4", "metrics-proxy 0.1.0" ], "workspace_members": { @@ -85900,6 +86186,7 @@ "aarch64-unknown-nto-qnx710": [ "aarch64-unknown-nto-qnx710" ], + "aarch64-uwp-windows-msvc": [], "arm-unknown-linux-gnueabi": [ "arm-unknown-linux-gnueabi" ], @@ -85912,7 +86199,7 @@ "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))": [ "x86_64-pc-windows-msvc" ], - "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ "aarch64-linux-android", "armv7-linux-androideabi", "i686-linux-android", @@ -85939,7 +86226,7 @@ "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], - "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ + "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ "aarch64-unknown-linux-gnu", "aarch64-unknown-nixos-gnu", "arm-unknown-linux-gnueabi", @@ -85948,7 +86235,7 @@ "x86_64-unknown-linux-gnu", "x86_64-unknown-nixos-gnu" ], - "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", @@ -85989,7 +86276,6 @@ "aarch64-apple-ios", "aarch64-apple-ios-sim" ], - "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))": [], "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ "wasm32-unknown-unknown" ], @@ -86171,22 +86457,6 @@ "riscv64gc-unknown-none-elf", "s390x-unknown-linux-gnu" ], - "cfg(any(target_arch = \"x86\", target_arch = \"x86_64\"))": [ - "i686-apple-darwin", - "i686-linux-android", - "i686-pc-windows-msvc", - "i686-unknown-freebsd", - "i686-unknown-linux-gnu", - "x86_64-apple-darwin", - "x86_64-apple-ios", - "x86_64-linux-android", - "x86_64-pc-windows-msvc", - "x86_64-unknown-freebsd", - "x86_64-unknown-fuchsia", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu", - "x86_64-unknown-none" - ], "cfg(any(target_arch = \"x86\", target_arch = \"x86_64\", all(any(target_arch = \"aarch64\", target_arch = \"arm\"), any(target_os = \"android\", target_os = \"fuchsia\", target_os = \"linux\"))))": [ "aarch64-linux-android", "aarch64-unknown-fuchsia", @@ -86245,10 +86515,6 @@ "i686-unknown-freebsd", "x86_64-unknown-freebsd" ], - "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))": [ - "i686-unknown-freebsd", - "x86_64-unknown-freebsd" - ], "cfg(any(target_os = \"linux\", target_os = \"android\"))": [ "aarch64-linux-android", "aarch64-unknown-linux-gnu", @@ -86418,7 +86684,8 @@ "x86_64-unknown-linux-gnu", "x86_64-unknown-nixos-gnu" ], - "cfg(any(windows, unix, target_os = \"redox\"))": [ + "cfg(curve25519_dalek_backend = \"fiat\")": [], + "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", @@ -86437,7 +86704,11 @@ "i686-unknown-freebsd", "i686-unknown-linux-gnu", "powerpc-unknown-linux-gnu", + "riscv32imc-unknown-none-elf", + "riscv64gc-unknown-none-elf", "s390x-unknown-linux-gnu", + "wasm32-unknown-unknown", + "wasm32-wasip1", "x86_64-apple-darwin", "x86_64-apple-ios", "x86_64-linux-android", @@ -86445,16 +86716,39 @@ "x86_64-unknown-freebsd", "x86_64-unknown-fuchsia", "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" + "x86_64-unknown-nixos-gnu", + "x86_64-unknown-none" ], - "cfg(curve25519_dalek_backend = \"fiat\")": [], - "cfg(moka_loom)": [], - "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))": [ + "cfg(not(any(target_os = \"macos\", target_os = \"ios\", target_os = \"windows\", target_arch = \"wasm32\")))": [ + "aarch64-linux-android", + "aarch64-unknown-fuchsia", + "aarch64-unknown-linux-gnu", + "aarch64-unknown-nixos-gnu", + "aarch64-unknown-nto-qnx710", + "arm-unknown-linux-gnueabi", + "armv7-linux-androideabi", + "armv7-unknown-linux-gnueabi", + "i686-linux-android", + "i686-unknown-freebsd", + "i686-unknown-linux-gnu", + "powerpc-unknown-linux-gnu", + "riscv32imc-unknown-none-elf", + "riscv64gc-unknown-none-elf", + "s390x-unknown-linux-gnu", + "thumbv7em-none-eabi", + "thumbv8m.main-none-eabi", + "x86_64-linux-android", + "x86_64-unknown-freebsd", + "x86_64-unknown-fuchsia", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu", + "x86_64-unknown-none" + ], + "cfg(not(any(target_os = \"windows\", target_arch = \"wasm32\")))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", "aarch64-linux-android", - "aarch64-pc-windows-msvc", "aarch64-unknown-fuchsia", "aarch64-unknown-linux-gnu", "aarch64-unknown-nixos-gnu", @@ -86464,26 +86758,24 @@ "armv7-unknown-linux-gnueabi", "i686-apple-darwin", "i686-linux-android", - "i686-pc-windows-msvc", "i686-unknown-freebsd", "i686-unknown-linux-gnu", "powerpc-unknown-linux-gnu", "riscv32imc-unknown-none-elf", "riscv64gc-unknown-none-elf", "s390x-unknown-linux-gnu", - "wasm32-unknown-unknown", - "wasm32-wasip1", + "thumbv7em-none-eabi", + "thumbv8m.main-none-eabi", "x86_64-apple-darwin", "x86_64-apple-ios", "x86_64-linux-android", - "x86_64-pc-windows-msvc", "x86_64-unknown-freebsd", "x86_64-unknown-fuchsia", "x86_64-unknown-linux-gnu", "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], - "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))": [ + "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", @@ -86505,7 +86797,6 @@ "s390x-unknown-linux-gnu", "thumbv7em-none-eabi", "thumbv8m.main-none-eabi", - "wasm32-unknown-unknown", "wasm32-wasip1", "x86_64-apple-darwin", "x86_64-apple-ios", @@ -86516,11 +86807,12 @@ "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], - "cfg(not(any(target_os = \"windows\", target_arch = \"wasm32\")))": [ + "cfg(not(target_arch = \"wasm32\"))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", "aarch64-linux-android", + "aarch64-pc-windows-msvc", "aarch64-unknown-fuchsia", "aarch64-unknown-linux-gnu", "aarch64-unknown-nixos-gnu", @@ -86530,6 +86822,7 @@ "armv7-unknown-linux-gnueabi", "i686-apple-darwin", "i686-linux-android", + "i686-pc-windows-msvc", "i686-unknown-freebsd", "i686-unknown-linux-gnu", "powerpc-unknown-linux-gnu", @@ -86541,13 +86834,14 @@ "x86_64-apple-darwin", "x86_64-apple-ios", "x86_64-linux-android", + "x86_64-pc-windows-msvc", "x86_64-unknown-freebsd", "x86_64-unknown-fuchsia", "x86_64-unknown-linux-gnu", "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], - "cfg(not(target_arch = \"wasm32\"))": [ + "cfg(not(target_family = \"wasm\"))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", @@ -86581,12 +86875,11 @@ "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], - "cfg(not(target_family = \"wasm\"))": [ + "cfg(not(windows))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", "aarch64-linux-android", - "aarch64-pc-windows-msvc", "aarch64-unknown-fuchsia", "aarch64-unknown-linux-gnu", "aarch64-unknown-nixos-gnu", @@ -86596,7 +86889,6 @@ "armv7-unknown-linux-gnueabi", "i686-apple-darwin", "i686-linux-android", - "i686-pc-windows-msvc", "i686-unknown-freebsd", "i686-unknown-linux-gnu", "powerpc-unknown-linux-gnu", @@ -86605,21 +86897,23 @@ "s390x-unknown-linux-gnu", "thumbv7em-none-eabi", "thumbv8m.main-none-eabi", + "wasm32-unknown-unknown", + "wasm32-wasip1", "x86_64-apple-darwin", "x86_64-apple-ios", "x86_64-linux-android", - "x86_64-pc-windows-msvc", "x86_64-unknown-freebsd", "x86_64-unknown-fuchsia", "x86_64-unknown-linux-gnu", "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], - "cfg(not(windows))": [ + "cfg(not(windows_raw_dylib))": [ "aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", "aarch64-linux-android", + "aarch64-pc-windows-msvc", "aarch64-unknown-fuchsia", "aarch64-unknown-linux-gnu", "aarch64-unknown-nixos-gnu", @@ -86629,6 +86923,7 @@ "armv7-unknown-linux-gnueabi", "i686-apple-darwin", "i686-linux-android", + "i686-pc-windows-msvc", "i686-unknown-freebsd", "i686-unknown-linux-gnu", "powerpc-unknown-linux-gnu", @@ -86642,6 +86937,7 @@ "x86_64-apple-darwin", "x86_64-apple-ios", "x86_64-linux-android", + "x86_64-pc-windows-msvc", "x86_64-unknown-freebsd", "x86_64-unknown-fuchsia", "x86_64-unknown-linux-gnu", @@ -86660,7 +86956,6 @@ "aarch64-unknown-nixos-gnu", "aarch64-unknown-nto-qnx710" ], - "cfg(target_arch = \"spirv\")": [], "cfg(target_arch = \"wasm32\")": [ "wasm32-unknown-unknown", "wasm32-wasip1" @@ -86704,6 +86999,11 @@ ], "cfg(target_os = \"haiku\")": [], "cfg(target_os = \"hermit\")": [], + "cfg(target_os = \"ios\")": [ + "aarch64-apple-ios", + "aarch64-apple-ios-sim", + "x86_64-apple-ios" + ], "cfg(target_os = \"linux\")": [ "aarch64-unknown-linux-gnu", "aarch64-unknown-nixos-gnu", @@ -86778,6 +87078,8 @@ "i686-unknown-linux-gnu": [ "i686-unknown-linux-gnu" ], + "i686-uwp-windows-gnu": [], + "i686-uwp-windows-msvc": [], "powerpc-unknown-linux-gnu": [ "powerpc-unknown-linux-gnu" ], @@ -86831,99 +87133,101 @@ ], "x86_64-unknown-none": [ "x86_64-unknown-none" - ] + ], + "x86_64-uwp-windows-gnu": [], + "x86_64-uwp-windows-msvc": [] }, "direct_deps": [ "actix-rt 2.10.0", "actix-web 4.9.0", "addr 0.15.6", - "aide 0.13.5", - "anyhow 1.0.95", - "arbitrary 1.4.1", + "aide 0.13.4", + "anyhow 1.0.93", + "arbitrary 1.3.2", "arc-swap 1.7.1", - "arrayvec 0.7.6", + "arrayvec 0.7.4", "askama 0.12.1", "assert-json-diff 2.0.2", "assert_cmd 2.0.16", "assert_matches 1.5.0", - "async-recursion 1.1.1", + "async-recursion 1.0.5", "async-scoped 0.8.0", "async-stream 0.3.6", - "async-trait 0.1.85", + "async-trait 0.1.83", "axum 0.7.9", "axum-extra 0.9.6", "axum-server 0.6.0", "backoff 0.4.0", - "backon 0.4.4", + "backon 0.4.1", "base32 0.4.0", "base64 0.13.1", "bech32 0.9.1", "bincode 1.3.3", "bindgen 0.65.1", - "bip32 0.5.2", + "bip32 0.5.1", "bit-vec 0.6.3", "bitcoin 0.28.2", - "bitcoin 0.32.5", + "bitcoin 0.32.2", "bitcoincore-rpc 0.15.0", "bitcoind 0.32.0", "bitflags 1.3.2", - "bs58 0.5.1", + "bs58 0.5.0", "build-info 0.0.27", "build-info-build 0.0.27", - "by_address 1.2.1", + "by_address 1.1.0", "byte-unit 4.0.19", "byteorder 1.5.0", "bytes 1.9.0", - "cached 0.49.3", + "cached 0.49.2", "canbench 0.1.8", "canbench-rs 0.1.8", - "candid 0.10.12", - "candid_parser 0.1.4", + "candid 0.10.10", + "candid_parser 0.1.2", "cargo_metadata 0.14.2", - "cc 1.2.9", + "cc 1.0.83", "cddl 0.9.4", "cfg-if 1.0.0", "chacha20poly1305 0.10.1", - "chrono 0.4.39", - "ciborium 0.2.2", + "chrono 0.4.38", + "ciborium 0.2.1", "cidr 0.2.3", - "clap 4.5.26", + "clap 4.5.20", "cloudflare 0.12.0", - "colored 2.2.0", - "comparable 0.5.5", + "colored 2.0.4", + "comparable 0.5.4", "console 0.11.3", "convert_case 0.6.0", - "crc32fast 1.4.2", + "crc32fast 1.3.2", "criterion 0.5.1", "crossbeam 0.8.4", - "crossbeam-channel 0.5.14", - "csv 1.3.1", + "crossbeam-channel 0.5.13", + "csv 1.2.2", "ctrlc 3.4.5", "curve25519-dalek 4.1.3", "cvt 0.1.2", - "dashmap 5.5.3", - "dyn-clone 1.0.17", + "dashmap 5.5.0", + "dyn-clone 1.0.14", "ed25519-dalek 2.1.1", - "educe 0.4.23", + "educe 0.4.22", "env-file-reader 0.3.0", - "erased-serde 0.3.31", - "escargot 0.5.13", - "ethers-core 2.0.14", - "ethnum 1.5.0", + "erased-serde 0.3.28", + "escargot 0.5.7", + "ethers-core 2.0.8", + "ethnum 1.3.2", "evm_rpc_types 1.2.0", "exec 0.3.1", - "eyre 0.6.12", + "eyre 0.6.8", "ff 0.12.1", - "flate2 1.0.35", + "flate2 1.0.31", "form_urlencoded 1.2.1", - "fqdn 0.3.12", + "fqdn 0.3.11", "fs_extra 1.3.0", "futures 0.3.31", "futures-util 0.3.31", "get_if_addrs 0.5.3", - "getrandom 0.2.15", + "getrandom 0.2.10", "group 0.13.0", - "hashlink 0.8.4", + "hashlink 0.8.3", "hex 0.4.3", "hex-literal 0.4.1", "hkdf 0.12.4", @@ -86933,8 +87237,8 @@ "http-body-util 0.1.2", "humantime 2.1.0", "humantime-serde 1.1.1", - "hyper 1.5.2", - "hyper-rustls 0.27.5", + "hyper 1.5.1", + "hyper-rustls 0.27.3", "hyper-socks2 0.9.1", "hyper-util 0.1.10", "ic-agent 0.39.2", @@ -86954,12 +87258,12 @@ "ic-metrics-encoder 1.1.1", "ic-response-verification 3.0.2", "ic-sha3 1.0.0", - "ic-stable-structures 0.6.7", + "ic-stable-structures 0.6.5", "ic-test-state-machine-client 3.0.1", "ic-transport-types 0.39.2", - "ic-utils 0.39.2", + "ic-utils 0.39.0", "ic-verify-bls-signature 0.6.0", - "ic-wasm 0.8.6", + "ic-wasm 0.8.4", "ic-xrc-types 1.2.0", "ic0 0.18.11", "ic_bls12_381 0.10.0", @@ -86967,31 +87271,31 @@ "icrc1-test-env 0.1.1", "icrc1-test-suite 0.1.1", "idna 1.0.3", - "indexmap 2.7.0", - "indicatif 0.17.9", + "indexmap 2.2.6", + "indicatif 0.17.5", "indoc 1.0.9", - "inferno 0.12.1", - "insta 1.42.0", + "inferno 0.12.0", + "insta 1.31.0", "instant-acme 0.7.2", "intmap 1.1.0", "ipnet 2.10.1", "isocountry 0.3.2", - "itertools 0.12.1", + "itertools 0.12.0", "json-patch 0.2.7", "json5 0.4.1", "k256 0.13.4", "k8s-openapi 0.22.0", "kube 0.93.1", - "lazy_static 1.5.0", + "lazy_static 1.4.0", "leb128 0.2.5", - "libc 0.2.169", + "libc 0.2.158", "libflate 2.1.0", - "libfuzzer-sys 0.4.8", + "libfuzzer-sys 0.4.7", "libnss 0.5.0", "little-loadshedder 0.2.0", "lmdb-rkv 0.14.99", "lmdb-rkv-sys 0.11.99", - "local-ip-address 0.5.7", + "local-ip-address 0.5.6", "lru 0.7.8", "macaddr 1.0.1", "mach2 0.4.2", @@ -87000,9 +87304,9 @@ "metrics-proxy 0.1.0", "minicbor 0.19.1", "minicbor-derive 0.13.0", - "mockall 0.13.1", - "mockito 1.6.1", - "moka 0.12.10", + "mockall 0.13.0", + "mockito 1.2.0", + "moka 0.12.8", "more-asserts 0.3.1", "nftables 0.4.1", "nix 0.24.3", @@ -87011,81 +87315,81 @@ "num-rational 0.2.4", "num-traits 0.2.19", "num_cpus 1.16.0", - "once_cell 1.20.2", + "once_cell 1.19.0", "openssh-keys 0.5.0", "opentelemetry 0.20.0", - "opentelemetry 0.27.1", + "opentelemetry 0.27.0", "opentelemetry-otlp 0.27.0", "opentelemetry-prometheus 0.13.0", "opentelemetry_sdk 0.27.1", "p256 0.13.2", "pairing 0.23.0", - "parking_lot 0.12.3", + "parking_lot 0.12.1", "paste 1.0.15", - "pcre2 0.2.9", + "pcre2 0.2.6", "pem 1.1.1", - "pin-project-lite 0.2.16", - "ping 0.5.2", + "pin-project-lite 0.2.13", + "ping 0.5.0", "pkcs8 0.10.2", - "pkg-config 0.3.31", + "pkg-config 0.3.27", "pprof 0.14.0", - "predicates 3.1.3", + "predicates 3.1.2", "pretty-bytes 0.2.2", - "pretty_assertions 1.4.1", - "priority-queue 1.4.0", - "proc-macro2 1.0.93", + "pretty_assertions 1.4.0", + "priority-queue 1.3.2", + "proc-macro2 1.0.89", "procfs 0.9.1", "prometheus 0.13.4", - "prometheus-parse 0.2.5", - "proptest 1.6.0", - "proptest-derive 0.5.1", - "prost 0.12.6", - "prost 0.13.4", - "prost-build 0.13.4", + "prometheus-parse 0.2.4", + "proptest 1.5.0", + "proptest-derive 0.5.0", + "prost 0.12.2", + "prost 0.13.3", + "prost-build 0.13.3", "protobuf 2.28.0", - "publicsuffix 2.3.0", + "publicsuffix 2.2.3", "quickcheck 1.0.3", - "quinn 0.11.6", - "quinn-udp 0.5.9", - "quote 1.0.38", + "quinn 0.11.5", + "quinn-udp 0.5.5", + "quote 1.0.37", "rand 0.8.5", "rand_chacha 0.3.1", "rand_distr 0.4.3", "rand_pcg 0.3.1", "ratelimit 0.9.1", "rayon 1.10.0", - "rcgen 0.13.2", - "regex 1.11.1", - "reqwest 0.12.12", - "rgb 0.8.50", - "ring 0.17.8", + "rcgen 0.13.1", + "regex 1.11.0", + "reqwest 0.12.9", + "rgb 0.8.37", + "ring 0.17.7", "ripemd 0.1.3", "rlp 0.5.2", "rocksdb 0.22.0", "rolling-file 0.2.0", - "rsa 0.9.7", + "rsa 0.9.6", "rstest 0.19.0", - "rusb 0.9.4", + "rusb 0.9.3", "rusqlite 0.28.0", "rust_decimal 1.36.0", "rust_decimal_macros 1.36.0", - "rustc-demangle 0.1.24", + "rustc-demangle 0.1.23", "rustc-hash 1.1.0", - "rustls 0.23.21", + "rustls 0.23.18", "rustls-pemfile 2.2.0", - "rustversion 1.0.19", + "rustversion 1.0.14", "rusty-fork 0.3.0", - "schemars 0.8.21", + "schemars 0.8.16", "scoped_threadpool 0.1.9", "scopeguard 1.2.0", "scraper 0.17.1", "secp256k1 0.22.2", - "semver 1.0.24", + "semver 1.0.22", "serde 1.0.217", "serde-bytes-repr 0.1.5", "serde_bytes 0.11.15", "serde_cbor 0.11.2", - "serde_json 1.0.135", + "serde_json 1.0.132", "serde_regex 1.1.0", "serde_with 1.14.0", "serde_yaml 0.9.34+deprecated", @@ -87093,7 +87397,7 @@ "sha3 0.10.8", "signal-hook 0.3.17", "signature 2.2.0", - "simple_asn1 0.6.3", + "simple_asn1 0.6.2", "simple_moving_average 1.0.2", "slog 2.7.0", "slog-async 2.8.0", @@ -87101,30 +87405,30 @@ "slog-json 2.6.1", "slog-scope 4.4.0", "slog-term 2.9.1", - "socket2 0.5.8", + "socket2 0.5.7", "ssh2 0.9.4", "static_assertions 1.1.0", "strum 0.26.3", "strum_macros 0.26.4", - "stubborn-io 0.3.5", + "stubborn-io 0.3.2", "subtle 2.6.1", "syn 1.0.109", - "tar 0.4.43", + "tar 0.4.39", "tarpc 0.34.0", - "tempfile 3.15.0", + "tempfile 3.12.0", "test-strategy 0.3.1", "tester 0.7.0", - "textplots 0.8.6", - "thiserror 2.0.11", + "textplots 0.8.4", + "thiserror 2.0.3", "thousands 0.2.0", "threadpool 1.8.1", "tikv-jemalloc-ctl 0.5.4", "tikv-jemallocator 0.5.4", - "time 0.3.37", - "tokio 1.43.0", + "time 0.3.36", + "tokio 1.42.0", "tokio-io-timeout 1.2.0", "tokio-metrics 0.4.0", - "tokio-rustls 0.26.1", + "tokio-rustls 0.26.0", "tokio-serde 0.8.0", "tokio-socks 0.5.2", "tokio-stream 0.1.17", @@ -87133,11 +87437,11 @@ "toml 0.5.11", "tonic 0.12.3", "tonic-build 0.12.3", - "tower 0.5.2", + "tower 0.5.1", "tower-http 0.6.2", "tower-request-id 0.3.0", "tower-test 0.4.0", - "tower_governor 0.4.3", + "tower_governor 0.4.2", "tracing 0.1.41", "tracing-appender 0.2.3", "tracing-flame 0.2.0", @@ -87147,22 +87451,22 @@ "tracing-subscriber 0.3.19", "trust-dns-resolver 0.22.0", "turmoil 0.6.4", - "url 2.5.4", - "uuid 1.12.0", + "url 2.5.3", + "uuid 1.11.0", "vsock 0.4.0", - "walkdir 2.5.0", + "walkdir 2.3.3", "warp 0.3.7", - "wasm-bindgen 0.2.100", + "wasm-bindgen 0.2.95", "wasm-encoder 0.217.0", "wasm-smith 0.212.0", "wasmparser 0.217.0", "wasmprinter 0.217.0", - "wasmtime 28.0.1", - "wasmtime-environ 28.0.1", + "wasmtime 28.0.0", + "wasmtime-environ 28.0.0", "wast 212.0.0", - "wat 1.223.0", + "wat 1.212.0", "wee_alloc 0.4.5", - "which 4.4.2", + "which 4.4.0", "wsl 0.1.0", "wycheproof 0.6.0", "x509-cert 0.2.5", diff --git a/Cargo.Bazel.toml.lock b/Cargo.Bazel.toml.lock index 46ca2139721..a41a0957dbd 100644 --- a/Cargo.Bazel.toml.lock +++ b/Cargo.Bazel.toml.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 4 +version = 3 [[package]] name = "abnf" @@ -35,11 +35,11 @@ dependencies = [ [[package]] name = "actix-codec" -version = "0.5.2" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" +checksum = "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8" dependencies = [ - "bitflags 2.8.0", + "bitflags 1.3.2", "bytes", "futures-core", "futures-sink", @@ -62,11 +62,11 @@ dependencies = [ "actix-utils", "ahash 0.8.11", "base64 0.22.1", - "bitflags 2.8.0", + "bitflags 2.6.0", "brotli 6.0.0", "bytes", "bytestring", - "derive_more 0.99.18", + "derive_more", "encoding_rs", "flate2", "futures-core", @@ -86,17 +86,17 @@ dependencies = [ "tokio", "tokio-util", "tracing", - "zstd", + "zstd 0.13.2", ] [[package]] name = "actix-macros" -version = "0.2.4" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" +checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6" dependencies = [ "quote", - "syn 2.0.96", + "syn 1.0.109", ] [[package]] @@ -127,17 +127,18 @@ dependencies = [ [[package]] name = "actix-server" -version = "2.5.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894" +checksum = "3e8613a75dd50cc45f473cee3c34d59ed677c0f7b44480ce3b8247d7dc519327" dependencies = [ "actix-rt", "actix-service", "actix-utils", "futures-core", "futures-util", - "mio 1.0.3", - "socket2 0.5.8", + "mio 0.8.10", + "num_cpus", + "socket2 0.4.9", "tokio", "tracing", ] @@ -183,7 +184,7 @@ dependencies = [ "bytestring", "cfg-if 1.0.0", "cookie", - "derive_more 0.99.18", + "derive_more", "encoding_rs", "futures-core", "futures-util", @@ -200,7 +201,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "smallvec", - "socket2 0.5.8", + "socket2 0.5.7", "time", "url", ] @@ -214,7 +215,7 @@ dependencies = [ "actix-router", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -228,18 +229,18 @@ dependencies = [ [[package]] name = "addr2line" -version = "0.24.2" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" +checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" dependencies = [ - "gimli 0.31.1", + "gimli 0.27.3", ] [[package]] -name = "adler2" -version = "2.0.0" +name = "adler" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] name = "adler32" @@ -283,29 +284,29 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.1.3" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" dependencies = [ "memchr", ] [[package]] name = "aide" -version = "0.13.5" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5678d2978845ddb4bd736a026f467dd652d831e9e6254b0e41b07f7ee7523309" +checksum = "7b0e3b97a21e41ec5c19bfd9b4fc1f7086be104f8b988681230247ffc91cc8ed" dependencies = [ "axum", "bytes", "cfg-if 1.0.0", "http 1.2.0", - "indexmap 2.7.0", + "indexmap 2.2.6", "schemars", "serde", "serde_json", "serde_qs", - "thiserror 1.0.69", + "thiserror 1.0.68", "tower-layer", "tower-service", "tracing", @@ -364,9 +365,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" [[package]] name = "anstream" -version = "0.6.18" +version = "0.6.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" +checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" dependencies = [ "anstyle", "anstyle-parse", @@ -379,50 +380,49 @@ dependencies = [ [[package]] name = "anstyle" -version = "1.0.10" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" +checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" [[package]] name = "anstyle-parse" -version = "0.2.6" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" +checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.1.2" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" +checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.48.0", ] [[package]] name = "anstyle-wincon" -version = "3.0.7" +version = "3.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" +checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" dependencies = [ "anstyle", - "once_cell", - "windows-sys 0.59.0", + "windows-sys 0.48.0", ] [[package]] name = "anyhow" -version = "1.0.95" +version = "1.0.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" +checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775" [[package]] name = "arbitrary" -version = "1.4.1" +version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223" +checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" dependencies = [ "derive_arbitrary", ] @@ -441,9 +441,9 @@ checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" [[package]] name = "arrayvec" -version = "0.7.6" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" +checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" [[package]] name = "ascii-canvas" @@ -471,9 +471,9 @@ dependencies = [ [[package]] name = "askama_derive" -version = "0.12.5" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83" +checksum = "9a0fc7dcf8bd4ead96b1d36b41df47c14beedf7b0301fc543d8f2384e66a2ec0" dependencies = [ "askama_parser", "basic-toml", @@ -482,7 +482,7 @@ dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -493,18 +493,18 @@ checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341" [[package]] name = "askama_parser" -version = "0.2.1" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0" +checksum = "c268a96e01a4c47c8c5c2472aaa570707e006a875ea63e819f75474ceedaf7b4" dependencies = [ "nom", ] [[package]] name = "asn1-rs" -version = "0.6.2" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" +checksum = "22ad1373757efa0f70ec53939aabc7152e1591cb485208052993070ac8d2429d" dependencies = [ "asn1-rs-derive", "asn1-rs-impl", @@ -512,19 +512,19 @@ dependencies = [ "nom", "num-traits", "rusticata-macros", - "thiserror 1.0.69", + "thiserror 1.0.68", "time", ] [[package]] name = "asn1-rs-derive" -version = "0.5.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" +checksum = "7378575ff571966e99a744addeff0bff98b8ada0dedf1956d59e634db95eaac1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", "synstructure", ] @@ -536,7 +536,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -589,25 +589,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" dependencies = [ "concurrent-queue", - "event-listener-strategy", + "event-listener-strategy 0.5.2", "futures-core", "pin-project-lite", ] [[package]] name = "async-compression" -version = "0.4.18" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df895a515f70646414f4b45c0b79082783b80552b373a68283012928df56f522" +checksum = "bb42b2197bf15ccb092b62c74515dbd8b86d0effd934795f6687c93b6e679a2c" dependencies = [ - "brotli 7.0.0", + "brotli 3.3.4", "flate2", "futures-core", "memchr", "pin-project-lite", "tokio", - "zstd", - "zstd-safe", + "zstd 0.12.4", + "zstd-safe 6.0.5+zstd.1.5.4", ] [[package]] @@ -625,9 +625,9 @@ dependencies = [ [[package]] name = "async-io" -version = "2.4.0" +version = "2.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059" +checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" dependencies = [ "async-lock", "cfg-if 1.0.0", @@ -644,12 +644,12 @@ dependencies = [ [[package]] name = "async-lock" -version = "3.4.0" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" +checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" dependencies = [ - "event-listener 5.4.0", - "event-listener-strategy", + "event-listener 4.0.3", + "event-listener-strategy 0.4.0", "pin-project-lite", ] @@ -666,13 +666,13 @@ dependencies = [ [[package]] name = "async-recursion" -version = "1.1.1" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" +checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -692,7 +692,7 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8da2537846e16b96d2972ee52a3b355663872a1a687ce6d57a3b6f6b6a181c89" dependencies = [ - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", ] @@ -715,7 +715,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -726,13 +726,13 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.85" +version = "0.1.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056" +checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -758,8 +758,8 @@ dependencies = [ "lazy_static", "log", "rustls-pki-types", - "thiserror 1.0.69", - "webpki-roots 0.26.7", + "thiserror 1.0.68", + "webpki-roots 0.26.1", ] [[package]] @@ -781,13 +781,14 @@ dependencies = [ [[package]] name = "auto_impl" -version = "1.2.1" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e12882f59de5360c748c4cbf569a042d5fb0eb515f7bea9c1f470b47f6ffbd73" +checksum = "fee3da8ef1276b0bee5dd1c7258010d8fffd31801447323115a25560e1327b89" dependencies = [ + "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.96", + "syn 1.0.109", ] [[package]] @@ -796,14 +797,14 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", ] [[package]] name = "autocfg" -version = "1.4.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "axum" @@ -819,7 +820,7 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.2", + "hyper 1.5.1", "hyper-util", "itoa", "matchit", @@ -832,9 +833,9 @@ dependencies = [ "serde_json", "serde_path_to_error", "serde_urlencoded", - "sync_wrapper 1.0.2", + "sync_wrapper 1.0.1", "tokio", - "tower 0.5.2", + "tower 0.5.1", "tower-layer", "tower-service", "tracing", @@ -855,7 +856,7 @@ dependencies = [ "mime", "pin-project-lite", "rustversion", - "sync_wrapper 1.0.2", + "sync_wrapper 1.0.1", "tower-layer", "tower-service", "tracing", @@ -870,7 +871,7 @@ dependencies = [ "axum", "axum-core", "bytes", - "fastrand", + "fastrand 2.1.0", "futures-util", "headers 0.4.0", "http 1.2.0", @@ -880,7 +881,7 @@ dependencies = [ "multer 3.1.0", "pin-project-lite", "serde", - "tower 0.5.2", + "tower 0.5.1", "tower-layer", "tower-service", ] @@ -893,7 +894,7 @@ checksum = "57d123550fa8d071b7255cb0cc04dc302baa6c8c4a79f55701552684d8399bce" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -926,7 +927,7 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.2", + "hyper 1.5.1", "hyper-util", "pin-project-lite", "rustls 0.21.12", @@ -953,11 +954,11 @@ dependencies = [ [[package]] name = "backon" -version = "0.4.4" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d67782c3f868daa71d3533538e98a8e13713231969def7536e8039606fc46bf0" +checksum = "0c1a6197b2120bb2185a267f6515038558b019e92b832bb0320e96d66268dcf9" dependencies = [ - "fastrand", + "fastrand 1.9.0", "futures-core", "pin-project", "tokio", @@ -965,17 +966,17 @@ dependencies = [ [[package]] name = "backtrace" -version = "0.3.74" +version = "0.3.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" +checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" dependencies = [ "addr2line", + "cc", "cfg-if 1.0.0", "libc", "miniz_oxide", - "object", + "object 0.31.1", "rustc-demangle", - "windows-targets 0.52.6", ] [[package]] @@ -1014,9 +1015,9 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" [[package]] name = "base64" -version = "0.21.7" +version = "0.21.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +checksum = "c79fed4cdb43e993fcdadc7e58a09fd0e3e649c4436fa11da71c9f1f3ee7feb9" [[package]] name = "base64" @@ -1030,7 +1031,7 @@ version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb9fb9fb058cc3063b5fc88d9a21eefa2735871498a04e1650da76ed511c8569" dependencies = [ - "base64 0.21.7", + "base64 0.21.6", ] [[package]] @@ -1041,9 +1042,9 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "basic-toml" -version = "0.1.9" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8" +checksum = "2f2139706359229bfa8f19142ac1155b4b80beafb7a60471ac5dd109d4a19778" dependencies = [ "serde", ] @@ -1099,19 +1100,19 @@ dependencies = [ "regex", "rustc-hash 1.1.0", "shlex", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "bindgen" -version = "0.69.5" +version = "0.69.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" +checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "cexpr", "clang-sys", - "itertools 0.12.1", + "itertools 0.12.0", "lazy_static", "lazycell", "proc-macro2", @@ -1119,7 +1120,7 @@ dependencies = [ "regex", "rustc-hash 1.1.0", "shlex", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -1147,9 +1148,9 @@ dependencies = [ [[package]] name = "bip32" -version = "0.5.2" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa13fae8b6255872fd86f7faf4b41168661d7d78609f7bfe6771b85c6739a15b" +checksum = "7e141fb0f8be1c7b45887af94c88b182472b57c96b56773250ae00cd6a14a164" dependencies = [ "bs58", "hmac", @@ -1169,16 +1170,7 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" dependencies = [ - "bit-vec 0.6.3", -] - -[[package]] -name = "bit-set" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" -dependencies = [ - "bit-vec 0.8.0", + "bit-vec", ] [[package]] @@ -1187,12 +1179,6 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" -[[package]] -name = "bit-vec" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" - [[package]] name = "bitcoin" version = "0.28.2" @@ -1207,9 +1193,9 @@ dependencies = [ [[package]] name = "bitcoin" -version = "0.30.2" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1945a5048598e4189e239d3f809b19bdad4845c4b2ba400d304d2dcf26d2c462" +checksum = "b36f4c848f6bd9ff208128f08751135846cc23ae57d66ab10a22efff1c675f3c" dependencies = [ "bech32 0.9.1", "bitcoin-private", @@ -1221,9 +1207,9 @@ dependencies = [ [[package]] name = "bitcoin" -version = "0.32.5" +version = "0.32.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce6bc65742dea50536e35ad42492b234c27904a27f0abdcbce605015cb4ea026" +checksum = "ea507acc1cd80fc084ace38544bbcf7ced7c2aa65b653b102de0ce718df668f6" dependencies = [ "base58ck", "bech32 0.11.0", @@ -1233,7 +1219,7 @@ dependencies = [ "bitcoin_hashes 0.14.0", "hex-conservative", "hex_lit", - "secp256k1 0.29.1", + "secp256k1 0.29.0", ] [[package]] @@ -1244,9 +1230,9 @@ checksum = "30bdbe14aa07b06e6cfeffc529a1f099e5fbe249524f8125358604df99a4bed2" [[package]] name = "bitcoin-io" -version = "0.1.3" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf" +checksum = "340e09e8399c7bd8912f495af6aa58bea0c9214773417ffaa8f6460f93aaee56" [[package]] name = "bitcoin-private" @@ -1337,9 +1323,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.8.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" +checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "bitvec" @@ -1386,9 +1372,9 @@ dependencies = [ [[package]] name = "borsh" -version = "1.5.4" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fb65153674e51d3a42c8f27b05b9508cea85edfaade8aa46bc8fc18cecdfef3" +checksum = "f5327f6c99920069d1fe374aa743be1af0031dea9f250852cdf1ae6a0861ee24" dependencies = [ "borsh-derive", "cfg_aliases", @@ -1396,15 +1382,26 @@ dependencies = [ [[package]] name = "borsh-derive" -version = "1.5.4" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a396e17ad94059c650db3d253bb6e25927f1eb462eede7e7a153bb6e75dce0a7" +checksum = "10aedd8f1a81a8aafbfde924b0e3061cd6fedd6f6bbcfc6a76e6fd426d7bfe26" dependencies = [ "once_cell", - "proc-macro-crate", + "proc-macro-crate 3.2.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", +] + +[[package]] +name = "brotli" +version = "3.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor 2.3.4", ] [[package]] @@ -1415,7 +1412,7 @@ checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", - "brotli-decompressor", + "brotli-decompressor 4.0.1", ] [[package]] @@ -1426,7 +1423,17 @@ checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", - "brotli-decompressor", + "brotli-decompressor 4.0.1", +] + +[[package]] +name = "brotli-decompressor" +version = "2.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", ] [[package]] @@ -1441,9 +1448,9 @@ dependencies = [ [[package]] name = "bs58" -version = "0.5.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" +checksum = "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896" dependencies = [ "sha2 0.10.8", "tinyvec", @@ -1451,12 +1458,12 @@ dependencies = [ [[package]] name = "bstr" -version = "1.11.3" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0" +checksum = "6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05" dependencies = [ "memchr", - "regex-automata 0.4.9", + "regex-automata 0.3.3", "serde", ] @@ -1494,7 +1501,7 @@ name = "build-info-common" version = "0.0.27" source = "git+https://github.com/dfinity-lab/build-info?rev=701a696844fba5c87df162fbbc1ccef96f27c9d7#701a696844fba5c87df162fbbc1ccef96f27c9d7" dependencies = [ - "derive_more 0.99.18", + "derive_more", "semver", "serde", ] @@ -1530,9 +1537,9 @@ dependencies = [ [[package]] name = "by_address" -version = "1.2.1" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06" +checksum = "bf8dba2868114ed769a1f2590fc9ae5eb331175b44313b6c9b922f8f7ca813d0" [[package]] name = "byte-slice-cast" @@ -1552,9 +1559,9 @@ dependencies = [ [[package]] name = "bytecheck" -version = "0.6.12" +version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" +checksum = "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627" dependencies = [ "bytecheck_derive", "ptr_meta", @@ -1563,9 +1570,9 @@ dependencies = [ [[package]] name = "bytecheck_derive" -version = "0.6.12" +version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" +checksum = "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61" dependencies = [ "proc-macro2", "quote", @@ -1574,9 +1581,9 @@ dependencies = [ [[package]] name = "bytemuck" -version = "1.21.0" +version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3" +checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" [[package]] name = "byteorder" @@ -1601,9 +1608,9 @@ checksum = "a3e368af43e418a04d52505cf3dbc23dda4e3407ae2fa99fd0e4f308ce546acc" [[package]] name = "bytestring" -version = "1.4.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f" +checksum = "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae" dependencies = [ "bytes", ] @@ -1627,14 +1634,14 @@ checksum = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b" [[package]] name = "cached" -version = "0.49.3" +version = "0.49.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e8e463fceca5674287f32d252fb1d94083758b8709c160efae66d263e5f4eba" +checksum = "f251fd1e72720ca07bf5d8e310f54a193fd053479a1f6342c6663ee4fa01cf96" dependencies = [ "hashbrown 0.14.5", "instant", "once_cell", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -1647,7 +1654,7 @@ dependencies = [ "hashbrown 0.14.5", "instant", "once_cell", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -1661,7 +1668,7 @@ dependencies = [ "cached_proc_macro_types", "hashbrown 0.14.5", "once_cell", - "thiserror 1.0.69", + "thiserror 1.0.68", "web-time", ] @@ -1674,7 +1681,7 @@ dependencies = [ "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -1685,9 +1692,9 @@ checksum = "ade8366b8bd5ba243f0a58f036cc0ca8a2f069cff1a2351ef1cac6b083e16fc0" [[package]] name = "camino" -version = "1.1.9" +version = "1.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" +checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" dependencies = [ "serde", ] @@ -1700,7 +1707,7 @@ checksum = "cb548f9e006ad29b160d37e07435c499af7d2741918e18d95ddc87dfe97a0b8d" dependencies = [ "canbench-rs", "candid", - "clap 4.5.26", + "clap 4.5.20", "colored", "flate2", "hex", @@ -1739,9 +1746,9 @@ dependencies = [ [[package]] name = "candid" -version = "0.10.12" +version = "0.10.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51e129c4051c57daf943586e01ef72faae48b04a8f692d5f646febf17a264c38" +checksum = "6c30ee7f886f296b6422c0ff017e89dd4f831521dfdcc76f3f71aae1ce817222" dependencies = [ "anyhow", "binread", @@ -1753,11 +1760,11 @@ dependencies = [ "num-bigint 0.4.6", "num-traits", "paste", - "pretty 0.12.3", + "pretty 0.12.1", "serde", "serde_bytes", "stacker", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -1769,33 +1776,33 @@ dependencies = [ "lazy_static", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "candid_parser" -version = "0.1.4" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48a3da76f989cd350b7342c64c6c6008341bb6186f6832ef04e56dc50ba0fd76" +checksum = "36381de3ba8a312deb028552c0d63f7c7fe6e204f44bae4c58a3643308cfa9d5" dependencies = [ "anyhow", "candid", "codespan-reporting", "convert_case 0.6.0", "hex", - "lalrpop 0.20.2", - "lalrpop-util 0.20.2", + "lalrpop 0.20.0", + "lalrpop-util 0.20.0", "logos 0.13.0", "num-bigint 0.4.6", - "pretty 0.12.3", - "thiserror 1.0.69", + "pretty 0.12.1", + "thiserror 1.0.68", ] [[package]] name = "cargo-platform" -version = "0.1.9" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" +checksum = "2cfa25e60aea747ec7e1124f238816749faa93759c6ff5b31f1ccdda137f4479" dependencies = [ "serde", ] @@ -1821,13 +1828,12 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] name = "cc" -version = "1.2.9" +version = "1.0.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8293772165d9345bdaaa39b45b2109591e63fe5e6fbc23c6ff930a048aa310b" +checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" dependencies = [ "jobserver", "libc", - "shlex", ] [[package]] @@ -1854,7 +1860,7 @@ dependencies = [ "pest_meta", "pest_vm", "regex", - "regex-syntax 0.7.5", + "regex-syntax 0.7.4", "serde", "serde-wasm-bindgen", "serde_json", @@ -1922,9 +1928,9 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.39" +version = "0.4.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825" +checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" dependencies = [ "android-tzdata", "iana-time-zone", @@ -1937,9 +1943,9 @@ dependencies = [ [[package]] name = "ciborium" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" +checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" dependencies = [ "ciborium-io", "ciborium-ll", @@ -1948,18 +1954,18 @@ dependencies = [ [[package]] name = "ciborium-io" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" +checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" [[package]] name = "ciborium-ll" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" +checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" dependencies = [ "ciborium-io", - "half 2.4.1", + "half", ] [[package]] @@ -1981,9 +1987,9 @@ dependencies = [ [[package]] name = "clang-sys" -version = "1.8.1" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" +checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" dependencies = [ "glob", "libc", @@ -2009,23 +2015,23 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.26" +version = "4.5.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783" +checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" dependencies = [ "clap_builder", - "clap_derive 4.5.24", + "clap_derive 4.5.18", ] [[package]] name = "clap_builder" -version = "4.5.26" +version = "4.5.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121" +checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" dependencies = [ "anstream", "anstyle", - "clap_lex 0.7.4", + "clap_lex 0.7.2", "strsim 0.11.1", ] @@ -2044,14 +2050,14 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.24" +version = "4.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c" +checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -2065,9 +2071,9 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.7.4" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" +checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" [[package]] name = "clocksource" @@ -2102,7 +2108,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "serde_with 2.3.3", - "thiserror 1.0.69", + "thiserror 1.0.68", "url", "uuid", ] @@ -2120,7 +2126,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "serde_with 2.3.3", - "thiserror 1.0.69", + "thiserror 1.0.68", "url", "uuid", ] @@ -2138,23 +2144,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" dependencies = [ "termcolor", - "unicode-width 0.1.14", + "unicode-width", ] [[package]] name = "colorchoice" -version = "1.0.3" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" +checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] name = "colored" -version = "2.2.0" +version = "2.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c" +checksum = "2674ec482fbc38012cf31e6c42ba0177b431a0cb6f15fe40efa5aab1bda516f6" dependencies = [ + "is-terminal", "lazy_static", - "windows-sys 0.59.0", + "windows-sys 0.48.0", ] [[package]] @@ -2169,9 +2176,9 @@ dependencies = [ [[package]] name = "comparable" -version = "0.5.5" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8606f9aa5b5a2df738584b139c79413d0c1545ed0ffd16e76e0944d1de7388c0" +checksum = "eb513ee8037bf08c5270ecefa48da249f4c58e57a71ccfce0a5b0877d2a20eb2" dependencies = [ "comparable_derive", "comparable_helper", @@ -2181,9 +2188,9 @@ dependencies = [ [[package]] name = "comparable_derive" -version = "0.5.5" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41f36ea7383b9a2a9ae0a4e225d8a9c1c3aeadde78c59cdc35bad5c02b4dad01" +checksum = "a54b9c40054eb8999c5d1d36fdc90e4e5f7ff0d1d9621706f360b3cbc8beb828" dependencies = [ "convert_case 0.4.0", "proc-macro2", @@ -2193,9 +2200,9 @@ dependencies = [ [[package]] name = "comparable_helper" -version = "0.5.5" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "71c9b60259084f32c14d32476f3a299b4997e3c186e1473bd972ff8a8c83d1b4" +checksum = "fb5437e327e861081c91270becff184859f706e3e50f5301a9d4dc8eb50752c3" dependencies = [ "convert_case 0.6.0", "proc-macro2", @@ -2218,28 +2225,28 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c0994e656bba7b922d8dd1245db90672ffb701e684e45be58f20719d69abc5a" dependencies = [ - "encode_unicode 0.3.6", + "encode_unicode", "lazy_static", "libc", "regex", "terminal_size", "termios", - "unicode-width 0.1.14", + "unicode-width", "winapi 0.3.9", "winapi-util", ] [[package]] name = "console" -version = "0.15.10" +version = "0.15.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea3c6ecd8059b57859df5c69830340ed3c41d30e3da0c1cbed90a96ac853041b" +checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" dependencies = [ - "encode_unicode 1.0.0", + "encode_unicode", + "lazy_static", "libc", - "once_cell", - "unicode-width 0.2.0", - "windows-sys 0.59.0", + "unicode-width", + "windows-sys 0.45.0", ] [[package]] @@ -2252,24 +2259,11 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "const-hex" -version = "1.14.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b0485bab839b018a8f1723fc5391819fea5f8f0f32288ef8a735fd096b6160c" -dependencies = [ - "cfg-if 1.0.0", - "cpufeatures", - "hex", - "proptest", - "serde", -] - [[package]] name = "const-oid" -version = "0.9.6" +version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" +checksum = "795bc6e66a8e340f075fcf6227e417a2dc976b92b91f3cdc778bb858778b6747" [[package]] name = "convert_case" @@ -2307,16 +2301,6 @@ dependencies = [ "libc", ] -[[package]] -name = "core-foundation" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" -dependencies = [ - "core-foundation-sys", - "libc", -] - [[package]] name = "core-foundation-sys" version = "0.8.7" @@ -2343,7 +2327,7 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "581898ed9a83f31c64731b1d8ca2dfffcfec14edf1635afacd5234cddbde3a41" dependencies = [ - "bitcoin 0.30.2", + "bitcoin 0.30.0", "bitcoin-private", "serde", "serde_json", @@ -2360,27 +2344,27 @@ dependencies = [ [[package]] name = "cpufeatures" -version = "0.2.16" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3" +checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" dependencies = [ "libc", ] [[package]] name = "cranelift-bforest" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88c1d02b72b6c411c0a2e92b25ed791ad5d071184193c08a34aa0fdcdf000b72" +checksum = "ac89549be94911dd0e839b4a7db99e9ed29c17517e1c026f61066884c168aa3c" dependencies = [ "cranelift-entity", ] [[package]] name = "cranelift-bitset" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "720b93bd86ebbb23ebfb2db1ed44d54b2ecbdbb2d034d485bc64aa605ee787ab" +checksum = "b9bd49369f76c77e34e641af85d0956869237832c118964d08bf5f51f210875a" dependencies = [ "serde", "serde_derive", @@ -2388,9 +2372,9 @@ dependencies = [ [[package]] name = "cranelift-codegen" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aed3d2d9914d30b460eedd7fd507720203023997bef71452ce84873f9c93537c" +checksum = "fd96ce9cf8efebd7f5ab8ced5a0ce44250280bbae9f593d74a6d7effc3582a35" dependencies = [ "bumpalo", "cranelift-bforest", @@ -2404,7 +2388,7 @@ dependencies = [ "hashbrown 0.14.5", "log", "regalloc2", - "rustc-hash 2.1.0", + "rustc-hash 2.0.0", "serde", "smallvec", "target-lexicon", @@ -2412,33 +2396,33 @@ dependencies = [ [[package]] name = "cranelift-codegen-meta" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "888c188d32263ec9e048873ff0b68c700933600d553f4412417916828be25f8e" +checksum = "5a68e358827afe4bfb6239fcbf6fbd5ac56206ece8a99c8f5f9bbd518773281a" dependencies = [ "cranelift-codegen-shared", ] [[package]] name = "cranelift-codegen-shared" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ddd5f4114d04ce7e073dd74e2ad16541fc61970726fcc8b2d5644a154ee4127" +checksum = "e184c9767afbe73d50c55ec29abcf4c32f9baf0d9d22b86d58c4d55e06dee181" [[package]] name = "cranelift-control" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92cc4c98d6a4256a1600d93ccd3536f3e77da9b4ca2c279de786ac22876e67d6" +checksum = "5cc7664f2a66f053e33f149e952bb5971d138e3af637f5097727ed6dc0ed95dd" dependencies = [ "arbitrary", ] [[package]] name = "cranelift-entity" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "760af4b5e051b5f82097a27274b917e3751736369fa73660513488248d27f23d" +checksum = "118597e3a9cf86c3556fa579a7a23b955fa18231651a52a77a2475d305a9cf84" dependencies = [ "cranelift-bitset", "serde", @@ -2447,9 +2431,9 @@ dependencies = [ [[package]] name = "cranelift-frontend" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0bf77ec0f470621655ec7539860b5c620d4f91326654ab21b075b83900f8831" +checksum = "7638ea1efb069a0aa18d8ee67401b6b0d19f6bfe5de5e9ede348bfc80bb0d8c7" dependencies = [ "cranelift-codegen", "log", @@ -2459,15 +2443,15 @@ dependencies = [ [[package]] name = "cranelift-isle" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b665d0a6932c421620be184f9fc7f7adaf1b0bc2fa77bb7ac5177c49abf645b" +checksum = "15c53e1152a0b01c4ed2b1e0535602b8e86458777dd9d18b28732b16325c7dc0" [[package]] name = "cranelift-native" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb2e75d1bd43dfec10924798f15e6474f1dbf63b0024506551aa19394dbe72ab" +checksum = "7b7d8f895444fa52dd7bdd0bed11bf007a7fb43af65a6deac8fcc4094c6372f7" dependencies = [ "cranelift-codegen", "libc", @@ -2476,9 +2460,9 @@ dependencies = [ [[package]] name = "crc32fast" -version = "1.4.2" +version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" +checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" dependencies = [ "cfg-if 1.0.0", ] @@ -2492,7 +2476,7 @@ dependencies = [ "anes", "cast", "ciborium", - "clap 4.5.26", + "clap 4.5.20", "criterion-plot", "futures", "is-terminal", @@ -2536,18 +2520,18 @@ dependencies = [ [[package]] name = "crossbeam-channel" -version = "0.5.14" +version = "0.5.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471" +checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" dependencies = [ "crossbeam-utils", ] [[package]] name = "crossbeam-deque" -version = "0.8.6" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" +checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" dependencies = [ "crossbeam-epoch", "crossbeam-utils", @@ -2564,18 +2548,18 @@ dependencies = [ [[package]] name = "crossbeam-queue" -version = "0.3.12" +version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" +checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" dependencies = [ "crossbeam-utils", ] [[package]] name = "crossbeam-utils" -version = "0.8.21" +version = "0.8.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" +checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" [[package]] name = "crossterm" @@ -2583,11 +2567,11 @@ version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "crossterm_winapi", "libc", - "mio 0.8.11", - "parking_lot 0.12.3", + "mio 0.8.10", + "parking_lot 0.12.1", "signal-hook", "signal-hook-mio", "winapi 0.3.9", @@ -2610,9 +2594,9 @@ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" [[package]] name = "crypto-bigint" -version = "0.5.5" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" +checksum = "cf4c2f4e1afd912bc40bfd6fed5d9dc1f288e0ba01bfcc835cc5bc3eb13efe15" dependencies = [ "generic-array", "rand_core 0.6.4", @@ -2640,7 +2624,7 @@ dependencies = [ "cssparser-macros", "dtoa-short", "itoa", - "phf 0.11.3", + "phf 0.11.2", "smallvec", ] @@ -2651,14 +2635,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" dependencies = [ "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "csv" -version = "1.3.1" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf" +checksum = "626ae34994d3d8d668f4269922248239db4ae42d538b14c398b74a52208e8086" dependencies = [ "csv-core", "itoa", @@ -2668,9 +2652,9 @@ dependencies = [ [[package]] name = "csv-core" -version = "0.1.11" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" +checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" dependencies = [ "memchr", ] @@ -2711,7 +2695,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -2781,7 +2765,7 @@ dependencies = [ "proc-macro2", "quote", "strsim 0.11.1", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -2803,26 +2787,26 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core 0.20.10", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "dary_heap" -version = "0.3.7" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728" +checksum = "7762d17f1241643615821a8455a0b2c3e803784b058693d990b11f2dce25a0ca" [[package]] name = "dashmap" -version = "5.5.3" +version = "5.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" +checksum = "6943ae99c34386c84a470c499d3414f66502a41340aa895406e0d2e4a207b91d" dependencies = [ "cfg-if 1.0.0", "hashbrown 0.14.5", "lock_api", "once_cell", - "parking_lot_core 0.9.10", + "parking_lot_core 0.9.8", ] [[package]] @@ -2836,14 +2820,14 @@ dependencies = [ "hashbrown 0.14.5", "lock_api", "once_cell", - "parking_lot_core 0.9.10", + "parking_lot_core 0.9.8", ] [[package]] name = "data-encoding" -version = "2.7.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e60eed09d8c01d3cee5b7d30acb059b76614c918fa0f992e0dd6eeb10daad6f" +checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" [[package]] name = "debugid" @@ -2856,9 +2840,9 @@ dependencies = [ [[package]] name = "der" -version = "0.7.9" +version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" +checksum = "0c7ed52955ce76b1554f509074bb357d3fb8ac9b51288a65a3fd480d1dfba946" dependencies = [ "const-oid", "der_derive", @@ -2883,13 +2867,13 @@ dependencies = [ [[package]] name = "der_derive" -version = "0.7.3" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18" +checksum = "5fe87ce4529967e0ba1dcf8450bab64d97dfd5010a6256187ffe2e43e6f0e049" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -2910,51 +2894,31 @@ checksum = "2cdc8d50f426189eef89dac62fabfa0abb27d5cc008f25bf4156a0203325becc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "derive_arbitrary" -version = "1.4.1" +version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" +checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "derive_more" -version = "0.99.18" +version = "0.99.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" +checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" dependencies = [ "convert_case 0.4.0", "proc-macro2", "quote", "rustc_version", - "syn 2.0.96", -] - -[[package]] -name = "derive_more" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" -dependencies = [ - "derive_more-impl", -] - -[[package]] -name = "derive_more-impl" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.96", + "syn 1.0.109", ] [[package]] @@ -3001,7 +2965,7 @@ dependencies = [ "anyhow", "arbitrary", "arc-swap", - "arrayvec 0.7.6", + "arrayvec 0.7.4", "askama", "assert-json-diff", "assert_cmd", @@ -3021,9 +2985,9 @@ dependencies = [ "bincode", "bindgen 0.65.1", "bip32", - "bit-vec 0.6.3", + "bit-vec", "bitcoin 0.28.2", - "bitcoin 0.32.5", + "bitcoin 0.32.2", "bitcoincore-rpc", "bitcoind", "bitflags 1.3.2", @@ -3034,7 +2998,7 @@ dependencies = [ "byte-unit", "byteorder", "bytes", - "cached 0.49.3", + "cached 0.49.2", "canbench", "canbench-rs", "candid", @@ -3047,7 +3011,7 @@ dependencies = [ "chrono", "ciborium", "cidr", - "clap 4.5.26", + "clap 4.5.20", "cloudflare 0.12.0 (git+https://github.com/dfinity/cloudflare-rs.git?rev=a6538a036926bd756986c9c0a5de356daef48881)", "colored", "comparable", @@ -3061,7 +3025,7 @@ dependencies = [ "ctrlc", "curve25519-dalek", "cvt", - "dashmap 5.5.3", + "dashmap 5.5.0", "dyn-clone", "ed25519-dalek", "educe", @@ -3076,7 +3040,7 @@ dependencies = [ "ff 0.12.1", "flate2", "form_urlencoded", - "fqdn 0.3.12", + "fqdn 0.3.11", "fs_extra", "futures", "futures-util", @@ -3093,8 +3057,8 @@ dependencies = [ "http-body-util", "humantime", "humantime-serde", - "hyper 1.5.2", - "hyper-rustls 0.27.5", + "hyper 1.5.1", + "hyper-rustls 0.27.3", "hyper-socks2", "hyper-util", "ic-agent", @@ -3127,16 +3091,16 @@ dependencies = [ "icrc1-test-env", "icrc1-test-suite", "idna 1.0.3", - "indexmap 2.7.0", + "indexmap 2.2.6", "indicatif", "indoc", - "inferno 0.12.1", + "inferno 0.12.0", "insta", "instant-acme", "intmap", "ipnet", "isocountry", - "itertools 0.12.1", + "itertools 0.12.0", "json-patch", "json5", "k256", @@ -3174,13 +3138,13 @@ dependencies = [ "once_cell", "openssh-keys", "opentelemetry 0.20.0", - "opentelemetry 0.27.1", + "opentelemetry 0.27.0", "opentelemetry-otlp", "opentelemetry-prometheus 0.13.0", "opentelemetry_sdk 0.27.1", "p256", "pairing", - "parking_lot 0.12.3", + "parking_lot 0.12.1", "paste", "pcre2", "pem 1.1.1", @@ -3199,9 +3163,9 @@ dependencies = [ "prometheus-parse", "proptest", "proptest-derive", - "prost 0.12.6", - "prost 0.13.4", - "prost-build 0.13.4", + "prost 0.12.2", + "prost 0.13.3", + "prost-build 0.13.3", "protobuf", "publicsuffix", "quickcheck", @@ -3216,9 +3180,9 @@ dependencies = [ "rayon", "rcgen", "regex", - "reqwest 0.12.12", + "reqwest 0.12.9", "rgb", - "ring 0.17.8", + "ring 0.17.7", "ripemd", "rlp", "rocksdb", @@ -3231,7 +3195,7 @@ dependencies = [ "rust_decimal_macros", "rustc-demangle", "rustc-hash 1.1.0", - "rustls 0.23.21", + "rustls 0.23.18", "rustls-pemfile 2.2.0", "rustversion", "rusty-fork", @@ -3261,11 +3225,11 @@ dependencies = [ "slog-json", "slog-scope", "slog-term", - "socket2 0.5.8", + "socket2 0.5.7", "ssh2", "static_assertions", - "strum", - "strum_macros", + "strum 0.26.3", + "strum_macros 0.26.4", "stubborn-io", "subtle", "syn 1.0.109", @@ -3275,7 +3239,7 @@ dependencies = [ "test-strategy", "tester", "textplots", - "thiserror 2.0.11", + "thiserror 2.0.3", "thousands", "threadpool", "tikv-jemalloc-ctl", @@ -3284,7 +3248,7 @@ dependencies = [ "tokio", "tokio-io-timeout", "tokio-metrics", - "tokio-rustls 0.26.1", + "tokio-rustls 0.26.0", "tokio-serde", "tokio-socks", "tokio-stream", @@ -3293,7 +3257,7 @@ dependencies = [ "toml", "tonic", "tonic-build", - "tower 0.5.2", + "tower 0.5.1", "tower-http 0.6.2", "tower-request-id", "tower-test", @@ -3319,7 +3283,7 @@ dependencies = [ "wasmprinter 0.217.0", "wasmtime", "wasmtime-environ", - "wast 212.0.0", + "wast", "wat", "wee_alloc", "which", @@ -3327,9 +3291,9 @@ dependencies = [ "wycheproof", "x509-cert", "x509-parser", - "yansi 0.5.1", + "yansi", "zeroize", - "zstd", + "zstd 0.13.2", ] [[package]] @@ -3376,13 +3340,13 @@ dependencies = [ [[package]] name = "displaydoc" -version = "0.2.5" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" +checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -3415,9 +3379,9 @@ checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" [[package]] name = "dtoa-short" -version = "0.3.5" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" +checksum = "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74" dependencies = [ "dtoa", ] @@ -3433,9 +3397,9 @@ dependencies = [ [[package]] name = "dyn-clone" -version = "1.0.17" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" +checksum = "23d2f3407d9a573d666de4b5bdf10569d73ca9478087346697dcbae6244bfbcd" [[package]] name = "ecdsa" @@ -3472,7 +3436,7 @@ dependencies = [ "rand_core 0.6.4", "serde", "sha2 0.9.9", - "thiserror 1.0.69", + "thiserror 1.0.68", "zeroize", ] @@ -3495,9 +3459,9 @@ dependencies = [ [[package]] name = "educe" -version = "0.4.23" +version = "0.4.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f0042ff8246a363dbe77d2ceedb073339e85a804b9a47636c6e016a9a32c05f" +checksum = "079044df30bb07de7d846d41a184c4b00e66ebdac93ee459253474f3a47e50ae" dependencies = [ "enum-ordinalize", "proc-macro2", @@ -3507,15 +3471,15 @@ dependencies = [ [[package]] name = "ego-tree" -version = "0.6.3" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12a0bb14ac04a9fcf170d0bbbef949b44cc492f4452bd20c095636956f653642" +checksum = "3a68a4904193147e0a8dec3314640e6db742afd5f6e634f428a6af230d9b3591" [[package]] name = "either" -version = "1.13.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" +checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" [[package]] name = "elliptic-curve" @@ -3543,17 +3507,11 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" -[[package]] -name = "embedded-io" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" - [[package]] name = "ena" -version = "0.14.3" +version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5" +checksum = "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1" dependencies = [ "log", ] @@ -3564,17 +3522,11 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" -[[package]] -name = "encode_unicode" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" - [[package]] name = "encoding_rs" -version = "0.8.35" +version = "0.8.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" +checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" dependencies = [ "cfg-if 1.0.0", ] @@ -3593,27 +3545,27 @@ dependencies = [ [[package]] name = "enum-as-inner" -version = "0.6.1" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" +checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" dependencies = [ - "heck 0.5.0", + "heck 0.4.1", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "enum-ordinalize" -version = "3.1.15" +version = "3.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bf1fa3f06bbff1ea5b1a9c7b14aa992a39657db60a2759457328d7e058f49ee" +checksum = "e4f76552f53cefc9a7f64987c3701b99d982f7690606fd67de1d09712fbf52f1" dependencies = [ "num-bigint 0.4.6", "num-traits", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -3629,9 +3581,9 @@ dependencies = [ [[package]] name = "env_filter" -version = "0.1.3" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" +checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" dependencies = [ "log", ] @@ -3648,9 +3600,9 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.11.6" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0" +checksum = "6c012a26a7f605efc424dd53697843a72be7dc86ad2d01f7814337794a12231d" dependencies = [ "env_filter", "log", @@ -3673,7 +3625,7 @@ checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -3684,9 +3636,9 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "erased-serde" -version = "0.3.31" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c" +checksum = "da96524cc884f6558f1769b6c46686af2fe8e8b4cd253bd5a3cdba8181b8e070" dependencies = [ "serde", ] @@ -3704,12 +3656,12 @@ dependencies = [ [[package]] name = "errno" -version = "0.3.10" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" +checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" dependencies = [ "libc", - "windows-sys 0.59.0", + "windows-sys 0.52.0", ] [[package]] @@ -3724,9 +3676,9 @@ dependencies = [ [[package]] name = "escargot" -version = "0.5.13" +version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05a3ac187a16b5382fef8c69fd1bad123c67b7cf3932240a2d43dcdd32cded88" +checksum = "f5584ba17d7ab26a8a7284f13e5bd196294dd2f2d79773cff29b9e9edef601a6" dependencies = [ "log", "once_cell", @@ -3747,7 +3699,7 @@ dependencies = [ "serde", "serde_json", "sha3", - "thiserror 1.0.69", + "thiserror 1.0.68", "uint", ] @@ -3784,17 +3736,17 @@ dependencies = [ [[package]] name = "ethers-core" -version = "2.0.14" +version = "2.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82d80cc6ad30b14a48ab786523af33b37f28a8623fc06afd55324816ef18fb1f" +checksum = "60ca2514feb98918a0a31de7e1983c29f2267ebf61b2dc5d4294f91e5b866623" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.4", "bytes", "chrono", - "const-hex", "elliptic-curve", "ethabi", "generic-array", + "hex", "k256", "num_enum", "open-fastrlp", @@ -3802,18 +3754,18 @@ dependencies = [ "rlp", "serde", "serde_json", - "strum", + "strum 0.25.0", "tempfile", - "thiserror 1.0.69", + "thiserror 1.0.68", "tiny-keccak", "unicode-xid", ] [[package]] name = "ethnum" -version = "1.5.0" +version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c" +checksum = "0198b9d0078e0f30dedc7acbb21c974e838fc8fae3ee170128658a98cb2c1c04" dependencies = [ "serde", ] @@ -3826,9 +3778,20 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "event-listener" -version = "5.4.0" +version = "4.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" +dependencies = [ + "concurrent-queue", + "parking", + "pin-project-lite", +] + +[[package]] +name = "event-listener" +version = "5.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" +checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" dependencies = [ "concurrent-queue", "parking", @@ -3837,11 +3800,21 @@ dependencies = [ [[package]] name = "event-listener-strategy" -version = "0.5.3" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" +dependencies = [ + "event-listener 4.0.3", + "pin-project-lite", +] + +[[package]] +name = "event-listener-strategy" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2" +checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" dependencies = [ - "event-listener 5.4.0", + "event-listener 5.3.1", "pin-project-lite", ] @@ -3856,8 +3829,8 @@ dependencies = [ "ic-cdk 0.16.0", "num-bigint 0.4.6", "serde", - "strum", - "thiserror 1.0.69", + "strum 0.26.3", + "thiserror 1.0.68", "url", ] @@ -3879,9 +3852,9 @@ checksum = "de853764b47027c2e862a995c34978ffa63c1501f2e15f987ba11bd4f9bba193" [[package]] name = "eyre" -version = "0.6.12" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec" +checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb" dependencies = [ "indenter", "once_cell", @@ -3907,9 +3880,18 @@ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" [[package]] name = "fastrand" -version = "2.3.0" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" +dependencies = [ + "instant", +] + +[[package]] +name = "fastrand" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" +checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" [[package]] name = "ff" @@ -3933,20 +3915,20 @@ dependencies = [ [[package]] name = "fiat-crypto" -version = "0.2.9" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" +checksum = "1676f435fc1dadde4d03e43f5d62b259e1ce5f40bd4ffb21db2b42ebe59c1382" [[package]] name = "filetime" -version = "0.2.25" +version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" +checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153" dependencies = [ "cfg-if 1.0.0", "libc", - "libredox", - "windows-sys 0.59.0", + "redox_syscall 0.2.16", + "windows-sys 0.48.0", ] [[package]] @@ -3981,15 +3963,15 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flagset" -version = "0.4.6" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3ea1ec5f8307826a5b71094dd91fc04d4ae75d5709b20ad351c7fb4815c86ec" +checksum = "cda653ca797810c02f7ca4b804b40b8b95ae046eb989d356bce17919a8c25499" [[package]] name = "flate2" -version = "1.0.35" +version = "1.0.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c" +checksum = "7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920" dependencies = [ "crc32fast", "miniz_oxide", @@ -3997,9 +3979,9 @@ dependencies = [ [[package]] name = "float-cmp" -version = "0.10.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8" +checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" dependencies = [ "num-traits", ] @@ -4032,20 +4014,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9" dependencies = [ "nonempty", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] name = "fqdn" -version = "0.3.12" +version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb540cf7bc4fe6df9d8f7f0c974cfd0dce8ed4e9e8884e73433b503ee78b4e7d" +checksum = "08b1eaa7dfddeab6036292995620bf0435712e619db6d7690605897e76975eb0" [[package]] name = "fqdn" -version = "0.4.4" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f66e93156d144bd3a9a970033d04c6fbfb4b641275d8eaa3ff83f5b9c232496" +checksum = "5eeee501d87b436020fcd3065cc981b5e4d22f2066735268b36b9d513d23e553" [[package]] name = "fragile" @@ -4131,15 +4113,17 @@ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" [[package]] name = "futures-lite" -version = "2.6.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" +checksum = "9c1155db57329dca6d018b61e76b1488ce9a2e5e44028cac420a5898f4fcef63" dependencies = [ - "fastrand", + "fastrand 2.1.0", "futures-core", "futures-io", + "memchr", "parking", "pin-project-lite", + "waker-fn", ] [[package]] @@ -4150,7 +4134,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -4160,7 +4144,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8f2f12607f92c69b12ed746fabf9ca4f5c482cba46679c1a75b874ed7c26adb" dependencies = [ "futures-io", - "rustls 0.23.21", + "rustls 0.23.18", "rustls-pki-types", ] @@ -4178,9 +4162,9 @@ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" [[package]] name = "futures-timer" -version = "3.0.3" +version = "3.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" +checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" [[package]] name = "futures-util" @@ -4215,19 +4199,6 @@ version = "0.3.55" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" -[[package]] -name = "generator" -version = "0.8.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc6bd114ceda131d3b1d665eba35788690ad37f5916457286b32ab6fd3c438dd" -dependencies = [ - "cfg-if 1.0.0", - "libc", - "log", - "rustversion", - "windows", -] - [[package]] name = "generic-array" version = "0.14.7" @@ -4267,20 +4238,18 @@ version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" dependencies = [ - "unicode-width 0.1.14", + "unicode-width", ] [[package]] name = "getrandom" -version = "0.2.15" +version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" +checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" dependencies = [ "cfg-if 1.0.0", - "js-sys", "libc", "wasi", - "wasm-bindgen", ] [[package]] @@ -4294,6 +4263,12 @@ dependencies = [ "stable_deref_trait", ] +[[package]] +name = "gimli" +version = "0.27.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" + [[package]] name = "gimli" version = "0.31.1" @@ -4301,34 +4276,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" dependencies = [ "fallible-iterator 0.3.0", - "indexmap 2.7.0", + "indexmap 2.2.6", "stable_deref_trait", ] [[package]] name = "glob" -version = "0.3.2" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" +checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" [[package]] name = "governor" -version = "0.6.3" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b" +checksum = "821239e5672ff23e2a7060901fa622950bbd80b649cdaadd78d1c1767ed14eb4" dependencies = [ "cfg-if 1.0.0", - "dashmap 5.5.3", + "dashmap 5.5.0", "futures", "futures-timer", "no-std-compat", "nonzero_ext", - "parking_lot 0.12.3", - "portable-atomic", - "quanta", + "parking_lot 0.12.1", + "quanta 0.11.1", "rand 0.8.5", "smallvec", - "spinning_top", ] [[package]] @@ -4354,7 +4327,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.12", - "indexmap 2.7.0", + "indexmap 2.2.6", "slab", "tokio", "tokio-util", @@ -4363,17 +4336,17 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.7" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e" +checksum = "816ec7294445779408f36fe57bc5b7fc1cf59664059096c65f905c1c61f58069" dependencies = [ - "atomic-waker", "bytes", "fnv", "futures-core", "futures-sink", + "futures-util", "http 1.2.0", - "indexmap 2.7.0", + "indexmap 2.2.6", "slab", "tokio", "tokio-util", @@ -4382,19 +4355,9 @@ dependencies = [ [[package]] name = "half" -version = "1.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b43ede17f21864e81be2fa654110bf1e793774238d86ef8555c37e6519c0403" - -[[package]] -name = "half" -version = "2.4.1" +version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" -dependencies = [ - "cfg-if 1.0.0", - "crunchy", -] +checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" [[package]] name = "hashbrown" @@ -4428,18 +4391,18 @@ dependencies = [ [[package]] name = "hashlink" -version = "0.8.4" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" +checksum = "312f66718a2d7789ffef4f4b7b213138ed9f1eb3aa1d0d82fc99f88fb3ffd26f" dependencies = [ "hashbrown 0.14.5", ] [[package]] name = "hdrhistogram" -version = "7.5.4" +version = "7.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d" +checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8" dependencies = [ "byteorder", "num-traits", @@ -4447,11 +4410,12 @@ dependencies = [ [[package]] name = "headers" -version = "0.3.9" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" +checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" dependencies = [ - "base64 0.21.7", + "base64 0.13.1", + "bitflags 1.3.2", "bytes", "headers-core 0.2.0", "http 0.2.12", @@ -4466,7 +4430,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "322106e6bd0cba2d5ead589ddb8150a13d7c4217cf80d7c4f682ca994ccc6aa9" dependencies = [ - "base64 0.21.7", + "base64 0.21.6", "bytes", "headers-core 0.3.0", "http 1.2.0", @@ -4550,7 +4514,7 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5313b072ce3c597065a808dbf612c4c8e8590bdbf8b579508bf7a762c5eae6cd" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.4", ] [[package]] @@ -4573,41 +4537,41 @@ checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df" [[package]] name = "hickory-proto" -version = "0.24.2" +version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "447afdcdb8afb9d0a852af6dc65d9b285ce720ed7a59e42a8bf2e931c67bc1b5" +checksum = "07698b8420e2f0d6447a436ba999ec85d8fbf2a398bbd737b82cac4a2e96e512" dependencies = [ "async-trait", "bytes", "cfg-if 1.0.0", "data-encoding", - "enum-as-inner 0.6.1", + "enum-as-inner 0.6.0", "futures-channel", "futures-io", "futures-util", "h2 0.3.26", "http 0.2.12", - "idna 1.0.3", + "idna 0.4.0", "ipnet", "once_cell", "rand 0.8.5", "ring 0.16.20", "rustls 0.21.12", - "rustls-pemfile 1.0.4", - "thiserror 1.0.69", + "rustls-pemfile 1.0.3", + "thiserror 1.0.68", "tinyvec", "tokio", "tokio-rustls 0.24.1", "tracing", "url", - "webpki-roots 0.25.4", + "webpki-roots 0.25.2", ] [[package]] name = "hickory-resolver" -version = "0.24.2" +version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a2e2aba9c389ce5267d31cf1e4dace82390ae276b0b364ea55630b1fa1b44b4" +checksum = "28757f23aa75c98f254cf0405e6d8c25b831b32921b050a66692427679b1f243" dependencies = [ "cfg-if 1.0.0", "futures-util", @@ -4615,16 +4579,16 @@ dependencies = [ "ipconfig", "lru-cache", "once_cell", - "parking_lot 0.12.3", + "parking_lot 0.12.1", "rand 0.8.5", "resolv-conf", "rustls 0.21.12", "smallvec", - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", "tokio-rustls 0.24.1", "tracing", - "webpki-roots 0.25.4", + "webpki-roots 0.25.2", ] [[package]] @@ -4647,11 +4611,11 @@ dependencies = [ [[package]] name = "home" -version = "0.5.11" +version = "0.5.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" +checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.52.0", ] [[package]] @@ -4737,15 +4701,15 @@ dependencies = [ [[package]] name = "httparse" -version = "1.9.5" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" +checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" [[package]] name = "httpdate" -version = "1.0.3" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" +checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" [[package]] name = "humansize" @@ -4774,9 +4738,9 @@ dependencies = [ [[package]] name = "hyper" -version = "0.14.32" +version = "0.14.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" +checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" dependencies = [ "bytes", "futures-channel", @@ -4789,7 +4753,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", - "socket2 0.5.8", + "socket2 0.4.9", "tokio", "tower-service", "tracing", @@ -4798,14 +4762,14 @@ dependencies = [ [[package]] name = "hyper" -version = "1.5.2" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0" +checksum = "97818827ef4f364230e16705d4706e2897df2bb60617d6ca15d598025a3c481f" dependencies = [ "bytes", "futures-channel", "futures-util", - "h2 0.4.7", + "h2 0.4.4", "http 1.2.0", "http-body 1.0.1", "httparse", @@ -4827,13 +4791,13 @@ dependencies = [ "futures-util", "headers 0.4.0", "http 1.2.0", - "hyper 1.5.2", - "hyper-rustls 0.27.5", + "hyper 1.5.1", + "hyper-rustls 0.27.3", "hyper-util", "pin-project-lite", - "rustls-native-certs 0.7.3", + "rustls-native-certs 0.7.0", "tokio", - "tokio-rustls 0.26.1", + "tokio-rustls 0.26.0", "tower-service", ] @@ -4845,7 +4809,7 @@ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", "http 0.2.12", - "hyper 0.14.32", + "hyper 0.14.27", "log", "rustls 0.21.12", "rustls-native-certs 0.6.3", @@ -4855,22 +4819,22 @@ dependencies = [ [[package]] name = "hyper-rustls" -version = "0.27.5" +version = "0.27.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2" +checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" dependencies = [ "futures-util", "http 1.2.0", - "hyper 1.5.2", + "hyper 1.5.1", "hyper-util", "log", - "rustls 0.23.21", - "rustls-native-certs 0.8.1", + "rustls 0.23.18", + "rustls-native-certs 0.8.0", "rustls-pki-types", "tokio", - "tokio-rustls 0.26.1", + "tokio-rustls 0.26.0", "tower-service", - "webpki-roots 0.26.7", + "webpki-roots 0.26.1", ] [[package]] @@ -4881,20 +4845,20 @@ checksum = "51c227614c208f7e7c2e040526912604a1a957fe467c9c2f5b06c5d032337dab" dependencies = [ "async-socks5", "http 1.2.0", - "hyper 1.5.2", + "hyper 1.5.1", "hyper-util", - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", "tower-service", ] [[package]] name = "hyper-timeout" -version = "0.5.2" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" +checksum = "3203a961e5c83b6f5498933e78b6b263e208c197b63e9c6c53cc82ffd3f63793" dependencies = [ - "hyper 1.5.2", + "hyper 1.5.1", "hyper-util", "pin-project-lite", "tokio", @@ -4912,9 +4876,9 @@ dependencies = [ "futures-util", "http 1.2.0", "http-body 1.0.1", - "hyper 1.5.2", + "hyper 1.5.1", "pin-project-lite", - "socket2 0.5.8", + "socket2 0.5.7", "tokio", "tower-service", "tracing", @@ -4922,16 +4886,16 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.61" +version = "0.1.59" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" +checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539" dependencies = [ "android_system_properties", "core-foundation-sys", "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "windows-core 0.52.0", + "windows-core", ] [[package]] @@ -4971,12 +4935,12 @@ dependencies = [ "k256", "leb128", "p256", - "pem 3.0.4", + "pem 3.0.3", "pkcs8", "rand 0.8.5", "rangemap", - "reqwest 0.12.12", - "ring 0.17.8", + "reqwest 0.12.9", + "ring 0.17.7", "sec1", "serde", "serde_bytes", @@ -4985,7 +4949,7 @@ dependencies = [ "sha2 0.10.8", "simple_asn1", "stop-token", - "thiserror 2.0.11", + "thiserror 2.0.3", "time", "tokio", "tower-service", @@ -5006,11 +4970,11 @@ dependencies = [ "base64 0.22.1", "bytes", "chacha20poly1305", - "clap 4.5.26", - "clap_derive 4.5.24", + "clap 4.5.20", + "clap_derive 4.5.18", "cloudflare 0.12.0 (git+https://github.com/cloudflare/cloudflare-rs.git?rev=f14720e42184ee176a97676e85ef2d2d85bc3aae)", "derive-new", - "fqdn 0.4.4", + "fqdn 0.4.1", "futures", "futures-util", "hickory-proto", @@ -5019,18 +4983,18 @@ dependencies = [ "http-body 1.0.1", "http-body-util", "humantime", - "hyper 1.5.2", + "hyper 1.5.1", "hyper-util", "instant-acme", "moka", "parse-size", "prometheus", - "prost 0.13.4", - "prost-types 0.13.4", + "prost 0.13.3", + "prost-types 0.13.3", "rand 0.8.5", "rcgen", - "reqwest 0.12.12", - "rustls 0.23.21", + "reqwest 0.12.9", + "rustls 0.23.18", "rustls-acme", "rustls-pemfile 2.2.0", "rustls-platform-verifier", @@ -5038,15 +5002,15 @@ dependencies = [ "serde", "serde_json", "sha1", - "strum", - "strum_macros", + "strum 0.26.3", + "strum_macros 0.26.4", "systemstat", - "thiserror 2.0.11", + "thiserror 2.0.3", "tokio", "tokio-io-timeout", - "tokio-rustls 0.26.1", + "tokio-rustls 0.26.0", "tokio-util", - "tower 0.5.2", + "tower 0.5.1", "tower-service", "tracing", "url", @@ -5084,7 +5048,7 @@ source = "git+https://github.com/dfinity/ic-canister-sig-creation?rev=7f9e931954 dependencies = [ "candid", "hex", - "ic-cdk 0.17.1", + "ic-cdk 0.17.0", "ic-certification 3.0.2", "ic-representation-independent-hash", "lazy_static", @@ -5092,7 +5056,7 @@ dependencies = [ "serde_bytes", "serde_cbor", "sha2 0.10.8", - "thiserror 2.0.11", + "thiserror 2.0.3", ] [[package]] @@ -5105,7 +5069,7 @@ dependencies = [ "ic-certification 3.0.2", "leb128", "nom", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -5136,12 +5100,12 @@ dependencies = [ [[package]] name = "ic-cdk" -version = "0.17.1" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "122efbcb0af5280d408a75a57b7dc6e9d92893bf6ed9cc98fe4dcff51f18b67c" +checksum = "b2abdf9341da9f9f6b451a40609cb69645a05a8e9eb7784c16209f16f2c0f76f" dependencies = [ "candid", - "ic-cdk-macros 0.17.1", + "ic-cdk-macros 0.17.0", "ic0 0.23.0", "serde", "serde_bytes", @@ -5185,22 +5149,22 @@ dependencies = [ "proc-macro2", "quote", "serde", - "serde_tokenstream 0.2.2", - "syn 2.0.96", + "serde_tokenstream 0.2.1", + "syn 2.0.87", ] [[package]] name = "ic-cdk-macros" -version = "0.17.1" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c792bf0d1621c893ccf2bcdeac4ee70121103a03030a1827031a6b3c60488944" +checksum = "b8df41980e95dead28735ab0f748c75477b0c5eab37a09a5641c78ec406a1db0" dependencies = [ "candid", "proc-macro2", "quote", "serde", - "serde_tokenstream 0.2.2", - "syn 2.0.96", + "serde_tokenstream 0.2.1", + "syn 2.0.87", ] [[package]] @@ -5210,7 +5174,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb8fd812a9e26f6aa00594546f8fbf4d4853f39c3ba794c8ff11ecf86fd3c9e4" dependencies = [ "futures", - "ic-cdk 0.17.1", + "ic-cdk 0.17.0", "ic0 0.23.0", "serde", "serde_bytes", @@ -5231,9 +5195,9 @@ dependencies = [ "leb128", "miracl_core_bls12381", "nom", - "parking_lot 0.12.3", + "parking_lot 0.12.1", "sha2 0.10.8", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -5284,7 +5248,7 @@ dependencies = [ "ic-representation-independent-hash", "serde", "serde_cbor", - "thiserror 1.0.69", + "thiserror 1.0.68", "urlencoding", ] @@ -5304,7 +5268,7 @@ dependencies = [ "ic-http-certification", "ic-response-verification", "ic-utils", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -5343,7 +5307,7 @@ dependencies = [ "log", "nom", "sha2 0.10.8", - "thiserror 1.0.69", + "thiserror 1.0.68", "urlencoding", ] @@ -5358,9 +5322,9 @@ dependencies = [ [[package]] name = "ic-stable-structures" -version = "0.6.7" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b492c5a16455ae78623eaa12ead96dda6c69a83c535b1b00789f19b381c8a24c" +checksum = "03f3044466a69802de74e710dc0300b706a05696a0531c942ca856751a13b0db" dependencies = [ "ic_principal", ] @@ -5391,7 +5355,7 @@ dependencies = [ "serde_bytes", "serde_repr", "sha2 0.10.8", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -5409,14 +5373,14 @@ dependencies = [ "serde_cbor", "serde_repr", "sha2 0.10.8", - "thiserror 2.0.11", + "thiserror 2.0.3", ] [[package]] name = "ic-utils" -version = "0.39.2" +version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1fb9c35ef4976a71d37f3ebf73ee43bb52b360be60d91d3a77f74fbc875dda4" +checksum = "bb1da4a68c45146018b8496c157ad94126b9c202ab4400c6c0a9030c1ef0f0ba" dependencies = [ "async-trait", "candid", @@ -5427,9 +5391,9 @@ dependencies = [ "serde", "serde_bytes", "sha2 0.10.8", - "strum", - "strum_macros", - "thiserror 2.0.11", + "strum 0.26.3", + "strum_macros 0.26.4", + "thiserror 1.0.68", "time", "tokio", ] @@ -5463,18 +5427,18 @@ dependencies = [ [[package]] name = "ic-wasm" -version = "0.8.6" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19fabaeecfe37f24b433c62489242fc54503d98d4cc8d0f9ef7544dfdfc0ddcb" +checksum = "45bc33855672981ae4a2f4e77c1a77d1bdc0756fb1b36ad0dbe47df77a955e2d" dependencies = [ "anyhow", "candid", - "clap 4.5.26", + "clap 4.5.20", "libflate", "rustc-demangle", "serde", "serde_json", - "thiserror 1.0.69", + "thiserror 1.0.68", "walrus", ] @@ -5532,7 +5496,7 @@ dependencies = [ "data-encoding", "serde", "sha2 0.10.8", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -5544,7 +5508,7 @@ dependencies = [ "async-trait", "candid", "serde", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -5673,7 +5637,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -5699,6 +5663,26 @@ dependencies = [ "unicode-normalization", ] +[[package]] +name = "idna" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "idna" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + [[package]] name = "idna" version = "1.0.3" @@ -5731,9 +5715,9 @@ dependencies = [ [[package]] name = "impl-more" -version = "0.1.9" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" +checksum = "206ca75c9c03ba3d4ace2460e57b189f39f43de612c2f85836e65c929701bb2d" [[package]] name = "impl-rlp" @@ -5755,13 +5739,13 @@ dependencies = [ [[package]] name = "impl-trait-for-tuples" -version = "0.2.3" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" +checksum = "11d7a9f6330b71fea57921c9b61c47ee6e84f72d394754eff6163ae67e7395eb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 1.0.109", ] [[package]] @@ -5776,33 +5760,33 @@ version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", "hashbrown 0.12.3", "serde", ] [[package]] name = "indexmap" -version = "2.7.0" +version = "2.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f" +checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" dependencies = [ "equivalent", - "hashbrown 0.15.2", + "hashbrown 0.14.5", "serde", ] [[package]] name = "indicatif" -version = "0.17.9" +version = "0.17.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281" +checksum = "8ff8cc23a7393a397ed1d7f56e6365cba772aba9f9912ab968b03043c395d057" dependencies = [ - "console 0.15.10", + "console 0.15.7", + "instant", "number_prefix", "portable-atomic", - "unicode-width 0.2.0", - "web-time", + "unicode-width", ] [[package]] @@ -5813,12 +5797,12 @@ checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" [[package]] name = "inferno" -version = "0.11.21" +version = "0.11.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88" +checksum = "321f0f839cd44a4686e9504b0a62b4d69a50b62072144c71c68f5873c167b8d9" dependencies = [ "ahash 0.8.11", - "indexmap 2.7.0", + "indexmap 2.2.6", "is-terminal", "itoa", "log", @@ -5831,22 +5815,22 @@ dependencies = [ [[package]] name = "inferno" -version = "0.12.1" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "692eda1cc790750b9f5a5e3921ef9c117fd5498b97cfacbc910693e5b29002dc" +checksum = "75a5d75fee4d36809e6b021e4b96b686e763d365ffdb03af2bd00786353f84fe" dependencies = [ "ahash 0.8.11", - "clap 4.5.26", + "clap 4.5.20", "crossbeam-channel", "crossbeam-utils", "dashmap 6.1.0", - "env_logger 0.11.6", - "indexmap 2.7.0", + "env_logger 0.11.2", + "indexmap 2.2.6", "itoa", "log", "num-format", "once_cell", - "quick-xml 0.37.2", + "quick-xml 0.37.1", "rgb", "str_stack", ] @@ -5862,21 +5846,22 @@ dependencies = [ [[package]] name = "insta" -version = "1.42.0" +version = "1.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6513e4067e16e69ed1db5ab56048ed65db32d10ba5fc1217f5393f8f17d8b5a5" +checksum = "a0770b0a3d4c70567f0d58331f3088b0e4c4f56c9b8d764efe654b4a5d46de3a" dependencies = [ - "console 0.15.10", + "console 0.15.7", + "lazy_static", "linked-hash-map", - "once_cell", "similar", + "yaml-rust", ] [[package]] name = "instant" -version = "0.1.13" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" +checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" dependencies = [ "cfg-if 1.0.0", ] @@ -5893,14 +5878,14 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.2", - "hyper-rustls 0.27.5", + "hyper 1.5.1", + "hyper-rustls 0.27.3", "hyper-util", - "ring 0.17.8", + "ring 0.17.7", "rustls-pki-types", "serde", "serde_json", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -5918,7 +5903,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" dependencies = [ - "socket2 0.5.8", + "socket2 0.5.7", "widestring", "windows-sys 0.48.0", "winreg", @@ -5944,13 +5929,13 @@ dependencies = [ [[package]] name = "is-terminal" -version = "0.4.13" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" +checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" dependencies = [ - "hermit-abi 0.4.0", - "libc", - "windows-sys 0.52.0", + "hermit-abi 0.3.9", + "rustix", + "windows-sys 0.48.0", ] [[package]] @@ -5966,7 +5951,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ea1dc4bf0fb4904ba83ffdb98af3d9c325274e92e6e295e4151e86c96363e04" dependencies = [ "serde", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -5989,27 +5974,18 @@ dependencies = [ [[package]] name = "itertools" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" -dependencies = [ - "either", -] - -[[package]] -name = "itertools" -version = "0.13.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" dependencies = [ "either", ] [[package]] name = "itoa" -version = "1.0.14" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" +checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" [[package]] name = "jni" @@ -6021,7 +5997,7 @@ dependencies = [ "combine", "jni-sys", "log", - "thiserror 1.0.69", + "thiserror 1.0.68", "walkdir", ] @@ -6033,20 +6009,19 @@ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" [[package]] name = "jobserver" -version = "0.1.32" +version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" +checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" dependencies = [ "libc", ] [[package]] name = "js-sys" -version = "0.3.77" +version = "0.3.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" +checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" dependencies = [ - "once_cell", "wasm-bindgen", ] @@ -6084,7 +6059,7 @@ dependencies = [ "pest_derive", "regex", "serde_json", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -6137,9 +6112,9 @@ dependencies = [ [[package]] name = "keccak" -version = "0.1.5" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" +checksum = "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940" dependencies = [ "cpufeatures", ] @@ -6170,22 +6145,22 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.2", + "hyper 1.5.1", "hyper-http-proxy", - "hyper-rustls 0.27.5", + "hyper-rustls 0.27.3", "hyper-timeout", "hyper-util", "jsonpath-rust", "k8s-openapi", "kube-core", - "pem 3.0.4", - "rustls 0.23.21", + "pem 3.0.3", + "rustls 0.23.18", "rustls-pemfile 2.2.0", "secrecy", "serde", "serde_json", "serde_yaml 0.9.34+deprecated", - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", "tokio-util", "tower 0.4.13", @@ -6205,7 +6180,7 @@ dependencies = [ "k8s-openapi", "serde", "serde_json", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -6215,7 +6190,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0a1cbf952127589f2851ab2046af368fd20645491bb4b376f04b7f94d7a9837b" dependencies = [ "ascii-canvas", - "bit-set 0.5.3", + "bit-set", "diff", "ena", "is-terminal", @@ -6232,24 +6207,25 @@ dependencies = [ [[package]] name = "lalrpop" -version = "0.20.2" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55cb077ad656299f160924eb2912aa147d7339ea7d69e1b5517326fdcec3c1ca" +checksum = "da4081d44f4611b66c6dd725e6de3169f9f63905421e8626fcb86b6a898998b8" dependencies = [ "ascii-canvas", - "bit-set 0.5.3", + "bit-set", + "diff", "ena", - "itertools 0.11.0", - "lalrpop-util 0.20.2", + "is-terminal", + "itertools 0.10.5", + "lalrpop-util 0.20.0", "petgraph", "pico-args", "regex", - "regex-syntax 0.8.5", + "regex-syntax 0.7.4", "string_cache", "term 0.7.0", "tiny-keccak", "unicode-xid", - "walkdir", ] [[package]] @@ -6263,11 +6239,11 @@ dependencies = [ [[package]] name = "lalrpop-util" -version = "0.20.2" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553" +checksum = "3f35c735096c0293d313e8f2a641627472b83d01b937177fe76e5e2708d31e0d" dependencies = [ - "regex-automata 0.4.9", + "regex", ] [[package]] @@ -6278,11 +6254,11 @@ checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" [[package]] name = "lazy_static" -version = "1.5.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" dependencies = [ - "spin 0.9.8", + "spin 0.5.2", ] [[package]] @@ -6363,9 +6339,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.169" +version = "0.2.158" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" +checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" [[package]] name = "libflate" @@ -6393,29 +6369,30 @@ dependencies = [ [[package]] name = "libfuzzer-sys" -version = "0.4.8" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b9569d2f74e257076d8c6bfa73fb505b46b851e51ddaecc825944aa3bed17fa" +checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7" dependencies = [ "arbitrary", "cc", + "once_cell", ] [[package]] name = "libloading" -version = "0.8.6" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" +checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" dependencies = [ "cfg-if 1.0.0", - "windows-targets 0.52.6", + "winapi 0.3.9", ] [[package]] name = "libm" -version = "0.2.11" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa" +checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" [[package]] name = "libnss" @@ -6428,24 +6405,13 @@ dependencies = [ "paste", ] -[[package]] -name = "libredox" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" -dependencies = [ - "bitflags 2.8.0", - "libc", - "redox_syscall 0.5.8", -] - [[package]] name = "librocksdb-sys" version = "0.16.0+8.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ce3d60bc059831dc1c83903fb45c103f75db65c5a7bf22272764d9cc683e348c" dependencies = [ - "bindgen 0.69.5", + "bindgen 0.69.4", "bzip2-sys", "cc", "glob", @@ -6480,9 +6446,9 @@ dependencies = [ [[package]] name = "libusb1-sys" -version = "0.7.0" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da050ade7ac4ff1ba5379af847a10a10a8e284181e060105bf8d86960ce9ce0f" +checksum = "f9d0e2afce4245f2c9a418511e5af8718bcaf2fa408aefb259504d1a9cb25f27" dependencies = [ "cc", "libc", @@ -6492,9 +6458,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.21" +version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df9b68e50e6e0b26f672573834882eb57759f6db9b3be2ea3c35c91188bb4eaa" +checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db" dependencies = [ "cc", "libc", @@ -6510,15 +6476,15 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linux-raw-sys" -version = "0.4.15" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" +checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" [[package]] name = "litemap" -version = "0.7.4" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" +checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" [[package]] name = "little-loadshedder" @@ -6553,48 +6519,49 @@ dependencies = [ [[package]] name = "local-channel" -version = "0.1.5" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" +checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c" dependencies = [ "futures-core", "futures-sink", + "futures-util", "local-waker", ] [[package]] name = "local-ip-address" -version = "0.5.7" +version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "612ed4ea9ce5acfb5d26339302528a5e1e59dfed95e9e11af3c083236ff1d15d" +checksum = "66357e687a569abca487dc399a9c9ac19beb3f13991ed49f00c144e02cbd42ab" dependencies = [ "libc", "neli", - "thiserror 1.0.69", + "thiserror 1.0.68", "windows-sys 0.48.0", ] [[package]] name = "local-waker" -version = "0.1.4" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" +checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1" [[package]] name = "lock_api" -version = "0.4.12" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" +checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", "scopeguard", ] [[package]] name = "log" -version = "0.4.25" +version = "0.4.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f" +checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" [[package]] name = "logos" @@ -6625,7 +6592,7 @@ dependencies = [ "proc-macro2", "quote", "regex-syntax 0.6.29", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -6651,19 +6618,6 @@ dependencies = [ "logos-codegen", ] -[[package]] -name = "loom" -version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" -dependencies = [ - "cfg-if 1.0.0", - "generator", - "scoped-tls", - "tracing", - "tracing-subscriber", -] - [[package]] name = "lru" version = "0.7.8" @@ -6754,9 +6708,9 @@ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" [[package]] name = "matchit" -version = "0.7.3" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" +checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" [[package]] name = "maxminddb" @@ -6798,9 +6752,9 @@ dependencies = [ [[package]] name = "memmap2" -version = "0.9.5" +version = "0.5.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" +checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" dependencies = [ "libc", ] @@ -6811,16 +6765,16 @@ version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", ] [[package]] name = "memoffset" -version = "0.9.1" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" +checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", ] [[package]] @@ -6848,14 +6802,14 @@ source = "git+https://github.com/dfinity/metrics-proxy.git?rev=b6933ed79ac07baee dependencies = [ "axum", "axum-otel-metrics", - "clap 4.5.26", + "clap 4.5.20", "duration-string", "exitcode", "futures-util", "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.2", + "hyper 1.5.1", "hyper-rustls 0.24.2", "hyper-util", "itertools 0.11.0", @@ -6870,7 +6824,7 @@ dependencies = [ "regex", "reqwest 0.11.27", "rustls 0.21.12", - "rustls-pemfile 1.0.4", + "rustls-pemfile 1.0.3", "serde", "serde_yaml 0.8.26", "simple_logger", @@ -6889,9 +6843,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] name = "mime_guess" -version = "2.0.5" +version = "2.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" +checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" dependencies = [ "mime", "unicase", @@ -6925,18 +6879,18 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.8.3" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924" +checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" dependencies = [ - "adler2", + "adler", ] [[package]] name = "mio" -version = "0.8.11" +version = "0.8.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" +checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" dependencies = [ "libc", "log", @@ -6946,12 +6900,12 @@ dependencies = [ [[package]] name = "mio" -version = "1.0.3" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" +checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" dependencies = [ + "hermit-abi 0.3.9", "libc", - "log", "wasi", "windows-sys 0.52.0", ] @@ -6964,9 +6918,9 @@ checksum = "d07cbe42e2a8dd41df582fb8e00fc24d920b5561cc301fcb6d14e2e0434b500f" [[package]] name = "mockall" -version = "0.13.1" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2" +checksum = "d4c28b3fb6d753d28c20e826cd46ee611fda1cf3cde03a443a974043247c065a" dependencies = [ "cfg-if 1.0.0", "downcast", @@ -6978,31 +6932,26 @@ dependencies = [ [[package]] name = "mockall_derive" -version = "0.13.1" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898" +checksum = "341014e7f530314e9a1fdbc7400b244efea7122662c96bfa248c31da5bfb2020" dependencies = [ "cfg-if 1.0.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "mockito" -version = "1.6.1" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "652cd6d169a36eaf9d1e6bce1a221130439a966d7f27858af66a33a66e9c4ee2" +checksum = "f8d3038e23466858569c2d30a537f691fa0d53b51626630ae08262943e3bbb8b" dependencies = [ "assert-json-diff", - "bytes", "colored", - "futures-util", - "http 1.2.0", - "http-body 1.0.1", - "http-body-util", - "hyper 1.5.2", - "hyper-util", + "futures", + "hyper 0.14.27", "log", "rand 0.8.5", "regex", @@ -7014,23 +6963,25 @@ dependencies = [ [[package]] name = "moka" -version = "0.12.10" +version = "0.12.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" +checksum = "32cf62eb4dd975d2dde76432fb1075c49e3ee2331cf36f1f8fd4b66550d32b6f" dependencies = [ "async-lock", + "async-trait", "crossbeam-channel", "crossbeam-epoch", "crossbeam-utils", - "event-listener 5.4.0", + "event-listener 5.3.1", "futures-util", - "loom", - "parking_lot 0.12.3", - "portable-atomic", + "once_cell", + "parking_lot 0.12.1", + "quanta 0.12.3", "rustc_version", "smallvec", "tagptr", - "thiserror 1.0.69", + "thiserror 1.0.68", + "triomphe", "uuid", ] @@ -7077,15 +7028,15 @@ dependencies = [ [[package]] name = "multimap" -version = "0.10.0" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" +checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" [[package]] name = "neli" -version = "0.6.5" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93062a0dce6da2517ea35f301dfc88184ce18d3601ec786a727a87bf535deca9" +checksum = "1100229e06604150b3becd61a4965d5c70f3be1759544ea7274166f4be41ef43" dependencies = [ "byteorder", "libc", @@ -7095,9 +7046,9 @@ dependencies = [ [[package]] name = "neli-proc-macros" -version = "0.1.4" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c8034b7fbb6f9455b2a96c19e6edf8dc9fc34c70449938d8ee3b4df363f61fe" +checksum = "c168194d373b1e134786274020dae7fc5513d565ea2ebb9bc9ff17ffb69106d4" dependencies = [ "either", "proc-macro2", @@ -7108,9 +7059,9 @@ dependencies = [ [[package]] name = "new_debug_unreachable" -version = "1.0.6" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" +checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" [[package]] name = "nftables" @@ -7121,9 +7072,9 @@ dependencies = [ "serde", "serde_json", "serde_path_to_error", - "strum", - "strum_macros", - "thiserror 1.0.69", + "strum 0.26.3", + "strum_macros 0.26.4", + "thiserror 1.0.68", ] [[package]] @@ -7155,10 +7106,10 @@ version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "cfg-if 1.0.0", "libc", - "memoffset 0.9.1", + "memoffset 0.9.0", ] [[package]] @@ -7167,7 +7118,7 @@ version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "cfg-if 1.0.0", "cfg_aliases", "libc", @@ -7223,7 +7174,7 @@ version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", "num-integer", "num-traits", ] @@ -7269,7 +7220,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.4", "itoa", ] @@ -7288,7 +7239,7 @@ version = "0.1.45" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", "num-integer", "num-traits", ] @@ -7299,7 +7250,7 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", "num-bigint 0.2.6", "num-integer", "num-traits", @@ -7311,7 +7262,7 @@ version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", "libm", ] @@ -7327,30 +7278,30 @@ dependencies = [ [[package]] name = "num_enum" -version = "0.7.3" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" +checksum = "7a015b430d3c108a207fd776d2e2196aaf8b1cf8cf93253e3a097ff3085076a1" dependencies = [ "num_enum_derive", ] [[package]] name = "num_enum_derive" -version = "0.7.3" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" +checksum = "96667db765a921f7b295ffee8b60472b686a51d4f21c2ee4ffdb94c7013b65a6" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "num_threads" -version = "0.1.7" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" +checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" dependencies = [ "libc", ] @@ -7361,6 +7312,15 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" +[[package]] +name = "object" +version = "0.31.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" +dependencies = [ + "memchr", +] + [[package]] name = "object" version = "0.36.7" @@ -7369,36 +7329,36 @@ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" dependencies = [ "crc32fast", "hashbrown 0.15.2", - "indexmap 2.7.0", + "indexmap 2.2.6", "memchr", ] [[package]] name = "oid-registry" -version = "0.7.1" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9" +checksum = "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d" dependencies = [ "asn1-rs", ] [[package]] name = "once_cell" -version = "1.20.2" +version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" +checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "oorandom" -version = "11.1.4" +version = "11.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9" +checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" [[package]] name = "opaque-debug" -version = "0.3.1" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" +checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" [[package]] name = "open-fastrlp" @@ -7406,7 +7366,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "786393f80485445794f6043fd3138854dd109cc6c4bd1a6383db304c9ce9b9ce" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.4", "auto_impl", "bytes", "ethereum-types", @@ -7435,7 +7395,7 @@ dependencies = [ "byteorder", "md-5", "sha2 0.9.9", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -7446,9 +7406,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.104" +version = "0.9.102" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" +checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" dependencies = [ "cc", "libc", @@ -7484,26 +7444,26 @@ checksum = "1e32339a5dc40459130b3bd269e9892439f55b33e772d2a9d402a789baaf4e8a" dependencies = [ "futures-core", "futures-sink", - "indexmap 2.7.0", + "indexmap 2.2.6", "js-sys", "once_cell", "pin-project-lite", - "thiserror 1.0.69", + "thiserror 1.0.68", "urlencoding", ] [[package]] name = "opentelemetry" -version = "0.27.1" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab70038c28ed37b97d8ed414b6429d343a8bbf44c9f79ec854f3a643029ba6d7" +checksum = "0f3cebff57f7dbd1255b44d8bddc2cebeb0ea677dbaa2e25a3070a91b318f660" dependencies = [ "futures-core", "futures-sink", "js-sys", + "once_cell", "pin-project-lite", - "thiserror 1.0.69", - "tracing", + "thiserror 1.0.68", ] [[package]] @@ -7515,11 +7475,11 @@ dependencies = [ "async-trait", "futures-core", "http 1.2.0", - "opentelemetry 0.27.1", + "opentelemetry 0.27.0", "opentelemetry-proto", "opentelemetry_sdk 0.27.1", - "prost 0.13.4", - "thiserror 1.0.69", + "prost 0.13.3", + "thiserror 1.0.68", "tokio", "tonic", "tracing", @@ -7557,9 +7517,9 @@ version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6e05acbfada5ec79023c85368af14abd0b307c015e9064d249b2a950ef459a6" dependencies = [ - "opentelemetry 0.27.1", + "opentelemetry 0.27.0", "opentelemetry_sdk 0.27.1", - "prost 0.13.4", + "prost 0.13.3", "tonic", ] @@ -7584,7 +7544,7 @@ dependencies = [ "js-sys", "once_cell", "pin-project-lite", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -7599,7 +7559,7 @@ dependencies = [ "js-sys", "once_cell", "pin-project-lite", - "thiserror 1.0.69", + "thiserror 1.0.68", "urlencoding", ] @@ -7618,7 +7578,7 @@ dependencies = [ "opentelemetry_api 0.18.0", "percent-encoding", "rand 0.8.5", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -7638,7 +7598,7 @@ dependencies = [ "percent-encoding", "rand 0.8.5", "regex", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -7655,10 +7615,10 @@ dependencies = [ "glob", "once_cell", "opentelemetry 0.21.0", - "ordered-float 4.6.0", + "ordered-float 4.2.0", "percent-encoding", "rand 0.8.5", - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", "tokio-stream", ] @@ -7674,11 +7634,11 @@ dependencies = [ "futures-executor", "futures-util", "glob", - "opentelemetry 0.27.1", + "opentelemetry 0.27.0", "percent-encoding", "rand 0.8.5", "serde_json", - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", "tokio-stream", "tracing", @@ -7686,9 +7646,9 @@ dependencies = [ [[package]] name = "ordered-float" -version = "2.10.1" +version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" +checksum = "7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87" dependencies = [ "num-traits", ] @@ -7704,18 +7664,18 @@ dependencies = [ [[package]] name = "ordered-float" -version = "4.6.0" +version = "4.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951" +checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e" dependencies = [ "num-traits", ] [[package]] name = "os_str_bytes" -version = "6.6.1" +version = "6.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1" +checksum = "4d5d9eb14b174ee9aa2ef96dc2b94637a2d4b6e7cb873c7e171f0c20c6cf3eac" [[package]] name = "overload" @@ -7746,11 +7706,11 @@ dependencies = [ [[package]] name = "parity-scale-codec" -version = "3.6.12" +version = "3.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee" +checksum = "756d439303e94fae44f288ba881ad29670c65b0c4b0e05674ca81061bb65f2c5" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.4", "bitvec", "byte-slice-cast", "impl-trait-for-tuples", @@ -7760,11 +7720,11 @@ dependencies = [ [[package]] name = "parity-scale-codec-derive" -version = "3.6.12" +version = "3.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d830939c76d294956402033aee57a6da7b438f2294eb94864c37b0569053a42c" +checksum = "9d884d78fcf214d70b1e239fcd1c6e5e95aa3be1881918da2e488cc946c7a476" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", "syn 1.0.109", @@ -7772,9 +7732,9 @@ dependencies = [ [[package]] name = "parking" -version = "2.2.1" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" +checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" [[package]] name = "parking_lot" @@ -7789,12 +7749,12 @@ dependencies = [ [[package]] name = "parking_lot" -version = "0.12.3" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" +checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" dependencies = [ "lock_api", - "parking_lot_core 0.9.10", + "parking_lot_core 0.9.8", ] [[package]] @@ -7813,15 +7773,15 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.10" +version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" +checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" dependencies = [ "cfg-if 1.0.0", "libc", - "redox_syscall 0.5.8", + "redox_syscall 0.3.5", "smallvec", - "windows-targets 0.52.6", + "windows-targets 0.48.1", ] [[package]] @@ -7848,9 +7808,9 @@ dependencies = [ [[package]] name = "pcre2" -version = "0.2.9" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3be55c43ac18044541d58d897e8f4c55157218428953ebd39d86df3ba0286b2b" +checksum = "4c9d53a8ea5fc3d3568d3de4bebc12606fd0eb8234c602576f1f1ee4880488a7" dependencies = [ "libc", "log", @@ -7859,9 +7819,9 @@ dependencies = [ [[package]] name = "pcre2-sys" -version = "0.2.9" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "550f5d18fb1b90c20b87e161852c10cde77858c3900c5059b5ad2a1449f11d8a" +checksum = "25b8a7b5253a4465b873a21ee7e8d6ec561a57eed5d319621bec36bea35c86ae" dependencies = [ "cc", "libc", @@ -7885,11 +7845,11 @@ dependencies = [ [[package]] name = "pem" -version = "3.0.4" +version = "3.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae" +checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310" dependencies = [ - "base64 0.22.1", + "base64 0.21.6", "serde", ] @@ -7910,20 +7870,19 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "pest" -version = "2.7.15" +version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc" +checksum = "0d2d1d55045829d65aad9d389139882ad623b33b904e7c9f1b10c5b8927298e5" dependencies = [ - "memchr", - "thiserror 2.0.11", + "thiserror 1.0.68", "ucd-trie", ] [[package]] name = "pest_derive" -version = "2.7.15" +version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e" +checksum = "5f94bca7e7a599d89dea5dfa309e217e7906c3c007fb9c3299c40b10d6a315d3" dependencies = [ "pest", "pest_generator", @@ -7931,22 +7890,22 @@ dependencies = [ [[package]] name = "pest_generator" -version = "2.7.15" +version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b" +checksum = "99d490fe7e8556575ff6911e45567ab95e71617f43781e5c05490dc8d75c965c" dependencies = [ "pest", "pest_meta", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "pest_meta" -version = "2.7.15" +version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea" +checksum = "2674c66ebb4b4d9036012091b537aae5878970d6999f81a265034d85b136b341" dependencies = [ "once_cell", "pest", @@ -7955,9 +7914,9 @@ dependencies = [ [[package]] name = "pest_vm" -version = "2.7.15" +version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8151168a80801131f6e0e79d6c84fa337ccd2493c99e59de027354c3e6fca0b" +checksum = "3c590ba0f5dbc3b72b0b22fe5a11a69a43ff984cce83928dfaa615eb87594d6a" dependencies = [ "pest", "pest_meta", @@ -7965,12 +7924,12 @@ dependencies = [ [[package]] name = "petgraph" -version = "0.6.5" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" +checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4" dependencies = [ "fixedbitset", - "indexmap 2.7.0", + "indexmap 1.9.3", ] [[package]] @@ -7984,12 +7943,12 @@ dependencies = [ [[package]] name = "phf" -version = "0.11.3" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" +checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" dependencies = [ "phf_macros", - "phf_shared 0.11.3", + "phf_shared 0.11.2", ] [[package]] @@ -8014,25 +7973,25 @@ dependencies = [ [[package]] name = "phf_generator" -version = "0.11.3" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" +checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" dependencies = [ - "phf_shared 0.11.3", + "phf_shared 0.11.2", "rand 0.8.5", ] [[package]] name = "phf_macros" -version = "0.11.3" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" +checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" dependencies = [ - "phf_generator 0.11.3", - "phf_shared 0.11.3", + "phf_generator 0.11.2", + "phf_shared 0.11.2", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -8041,16 +8000,16 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" dependencies = [ - "siphasher 0.3.11", + "siphasher", ] [[package]] name = "phf_shared" -version = "0.11.3" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" +checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" dependencies = [ - "siphasher 1.0.1", + "siphasher", ] [[package]] @@ -8061,29 +8020,29 @@ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" [[package]] name = "pin-project" -version = "1.1.8" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916" +checksum = "030ad2bc4db10a8944cb0d837f158bdfec4d4a4873ab701a95046770d11f8842" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.8" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb" +checksum = "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "pin-project-lite" -version = "0.2.16" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" +checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" [[package]] name = "pin-utils" @@ -8093,13 +8052,13 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "ping" -version = "0.5.2" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "122ee1f5a6843bec84fcbd5c6ba3622115337a6b8965b93a61aad347648f4e8d" +checksum = "985c8af0584bf35ecfb95a65b74a457782966e1ab8f2c94c01697a36432a5814" dependencies = [ "rand 0.8.5", - "socket2 0.4.10", - "thiserror 1.0.69", + "socket2 0.4.9", + "thiserror 1.0.68", ] [[package]] @@ -8109,7 +8068,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" dependencies = [ "atomic-waker", - "fastrand", + "fastrand 2.1.0", "futures-io", ] @@ -8136,15 +8095,15 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.31" +version = "0.3.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" +checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" [[package]] name = "plotters" -version = "0.3.7" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747" +checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" dependencies = [ "num-traits", "plotters-backend", @@ -8155,15 +8114,15 @@ dependencies = [ [[package]] name = "plotters-backend" -version = "0.3.7" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a" +checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" [[package]] name = "plotters-svg" -version = "0.3.7" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670" +checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" dependencies = [ "plotters-backend", ] @@ -8179,7 +8138,7 @@ dependencies = [ "hex", "ic-certification 2.6.0", "ic-transport-types 0.37.1", - "reqwest 0.12.12", + "reqwest 0.12.9", "schemars", "serde", "serde_bytes", @@ -8187,9 +8146,9 @@ dependencies = [ "serde_json", "sha2 0.10.8", "slog", - "strum", - "strum_macros", - "thiserror 1.0.69", + "strum 0.26.3", + "strum_macros 0.26.4", + "thiserror 1.0.68", "tokio", "tracing", "tracing-appender", @@ -8199,9 +8158,9 @@ dependencies = [ [[package]] name = "polling" -version = "3.7.4" +version = "3.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f" +checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" dependencies = [ "cfg-if 1.0.0", "concurrent-queue", @@ -8225,19 +8184,18 @@ dependencies = [ [[package]] name = "portable-atomic" -version = "1.10.0" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6" +checksum = "edc55135a600d700580e406b4de0d59cb9ad25e344a3a091a97ded2622ec4ec6" [[package]] name = "postcard" -version = "1.1.1" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "170a2601f67cc9dba8edd8c4870b15f71a6a2dc196daec8c83f72b59dff628a8" +checksum = "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8" dependencies = [ "cobs", - "embedded-io 0.4.0", - "embedded-io 0.6.1", + "embedded-io", "serde", ] @@ -8258,30 +8216,27 @@ dependencies = [ "cfg-if 1.0.0", "criterion", "findshlibs", - "inferno 0.11.21", + "inferno 0.11.19", "libc", "log", "nix 0.26.4", "once_cell", - "parking_lot 0.12.3", - "prost 0.12.6", - "prost-build 0.12.6", - "prost-derive 0.12.6", + "parking_lot 0.12.1", + "prost 0.12.2", + "prost-build 0.12.2", + "prost-derive 0.12.2", "sha2 0.10.8", "smallvec", "symbolic-demangle", "tempfile", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] name = "ppv-lite86" -version = "0.2.20" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" -dependencies = [ - "zerocopy", -] +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" [[package]] name = "precomputed-hash" @@ -8291,9 +8246,9 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" [[package]] name = "predicates" -version = "3.1.3" +version = "3.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573" +checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97" dependencies = [ "anstyle", "difflib", @@ -8305,15 +8260,15 @@ dependencies = [ [[package]] name = "predicates-core" -version = "1.0.9" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" +checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" [[package]] name = "predicates-tree" -version = "1.0.12" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" +checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" dependencies = [ "predicates-core", "termtree", @@ -8333,13 +8288,13 @@ dependencies = [ [[package]] name = "pretty" -version = "0.12.3" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b55c4d17d994b637e2f4daf6e5dc5d660d209d5642377d675d7a1c3ab69fa579" +checksum = "563c9d701c3a31dfffaaf9ce23507ba09cbe0b9125ba176d15e629b0235e9acc" dependencies = [ "arrayvec 0.5.2", "typed-arena", - "unicode-width 0.1.14", + "unicode-segmentation", ] [[package]] @@ -8354,38 +8309,38 @@ dependencies = [ [[package]] name = "pretty_assertions" -version = "1.4.1" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" +checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" dependencies = [ "diff", - "yansi 1.0.1", + "yansi", ] [[package]] name = "prettyplease" -version = "0.2.29" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac" +checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" dependencies = [ "proc-macro2", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "primeorder" -version = "0.13.6" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" +checksum = "3c2fcef82c0ec6eefcc179b978446c399b3cdf73c392c35604e399eee6df1ee3" dependencies = [ "elliptic-curve", ] [[package]] name = "primitive-types" -version = "0.12.2" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2" +checksum = "9f3486ccba82358b11a77516035647c34ba167dfa53312630de83b12bd4f3d66" dependencies = [ "fixed-hash", "impl-codec", @@ -8397,22 +8352,32 @@ dependencies = [ [[package]] name = "priority-queue" -version = "1.4.0" +version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0bda9164fe05bc9225752d54aae413343c36f684380005398a6a8fde95fe785" +checksum = "fff39edfcaec0d64e8d0da38564fad195d2d51b680940295fcc307366e101e61" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", "indexmap 1.9.3", "serde", ] +[[package]] +name = "proc-macro-crate" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" +dependencies = [ + "once_cell", + "toml_edit 0.19.14", +] + [[package]] name = "proc-macro-crate" version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" dependencies = [ - "toml_edit", + "toml_edit 0.22.20", ] [[package]] @@ -8447,9 +8412,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "1.0.93" +version = "1.0.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" +checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" dependencies = [ "unicode-ident", ] @@ -8474,7 +8439,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "hex", "lazy_static", "procfs-core", @@ -8487,7 +8452,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "hex", ] @@ -8502,33 +8467,33 @@ dependencies = [ "lazy_static", "libc", "memchr", - "parking_lot 0.12.3", + "parking_lot 0.12.1", "procfs 0.16.0", "protobuf", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] name = "prometheus-parse" -version = "0.2.5" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "811031bea65e5a401fb2e1f37d802cca6601e204ac463809a3189352d13b78a5" +checksum = "0c2aa5feb83bf4b2c8919eaf563f51dbab41183de73ba2353c0e03cd7b6bd892" dependencies = [ "chrono", - "itertools 0.12.1", + "itertools 0.10.5", "once_cell", "regex", ] [[package]] name = "proptest" -version = "1.6.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" +checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" dependencies = [ - "bit-set 0.8.0", - "bit-vec 0.8.0", - "bitflags 2.8.0", + "bit-set", + "bit-vec", + "bitflags 2.6.0", "lazy_static", "num-traits", "rand 0.8.5", @@ -8542,118 +8507,120 @@ dependencies = [ [[package]] name = "proptest-derive" -version = "0.5.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ee1c9ac207483d5e7db4940700de86a9aae46ef90c48b57f99fe7edb8345e49" +checksum = "6ff7ff745a347b87471d859a377a9a404361e7efc2a971d73424a6d183c0fc77" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "prost" -version = "0.12.6" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29" +checksum = "5a5a410fc7882af66deb8d01d01737353cf3ad6204c408177ba494291a626312" dependencies = [ "bytes", - "prost-derive 0.12.6", + "prost-derive 0.12.2", ] [[package]] name = "prost" -version = "0.13.4" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c0fef6c4230e4ccf618a35c59d7ede15dea37de8427500f50aff708806e42ec" +checksum = "7b0487d90e047de87f984913713b85c601c05609aad5b0df4b4573fbf69aa13f" dependencies = [ "bytes", - "prost-derive 0.13.4", + "prost-derive 0.13.3", ] [[package]] name = "prost-build" -version = "0.12.6" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4" +checksum = "1fa3d084c8704911bfefb2771be2f9b6c5c0da7343a71e0021ee3c665cada738" dependencies = [ "bytes", - "heck 0.5.0", - "itertools 0.12.1", + "heck 0.4.1", + "itertools 0.11.0", "log", "multimap", "once_cell", "petgraph", "prettyplease", - "prost 0.12.6", - "prost-types 0.12.6", + "prost 0.12.2", + "prost-types 0.12.2", "regex", - "syn 2.0.96", + "syn 2.0.87", "tempfile", + "which", ] [[package]] name = "prost-build" -version = "0.13.4" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0f3e5beed80eb580c68e2c600937ac2c4eedabdfd5ef1e5b7ea4f3fba84497b" +checksum = "0c1318b19085f08681016926435853bbf7858f9c082d0999b80550ff5d9abe15" dependencies = [ + "bytes", "heck 0.5.0", - "itertools 0.13.0", + "itertools 0.12.0", "log", "multimap", "once_cell", "petgraph", "prettyplease", - "prost 0.13.4", - "prost-types 0.13.4", + "prost 0.13.3", + "prost-types 0.13.3", "regex", - "syn 2.0.96", + "syn 2.0.87", "tempfile", ] [[package]] name = "prost-derive" -version = "0.12.6" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" +checksum = "065717a5dfaca4a83d2fe57db3487b311365200000551d7a364e715dbf4346bc" dependencies = [ "anyhow", - "itertools 0.12.1", + "itertools 0.11.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "prost-derive" -version = "0.13.4" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3" +checksum = "e9552f850d5f0964a4e4d0bf306459ac29323ddfbae05e35a7c0d35cb0803cc5" dependencies = [ "anyhow", - "itertools 0.13.0", + "itertools 0.12.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "prost-types" -version = "0.12.6" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0" +checksum = "8339f32236f590281e2f6368276441394fcd1b2133b549cc895d0ae80f2f9a52" dependencies = [ - "prost 0.12.6", + "prost 0.12.2", ] [[package]] name = "prost-types" -version = "0.13.4" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc2f1e56baa61e93533aebc21af4d2134b70f66275e0fcdf3cbe43d77ff7e8fc" +checksum = "4759aa0d3a6232fb8dbdb97b61de2c20047c68aca932c7ed76da9d788508d670" dependencies = [ - "prost 0.13.4", + "prost 0.13.3", ] [[package]] @@ -8670,9 +8637,9 @@ checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" [[package]] name = "psm" -version = "0.1.24" +version = "0.1.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "200b9ff220857e53e184257720a14553b2f4aa02577d2ed9842d45d4b9654810" +checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" dependencies = [ "cc", ] @@ -8699,19 +8666,19 @@ dependencies = [ [[package]] name = "publicsuffix" -version = "2.3.0" +version = "2.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf" +checksum = "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457" dependencies = [ - "idna 1.0.3", + "idna 0.3.0", "psl-types", ] [[package]] name = "pulley-interpreter" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8324e531de91a3c25021a30fb7862d39cc516b61fbb801176acb5ff279ea887b" +checksum = "403a1a95f4c18a45c86c7bff13df00347afd0abcbf2e54af273c837339ffcf77" dependencies = [ "cranelift-bitset", "log", @@ -8720,14 +8687,30 @@ dependencies = [ [[package]] name = "quanta" -version = "0.12.5" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e" +checksum = "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab" dependencies = [ "crossbeam-utils", "libc", + "mach2", "once_cell", - "raw-cpuid", + "raw-cpuid 10.7.0", + "wasi", + "web-sys", + "winapi 0.3.9", +] + +[[package]] +name = "quanta" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5" +dependencies = [ + "crossbeam-utils", + "libc", + "once_cell", + "raw-cpuid 11.1.0", "wasi", "web-sys", "winapi 0.3.9", @@ -8750,9 +8733,9 @@ dependencies = [ [[package]] name = "quick-xml" -version = "0.37.2" +version = "0.37.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "165859e9e55f79d67b96c5d96f4e88b6f2695a1972849c15a6a3f5c59fc2c003" +checksum = "f22f29bdff3987b4d8632ef95fd6424ec7e4e0a57e2f4fc63e489e75357f6a03" dependencies = [ "memchr", ] @@ -8770,61 +8753,57 @@ dependencies = [ [[package]] name = "quinn" -version = "0.11.6" +version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef" +checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684" dependencies = [ "bytes", "pin-project-lite", "quinn-proto", "quinn-udp", - "rustc-hash 2.1.0", - "rustls 0.23.21", - "socket2 0.5.8", - "thiserror 2.0.11", + "rustc-hash 2.0.0", + "rustls 0.23.18", + "socket2 0.5.7", + "thiserror 1.0.68", "tokio", "tracing", ] [[package]] name = "quinn-proto" -version = "0.11.9" +version = "0.11.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d" +checksum = "ea0a9b3a42929fad8a7c3de7f86ce0814cfa893328157672680e9fb1145549c5" dependencies = [ "bytes", - "getrandom", "rand 0.8.5", - "ring 0.17.8", - "rustc-hash 2.1.0", - "rustls 0.23.21", - "rustls-pki-types", + "ring 0.17.7", + "rustc-hash 2.0.0", + "rustls 0.23.18", "slab", - "thiserror 2.0.11", + "thiserror 1.0.68", "tinyvec", "tracing", - "web-time", ] [[package]] name = "quinn-udp" -version = "0.5.9" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904" +checksum = "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b" dependencies = [ - "cfg_aliases", "libc", "once_cell", - "socket2 0.5.8", + "socket2 0.5.7", "tracing", "windows-sys 0.59.0", ] [[package]] name = "quote" -version = "1.0.38" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" +checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" dependencies = [ "proc-macro2", ] @@ -9001,9 +8980,9 @@ dependencies = [ [[package]] name = "rangemap" -version = "1.5.1" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f60fcc7d6849342eff22c4350c8b9a989ee8ceabc4b481253e8946b9fe83d684" +checksum = "977b1e897f9d764566891689e642653e5ed90c6895106acd005eb4c1d0203991" [[package]] name = "ratelimit" @@ -9012,17 +8991,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c1bb13e2dcfa2232ac6887157aad8d9b3fe4ca57f7c8d4938ff5ea9be742300" dependencies = [ "clocksource", - "parking_lot 0.12.3", - "thiserror 1.0.69", + "parking_lot 0.12.1", + "thiserror 1.0.68", +] + +[[package]] +name = "raw-cpuid" +version = "10.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" +dependencies = [ + "bitflags 1.3.2", ] [[package]] name = "raw-cpuid" -version = "11.3.0" +version = "11.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6928fa44c097620b706542d428957635951bade7143269085389d42c8a4927e" +checksum = "cb9ee317cfe3fbd54b36a511efc1edd42e216903c9cd575e686dd68a2ba90d8d" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", ] [[package]] @@ -9047,12 +9035,12 @@ dependencies = [ [[package]] name = "rcgen" -version = "0.13.2" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" +checksum = "54077e1872c46788540de1ea3d7f4ccb1983d12f9aa909b234468676c1a36779" dependencies = [ - "pem 3.0.4", - "ring 0.17.8", + "pem 3.0.3", + "ring 0.17.7", "rustls-pki-types", "time", "yasna", @@ -9079,22 +9067,22 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.5.8" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" +checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" dependencies = [ - "bitflags 2.8.0", + "bitflags 1.3.2", ] [[package]] name = "redox_users" -version = "0.4.6" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" +checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" dependencies = [ "getrandom", - "libredox", - "thiserror 1.0.69", + "redox_syscall 0.2.16", + "thiserror 1.0.68", ] [[package]] @@ -9107,19 +9095,19 @@ dependencies = [ "bumpalo", "hashbrown 0.15.2", "log", - "rustc-hash 2.1.0", + "rustc-hash 2.0.0", "smallvec", ] [[package]] name = "regex" -version = "1.11.1" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" +checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.4.9", + "regex-automata 0.4.8", "regex-syntax 0.8.5", ] @@ -9134,9 +9122,15 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.9" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" +checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310" + +[[package]] +name = "regex-automata" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" dependencies = [ "aho-corasick", "memchr", @@ -9157,9 +9151,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "regex-syntax" -version = "0.7.5" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" +checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" [[package]] name = "regex-syntax" @@ -9175,9 +9169,9 @@ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2" [[package]] name = "rend" -version = "0.4.2" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" +checksum = "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab" dependencies = [ "bytecheck", ] @@ -9189,7 +9183,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" dependencies = [ "async-compression", - "base64 0.21.7", + "base64 0.21.6", "bytes", "encoding_rs", "futures-core", @@ -9197,7 +9191,7 @@ dependencies = [ "h2 0.3.26", "http 0.2.12", "http-body 0.4.6", - "hyper 0.14.32", + "hyper 0.14.27", "hyper-rustls 0.24.2", "ipnet", "js-sys", @@ -9207,7 +9201,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "rustls 0.21.12", - "rustls-pemfile 1.0.4", + "rustls-pemfile 1.0.3", "serde", "serde_json", "serde_urlencoded", @@ -9221,28 +9215,28 @@ dependencies = [ "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "webpki-roots 0.25.4", + "webpki-roots 0.25.2", "winreg", ] [[package]] name = "reqwest" -version = "0.12.12" +version = "0.12.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" +checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" dependencies = [ "base64 0.22.1", "bytes", "futures-channel", "futures-core", "futures-util", - "h2 0.4.7", + "h2 0.4.4", "hickory-resolver", "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.2", - "hyper-rustls 0.27.5", + "hyper 1.5.1", + "hyper-rustls 0.27.3", "hyper-util", "ipnet", "js-sys", @@ -9253,26 +9247,25 @@ dependencies = [ "percent-encoding", "pin-project-lite", "quinn", - "rustls 0.23.21", - "rustls-native-certs 0.8.1", + "rustls 0.23.18", + "rustls-native-certs 0.8.0", "rustls-pemfile 2.2.0", "rustls-pki-types", "serde", "serde_json", "serde_urlencoded", - "sync_wrapper 1.0.2", + "sync_wrapper 1.0.1", "tokio", - "tokio-rustls 0.26.1", + "tokio-rustls 0.26.0", "tokio-socks", "tokio-util", - "tower 0.5.2", "tower-service", "url", "wasm-bindgen", "wasm-bindgen-futures", "wasm-streams", "web-sys", - "webpki-roots 0.26.7", + "webpki-roots 0.26.1", "windows-registry", ] @@ -9298,9 +9291,9 @@ dependencies = [ [[package]] name = "rgb" -version = "0.8.50" +version = "0.8.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a" +checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8" dependencies = [ "bytemuck", ] @@ -9322,17 +9315,16 @@ dependencies = [ [[package]] name = "ring" -version = "0.17.8" +version = "0.17.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" +checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" dependencies = [ "cc", - "cfg-if 1.0.0", "getrandom", "libc", "spin 0.9.8", "untrusted 0.9.0", - "windows-sys 0.52.0", + "windows-sys 0.48.0", ] [[package]] @@ -9346,13 +9338,12 @@ dependencies = [ [[package]] name = "rkyv" -version = "0.7.45" +version = "0.7.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" +checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58" dependencies = [ "bitvec", "bytecheck", - "bytes", "hashbrown 0.12.3", "ptr_meta", "rend", @@ -9364,9 +9355,9 @@ dependencies = [ [[package]] name = "rkyv_derive" -version = "0.7.45" +version = "0.7.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" +checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d" dependencies = [ "proc-macro2", "quote", @@ -9422,9 +9413,9 @@ dependencies = [ [[package]] name = "rsa" -version = "0.9.7" +version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519" +checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" dependencies = [ "const-oid", "digest 0.10.7", @@ -9466,15 +9457,15 @@ dependencies = [ "regex", "relative-path", "rustc_version", - "syn 2.0.96", + "syn 2.0.87", "unicode-ident", ] [[package]] name = "rusb" -version = "0.9.4" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab9f9ff05b63a786553a4c02943b74b34a988448671001e9a27e2f0565cc05a4" +checksum = "45fff149b6033f25e825cbb7b2c625a11ee8e6dac09264d49beb125e39aa97bf" dependencies = [ "libc", "libusb1-sys", @@ -9500,7 +9491,7 @@ version = "1.36.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b082d80e3e3cc52b2ed634388d436fe1f4de6af5786cc2de9ba9737527bdf555" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.4", "borsh", "bytes", "num-traits", @@ -9522,9 +9513,9 @@ dependencies = [ [[package]] name = "rustc-demangle" -version = "0.1.24" +version = "0.1.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" +checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" [[package]] name = "rustc-hash" @@ -9534,9 +9525,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustc-hash" -version = "2.1.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497" +checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" [[package]] name = "rustc-hex" @@ -9546,9 +9537,9 @@ checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" [[package]] name = "rustc_version" -version = "0.4.1" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" dependencies = [ "semver", ] @@ -9564,15 +9555,15 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.43" +version = "0.38.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6" +checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89" dependencies = [ - "bitflags 2.8.0", - "errno 0.3.10", + "bitflags 2.6.0", + "errno 0.3.8", "libc", "linux-raw-sys", - "windows-sys 0.59.0", + "windows-sys 0.52.0", ] [[package]] @@ -9582,7 +9573,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" dependencies = [ "log", - "ring 0.17.8", + "ring 0.17.7", "rustls-webpki 0.101.7", "sct", ] @@ -9594,7 +9585,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" dependencies = [ "log", - "ring 0.17.8", + "ring 0.17.7", "rustls-pki-types", "rustls-webpki 0.102.8", "subtle", @@ -9603,15 +9594,15 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.21" +version = "0.23.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8" +checksum = "9c9cc1d47e243d655ace55ed38201c19ae02c148ae56412ab8750e8f0166ab7f" dependencies = [ "brotli 7.0.0", - "brotli-decompressor", + "brotli-decompressor 4.0.1", "log", "once_cell", - "ring 0.17.8", + "ring 0.17.7", "rustls-pki-types", "rustls-webpki 0.102.8", "subtle", @@ -9634,13 +9625,13 @@ dependencies = [ "futures-rustls", "http 1.2.0", "log", - "pem 3.0.4", + "pem 3.0.3", "rcgen", - "ring 0.17.8", + "ring 0.17.7", "serde", "serde_json", - "thiserror 2.0.11", - "webpki-roots 0.26.7", + "thiserror 2.0.3", + "webpki-roots 0.26.1", "x509-parser", ] @@ -9651,43 +9642,44 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" dependencies = [ "openssl-probe", - "rustls-pemfile 1.0.4", + "rustls-pemfile 1.0.3", "schannel", - "security-framework 2.11.1", + "security-framework", ] [[package]] name = "rustls-native-certs" -version = "0.7.3" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" +checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" dependencies = [ "openssl-probe", "rustls-pemfile 2.2.0", "rustls-pki-types", "schannel", - "security-framework 2.11.1", + "security-framework", ] [[package]] name = "rustls-native-certs" -version = "0.8.1" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" +checksum = "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a" dependencies = [ "openssl-probe", + "rustls-pemfile 2.2.0", "rustls-pki-types", "schannel", - "security-framework 3.2.0", + "security-framework", ] [[package]] name = "rustls-pemfile" -version = "1.0.4" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" +checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" dependencies = [ - "base64 0.21.7", + "base64 0.21.6", ] [[package]] @@ -9701,12 +9693,9 @@ dependencies = [ [[package]] name = "rustls-pki-types" -version = "1.10.1" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37" -dependencies = [ - "web-time", -] +checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" [[package]] name = "rustls-platform-verifier" @@ -9714,16 +9703,16 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4c7dc240fec5517e6c4eab3310438636cfe6391dfc345ba013109909a90d136" dependencies = [ - "core-foundation 0.9.4", + "core-foundation", "core-foundation-sys", "jni", "log", "once_cell", - "rustls 0.23.21", - "rustls-native-certs 0.7.3", + "rustls 0.23.18", + "rustls-native-certs 0.7.0", "rustls-platform-verifier-android", "rustls-webpki 0.102.8", - "security-framework 2.11.1", + "security-framework", "security-framework-sys", "webpki-root-certs", "windows-sys 0.52.0", @@ -9741,7 +9730,7 @@ version = "0.101.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" dependencies = [ - "ring 0.17.8", + "ring 0.17.7", "untrusted 0.9.0", ] @@ -9751,16 +9740,16 @@ version = "0.102.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" dependencies = [ - "ring 0.17.8", + "ring 0.17.7", "rustls-pki-types", "untrusted 0.9.0", ] [[package]] name = "rustversion" -version = "1.0.19" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" +checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" [[package]] name = "rusty-fork" @@ -9776,9 +9765,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.18" +version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" +checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" [[package]] name = "same-file" @@ -9791,45 +9780,45 @@ dependencies = [ [[package]] name = "scale-info" -version = "2.11.6" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "346a3b32eba2640d17a9cb5927056b08f3de90f65b72fe09402c2ad07d684d0b" +checksum = "35c0a159d0c45c12b20c5a844feb1fe4bea86e28f17b92a5f0c42193634d3782" dependencies = [ "cfg-if 1.0.0", - "derive_more 1.0.0", + "derive_more", "parity-scale-codec", "scale-info-derive", ] [[package]] name = "scale-info-derive" -version = "2.11.6" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6630024bf739e2179b91fb424b28898baf819414262c5d376677dbff1fe7ebf" +checksum = "912e55f6d20e0e80d63733872b40e1227c0bce1e1ab81ba67d696339bfd7fd29" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", - "syn 2.0.96", + "syn 1.0.109", ] [[package]] name = "schannel" -version = "0.1.27" +version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" +checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.48.0", ] [[package]] name = "schemars" -version = "0.8.21" +version = "0.8.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92" +checksum = "45a28f4c49489add4ce10783f7911893516f15afe45d015608d41faca6bc4d29" dependencies = [ "dyn-clone", - "indexmap 2.7.0", + "indexmap 2.2.6", "schemars_derive", "serde", "serde_json", @@ -9837,14 +9826,14 @@ dependencies = [ [[package]] name = "schemars_derive" -version = "0.8.21" +version = "0.8.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e" +checksum = "c767fd6fa65d9ccf9cf026122c1b555f2ef9a4f0cea69da4d7dbc3e258d30967" dependencies = [ "proc-macro2", "quote", "serde_derive_internals", - "syn 2.0.96", + "syn 1.0.109", ] [[package]] @@ -9884,12 +9873,12 @@ dependencies = [ [[package]] name = "sct" -version = "0.7.1" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" +checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" dependencies = [ - "ring 0.17.8", - "untrusted 0.9.0", + "ring 0.16.20", + "untrusted 0.7.1", ] [[package]] @@ -9937,12 +9926,12 @@ dependencies = [ [[package]] name = "secp256k1" -version = "0.29.1" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113" +checksum = "0e0cc0f1cf93f4969faf3ea1c7d8a9faed25918d96affa959720823dfe86d4f3" dependencies = [ "bitcoin_hashes 0.14.0", - "secp256k1-sys 0.10.1", + "secp256k1-sys 0.10.0", ] [[package]] @@ -9965,9 +9954,9 @@ dependencies = [ [[package]] name = "secp256k1-sys" -version = "0.10.1" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9" +checksum = "1433bd67156263443f14d603720b082dd3121779323fce20cba2aa07b874bc1b" dependencies = [ "cc", ] @@ -9988,32 +9977,19 @@ version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" dependencies = [ - "bitflags 2.8.0", - "core-foundation 0.9.4", + "bitflags 2.6.0", + "core-foundation", "core-foundation-sys", "libc", "num-bigint 0.4.6", "security-framework-sys", ] -[[package]] -name = "security-framework" -version = "3.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" -dependencies = [ - "bitflags 2.8.0", - "core-foundation 0.10.0", - "core-foundation-sys", - "libc", - "security-framework-sys", -] - [[package]] name = "security-framework-sys" -version = "2.14.0" +version = "2.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" +checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" dependencies = [ "core-foundation-sys", "libc", @@ -10025,9 +10001,9 @@ version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4eb30575f3638fc8f6815f448d50cb1a2e255b0897985c8c59f4d37b72a07b06" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "cssparser", - "derive_more 0.99.18", + "derive_more", "fxhash", "log", "new_debug_unreachable", @@ -10040,9 +10016,9 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.24" +version = "1.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba" +checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" dependencies = [ "serde", ] @@ -10073,7 +10049,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c" dependencies = [ - "ordered-float 2.10.1", + "ordered-float 2.10.0", "serde", ] @@ -10103,7 +10079,7 @@ version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5" dependencies = [ - "half 1.8.3", + "half", "serde", ] @@ -10115,25 +10091,25 @@ checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "serde_derive_internals" -version = "0.29.1" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" +checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 1.0.109", ] [[package]] name = "serde_json" -version = "1.0.135" +version = "1.0.132" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" +checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" dependencies = [ "itoa", "memchr", @@ -10143,9 +10119,9 @@ dependencies = [ [[package]] name = "serde_path_to_error" -version = "0.1.16" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" +checksum = "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335" dependencies = [ "itoa", "serde", @@ -10161,7 +10137,7 @@ dependencies = [ "futures", "percent-encoding", "serde", - "thiserror 1.0.69", + "thiserror 1.0.68", ] [[package]] @@ -10182,7 +10158,7 @@ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -10198,14 +10174,14 @@ dependencies = [ [[package]] name = "serde_tokenstream" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64060d864397305347a78851c51588fd283767e7e7589829e8121d65512340f1" +checksum = "8790a7c3fe883e443eaa2af6f705952bc5d6e8671a220b9335c8cae92c037e74" dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -10267,7 +10243,7 @@ dependencies = [ "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -10288,7 +10264,7 @@ version = "0.9.34+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" dependencies = [ - "indexmap 2.7.0", + "indexmap 2.2.6", "itoa", "ryu", "serde", @@ -10364,9 +10340,9 @@ dependencies = [ [[package]] name = "sharded-slab" -version = "0.1.7" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" +checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" dependencies = [ "lazy_static", ] @@ -10389,20 +10365,20 @@ dependencies = [ [[package]] name = "signal-hook-mio" -version = "0.2.4" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd" +checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" dependencies = [ "libc", - "mio 0.8.11", + "mio 0.8.10", "signal-hook", ] [[package]] name = "signal-hook-registry" -version = "1.4.2" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" +checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" dependencies = [ "libc", ] @@ -10419,25 +10395,25 @@ dependencies = [ [[package]] name = "simdutf8" -version = "0.1.5" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" +checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" [[package]] name = "similar" -version = "2.6.0" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e" +checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf" [[package]] name = "simple_asn1" -version = "0.6.3" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" +checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" dependencies = [ "num-bigint 0.4.6", "num-traits", - "thiserror 2.0.11", + "thiserror 1.0.68", "time", ] @@ -10479,19 +10455,13 @@ version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" -[[package]] -name = "siphasher" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" - [[package]] name = "slab" -version = "0.4.9" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" +checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" dependencies = [ - "autocfg 1.4.0", + "autocfg 1.1.0", ] [[package]] @@ -10580,9 +10550,9 @@ dependencies = [ [[package]] name = "slotmap" -version = "1.0.7" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" +checksum = "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342" dependencies = [ "version_check", ] @@ -10614,14 +10584,14 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "socket2" -version = "0.4.10" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" +checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" dependencies = [ "libc", "winapi 0.3.9", @@ -10629,9 +10599,9 @@ dependencies = [ [[package]] name = "socket2" -version = "0.5.8" +version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8" +checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" dependencies = [ "libc", "windows-sys 0.52.0", @@ -10649,15 +10619,6 @@ version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" -[[package]] -name = "spinning_top" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" -dependencies = [ - "lock_api", -] - [[package]] name = "spki" version = "0.7.3" @@ -10694,15 +10655,15 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "stacker" -version = "0.1.17" +version = "0.1.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "799c883d55abdb5e98af1a7b3f23b9b6de8ecada0ecac058672d7635eb48ca7b" +checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce" dependencies = [ "cc", "cfg-if 1.0.0", "libc", "psm", - "windows-sys 0.59.0", + "winapi 0.3.9", ] [[package]] @@ -10737,7 +10698,7 @@ checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" dependencies = [ "new_debug_unreachable", "once_cell", - "parking_lot 0.12.3", + "parking_lot 0.12.1", "phf_shared 0.10.0", "precomputed-hash", "serde", @@ -10776,7 +10737,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta-derive", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -10787,7 +10748,16 @@ checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", +] + +[[package]] +name = "strum" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" +dependencies = [ + "strum_macros 0.25.3", ] [[package]] @@ -10796,7 +10766,20 @@ version = "0.26.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" dependencies = [ - "strum_macros", + "strum_macros 0.26.4", +] + +[[package]] +name = "strum_macros" +version = "0.25.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" +dependencies = [ + "heck 0.4.1", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.87", ] [[package]] @@ -10809,14 +10792,14 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "stubborn-io" -version = "0.3.5" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "373a722240991e091384a571e1fd8abde15eca4494a1a2bff95dbf603d15a866" +checksum = "b261fbca19f25e0ac726f6efb3c3f53949e18ba4b126c16f8ca625730daa1a9c" dependencies = [ "log", "rand 0.8.5", @@ -10837,9 +10820,9 @@ checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142" [[package]] name = "symbolic-common" -version = "12.13.2" +version = "12.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8150eae9699e3c73a3e6431dc1f80d87748797c0457336af23e94c1de619ed24" +checksum = "9e0e9bc48b3852f36a84f8d0da275d50cb3c2b88b59b9ec35fdd8b7fa239e37d" dependencies = [ "debugid", "memmap2", @@ -10849,9 +10832,9 @@ dependencies = [ [[package]] name = "symbolic-demangle" -version = "12.13.2" +version = "12.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95f4a9846f7a8933b6d198c022faa2c9bd89e1a970bed9d9a98d25708bf8de17" +checksum = "691e53bdc0702aba3a5abc2cffff89346fcbd4050748883c7e2f714b33a69045" dependencies = [ "rustc-demangle", "symbolic-common", @@ -10870,9 +10853,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.96" +version = "2.0.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" +checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" dependencies = [ "proc-macro2", "quote", @@ -10887,9 +10870,9 @@ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" [[package]] name = "sync_wrapper" -version = "1.0.2" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" +checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" dependencies = [ "futures-core", ] @@ -10902,7 +10885,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -10912,7 +10895,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" dependencies = [ "bitflags 1.3.2", - "core-foundation 0.9.4", + "core-foundation", "system-configuration-sys", ] @@ -10928,9 +10911,9 @@ dependencies = [ [[package]] name = "systemstat" -version = "0.2.4" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "668a4db78b439df482c238f559e4ea869017f9e62ef0a059c8bfcd841a4df544" +checksum = "a24aec24a9312c83999a28e3ef9db7e2afd5c64bf47725b758cdc1cafd5b0bd2" dependencies = [ "bytesize", "lazy_static", @@ -10960,9 +10943,9 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "tar" -version = "0.4.43" +version = "0.4.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c65998313f8e17d0d553d28f91a0df93e4dbbbf770279c7bc21ca0f09ea1a1f6" +checksum = "ec96d2ffad078296368d46ff1cb309be1c23c513b4ab0e22a45de0185275ac96" dependencies = [ "filetime", "libc", @@ -10991,7 +10974,7 @@ dependencies = [ "serde", "static_assertions", "tarpc-plugins", - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", "tokio-serde", "tokio-util", @@ -11012,13 +10995,12 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.15.0" +version = "3.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" +checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" dependencies = [ "cfg-if 1.0.0", - "fastrand", - "getrandom", + "fastrand 2.1.0", "once_cell", "rustix", "windows-sys 0.59.0", @@ -11086,9 +11068,9 @@ dependencies = [ [[package]] name = "termtree" -version = "0.5.1" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683" +checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "test-strategy" @@ -11099,7 +11081,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -11115,9 +11097,9 @@ dependencies = [ [[package]] name = "textplots" -version = "0.8.6" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f59b64803118dbff62f92842b3154a2c802dfd8e18660132bbcbfb141c637ae3" +checksum = "2171116bd71c738068fe42091b1509d70135a768443c9afd6c179b83dc6cdc79" dependencies = [ "drawille", "rgb", @@ -11125,48 +11107,48 @@ dependencies = [ [[package]] name = "textwrap" -version = "0.16.1" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" +checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" [[package]] name = "thiserror" -version = "1.0.69" +version = "1.0.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +checksum = "02dd99dc800bbb97186339685293e1cc5d9df1f8fae2d0aecd9ff1c77efea892" dependencies = [ - "thiserror-impl 1.0.69", + "thiserror-impl 1.0.68", ] [[package]] name = "thiserror" -version = "2.0.11" +version = "2.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" +checksum = "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa" dependencies = [ - "thiserror-impl 2.0.11", + "thiserror-impl 2.0.3", ] [[package]] name = "thiserror-impl" -version = "1.0.69" +version = "1.0.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +checksum = "a7c61ec9a6f64d2793d8a45faba21efbe3ced62a886d44c36a009b2b519b4c7e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "thiserror-impl" -version = "2.0.11" +version = "2.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" +checksum = "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -11177,9 +11159,9 @@ checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820" [[package]] name = "thread_local" -version = "1.1.8" +version = "1.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" +checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" dependencies = [ "cfg-if 1.0.0", "once_cell", @@ -11227,9 +11209,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.37" +version = "0.3.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" +checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" dependencies = [ "deranged", "itoa", @@ -11250,9 +11232,9 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" [[package]] name = "time-macros" -version = "0.2.19" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" +checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" dependencies = [ "num-conv", "time-core", @@ -11289,9 +11271,9 @@ dependencies = [ [[package]] name = "tinyvec" -version = "1.8.1" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" +checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" dependencies = [ "tinyvec_macros", ] @@ -11320,23 +11302,23 @@ checksum = "8d9ef545650e79f30233c0003bcc2504d7efac6dad25fca40744de773fe2049c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "tokio" -version = "1.43.0" +version = "1.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" +checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" dependencies = [ "backtrace", "bytes", "libc", - "mio 1.0.3", - "parking_lot 0.12.3", + "mio 1.0.2", + "parking_lot 0.12.1", "pin-project-lite", "signal-hook-registry", - "socket2 0.5.8", + "socket2 0.5.7", "tokio-macros", "windows-sys 0.52.0", ] @@ -11353,13 +11335,13 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.5.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" +checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -11397,11 +11379,12 @@ dependencies = [ [[package]] name = "tokio-rustls" -version = "0.26.1" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37" +checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" dependencies = [ - "rustls 0.23.21", + "rustls 0.23.18", + "rustls-pki-types", "tokio", ] @@ -11429,7 +11412,7 @@ checksum = "0d4770b8024672c1101b3f6733eab95b18007dbe0847a8afe341fcf79e06043f" dependencies = [ "either", "futures-util", - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", ] @@ -11503,13 +11486,24 @@ checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" [[package]] name = "toml_edit" -version = "0.22.22" +version = "0.19.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" +dependencies = [ + "indexmap 2.2.6", + "toml_datetime", + "winnow 0.5.0", +] + +[[package]] +name = "toml_edit" +version = "0.22.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" +checksum = "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d" dependencies = [ - "indexmap 2.7.0", + "indexmap 2.2.6", "toml_datetime", - "winnow", + "winnow 0.6.20", ] [[package]] @@ -11523,17 +11517,17 @@ dependencies = [ "axum", "base64 0.22.1", "bytes", - "h2 0.4.7", + "h2 0.4.4", "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.2", + "hyper 1.5.1", "hyper-timeout", "hyper-util", "percent-encoding", "pin-project", - "prost 0.13.4", - "socket2 0.5.8", + "prost 0.13.3", + "socket2 0.5.7", "tokio", "tokio-stream", "tower 0.4.13", @@ -11550,10 +11544,10 @@ checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11" dependencies = [ "prettyplease", "proc-macro2", - "prost-build 0.13.4", - "prost-types 0.13.4", + "prost-build 0.13.3", + "prost-types 0.13.3", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -11578,17 +11572,17 @@ dependencies = [ [[package]] name = "tower" -version = "0.5.2" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" +checksum = "2873938d487c3cfb9aed7546dc9f2711d867c9f90c46b889989a2cb84eba6b4f" dependencies = [ "futures-core", "futures-util", "hdrhistogram", - "indexmap 2.7.0", + "indexmap 2.2.6", "pin-project-lite", "slab", - "sync_wrapper 1.0.2", + "sync_wrapper 0.1.2", "tokio", "tokio-util", "tower-layer", @@ -11602,8 +11596,8 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" dependencies = [ - "base64 0.21.7", - "bitflags 2.8.0", + "base64 0.21.6", + "bitflags 2.6.0", "bytes", "http 1.2.0", "http-body 1.0.1", @@ -11623,7 +11617,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697" dependencies = [ "async-compression", - "bitflags 2.8.0", + "bitflags 2.6.0", "bytes", "futures-core", "http 1.2.0", @@ -11632,7 +11626,7 @@ dependencies = [ "pin-project-lite", "tokio", "tokio-util", - "tower 0.5.2", + "tower 0.5.1", "tower-layer", "tower-service", "tracing", @@ -11679,17 +11673,17 @@ dependencies = [ [[package]] name = "tower_governor" -version = "0.4.3" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aea939ea6cfa7c4880f3e7422616624f97a567c16df67b53b11f0d03917a8e46" +checksum = "313fa625fea5790ed56360a30ea980e41229cf482b4835801a67ef1922bf63b9" dependencies = [ "axum", "forwarded-header-value", "governor", "http 1.2.0", "pin-project", - "thiserror 1.0.69", - "tower 0.5.2", + "thiserror 1.0.68", + "tower 0.4.13", "tracing", ] @@ -11712,7 +11706,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf" dependencies = [ "crossbeam-channel", - "thiserror 1.0.69", + "thiserror 1.0.68", "time", "tracing-subscriber", ] @@ -11725,7 +11719,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -11781,7 +11775,7 @@ checksum = "97a971f6058498b5c0f1affa23e7ea202057a7301dbff68e968b2d578bcbd053" dependencies = [ "js-sys", "once_cell", - "opentelemetry 0.27.1", + "opentelemetry 0.27.0", "opentelemetry_sdk 0.27.1", "smallvec", "tracing", @@ -11853,6 +11847,12 @@ dependencies = [ "serde_json", ] +[[package]] +name = "triomphe" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee8098afad3fb0c54a9007aab6804558410503ad676d4633f9c2559a00ac0f" + [[package]] name = "trust-dns-proto" version = "0.22.0" @@ -11871,7 +11871,7 @@ dependencies = [ "lazy_static", "rand 0.8.5", "smallvec", - "thiserror 1.0.69", + "thiserror 1.0.68", "tinyvec", "tokio", "tracing", @@ -11889,10 +11889,10 @@ dependencies = [ "ipconfig", "lazy_static", "lru-cache", - "parking_lot 0.12.3", + "parking_lot 0.12.1", "resolv-conf", "smallvec", - "thiserror 1.0.69", + "thiserror 1.0.68", "tokio", "tracing", "trust-dns-proto", @@ -11900,9 +11900,9 @@ dependencies = [ [[package]] name = "try-lock" -version = "0.2.5" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" +checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "tungstenite" @@ -11918,7 +11918,7 @@ dependencies = [ "log", "rand 0.8.5", "sha1", - "thiserror 1.0.69", + "thiserror 1.0.68", "url", "utf-8", ] @@ -11957,9 +11957,9 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" [[package]] name = "ucd-trie" -version = "0.1.7" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971" +checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" [[package]] name = "uint" @@ -11975,12 +11975,11 @@ dependencies = [ [[package]] name = "ulid" -version = "1.1.4" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f294bff79170ed1c5633812aff1e565c35d993a36e757f9bc0accf5eec4e6045" +checksum = "13a3aaa69b04e5b66cc27309710a569ea23593612387d67daaf102e73aa974fd" dependencies = [ "rand 0.8.5", - "web-time", ] [[package]] @@ -11991,54 +11990,51 @@ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" [[package]] name = "unicase" -version = "2.8.1" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" +checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" +dependencies = [ + "version_check", +] [[package]] name = "unicode-bidi" -version = "0.3.18" +version = "0.3.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" +checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" [[package]] name = "unicode-ident" -version = "1.0.14" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" +checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" [[package]] name = "unicode-normalization" -version = "0.1.24" +version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" +checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" dependencies = [ "tinyvec", ] [[package]] name = "unicode-segmentation" -version = "1.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" - -[[package]] -name = "unicode-width" -version = "0.1.14" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" +checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" [[package]] name = "unicode-width" -version = "0.2.0" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" +checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" [[package]] name = "unicode-xid" -version = "0.2.6" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" +checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" [[package]] name = "universal-hash" @@ -12080,9 +12076,9 @@ dependencies = [ [[package]] name = "url" -version = "2.5.4" +version = "2.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" +checksum = "8d157f1b96d14500ffdc1f10ba712e780825526c03d9a49b4d0324b0d9113ada" dependencies = [ "form_urlencoded", "idna 1.0.3", @@ -12110,9 +12106,9 @@ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" [[package]] name = "utf8-width" -version = "0.1.7" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" +checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1" [[package]] name = "utf8_iter" @@ -12122,15 +12118,15 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" [[package]] name = "utf8parse" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" +checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.12.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4" +checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" dependencies = [ "getrandom", "serde", @@ -12150,9 +12146,9 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "version_check" -version = "0.9.5" +version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "vrl" @@ -12163,9 +12159,9 @@ dependencies = [ "bytes", "cfg-if 1.0.0", "chrono", - "lalrpop 0.20.2", + "lalrpop 0.20.0", "once_cell", - "ordered-float 4.6.0", + "ordered-float 4.2.0", "regex", "serde", "serde_json", @@ -12192,11 +12188,17 @@ dependencies = [ "libc", ] +[[package]] +name = "waker-fn" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" + [[package]] name = "walkdir" -version = "2.5.0" +version = "2.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" +checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" dependencies = [ "same-file", "winapi-util", @@ -12204,9 +12206,9 @@ dependencies = [ [[package]] name = "walrus" -version = "0.21.3" +version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "501ace8ec3492754a9b3c4b59eac7159ceff8414f9e43a05029fe8ef43b9218f" +checksum = "467611cafbc8a84834b77d2b4bb191fd2f5769752def8340407e924390c6883b" dependencies = [ "anyhow", "gimli 0.26.2", @@ -12248,9 +12250,9 @@ dependencies = [ "bytes", "futures-channel", "futures-util", - "headers 0.3.9", + "headers 0.3.8", "http 0.2.12", - "hyper 0.14.32", + "hyper 0.14.27", "log", "mime", "mime_guess", @@ -12278,48 +12280,47 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.100" +version = "0.2.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" +checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e" dependencies = [ "cfg-if 1.0.0", "once_cell", - "rustversion", "wasm-bindgen-macro", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.100" +version = "0.2.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" +checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358" dependencies = [ "bumpalo", "log", + "once_cell", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.50" +version = "0.4.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" +checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" dependencies = [ "cfg-if 1.0.0", "js-sys", - "once_cell", "wasm-bindgen", "web-sys", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.100" +version = "0.2.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" +checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -12327,25 +12328,22 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.100" +version = "0.2.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" +checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.100" +version = "0.2.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" -dependencies = [ - "unicode-ident", -] +checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" [[package]] name = "wasm-encoder" @@ -12377,16 +12375,6 @@ dependencies = [ "wasmparser 0.221.2", ] -[[package]] -name = "wasm-encoder" -version = "0.223.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e636076193fa68103e937ac951b5f2f587624097017d764b8984d9c0f149464" -dependencies = [ - "leb128", - "wasmparser 0.223.0", -] - [[package]] name = "wasm-smith" version = "0.212.0" @@ -12396,7 +12384,7 @@ dependencies = [ "anyhow", "arbitrary", "flagset", - "indexmap 2.7.0", + "indexmap 2.2.6", "leb128", "wasm-encoder 0.212.0", "wasmparser 0.212.0", @@ -12404,9 +12392,9 @@ dependencies = [ [[package]] name = "wasm-streams" -version = "0.4.2" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" +checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" dependencies = [ "futures-util", "js-sys", @@ -12421,8 +12409,8 @@ version = "0.119.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c35daf77afb4f9b14016625144a391085ec2ca99ca9cc53ed291bb53ab5278d" dependencies = [ - "bitflags 2.8.0", - "indexmap 2.7.0", + "bitflags 2.6.0", + "indexmap 2.2.6", "semver", ] @@ -12433,9 +12421,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d28bc49ba1e5c5b61ffa7a2eace10820443c4b7d1c0b144109261d14570fdf8" dependencies = [ "ahash 0.8.11", - "bitflags 2.8.0", + "bitflags 2.6.0", "hashbrown 0.14.5", - "indexmap 2.7.0", + "indexmap 2.2.6", "semver", "serde", ] @@ -12447,9 +12435,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca917a21307d3adf2b9857b94dd05ebf8496bdcff4437a9b9fb3899d3e6c74e7" dependencies = [ "ahash 0.8.11", - "bitflags 2.8.0", + "bitflags 2.6.0", "hashbrown 0.14.5", - "indexmap 2.7.0", + "indexmap 2.2.6", "semver", "serde", ] @@ -12460,24 +12448,13 @@ version = "0.221.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9845c470a2e10b61dd42c385839cdd6496363ed63b5c9e420b5488b77bd22083" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "hashbrown 0.15.2", - "indexmap 2.7.0", + "indexmap 2.2.6", "semver", "serde", ] -[[package]] -name = "wasmparser" -version = "0.223.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5a99faceb1a5a84dd6084ec4bfa4b2ab153b5793b43fd8f58b89232634afc35" -dependencies = [ - "bitflags 2.8.0", - "indexmap 2.7.0", - "semver", -] - [[package]] name = "wasmprinter" version = "0.217.0" @@ -12502,23 +12479,23 @@ dependencies = [ [[package]] name = "wasmtime" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edd30973c65eceb0f37dfcc430d83abd5eb24015fdfcab6912f52949287e04f0" +checksum = "f639ecae347b9a2227e453a7b7671e84370a0b61f47a15e0390fe9b7725e47b3" dependencies = [ "anyhow", - "bitflags 2.8.0", + "bitflags 2.6.0", "bumpalo", "cc", "cfg-if 1.0.0", "hashbrown 0.14.5", - "indexmap 2.7.0", + "indexmap 2.2.6", "libc", "libm", "log", "mach2", "memfd", - "object", + "object 0.36.7", "once_cell", "paste", "postcard", @@ -12546,23 +12523,23 @@ dependencies = [ [[package]] name = "wasmtime-asm-macros" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6c21dd30d1f3f93ee390ac1a7ec304ecdbfdab6390e1add41a1f52727b0992b" +checksum = "882a18800471cfc063c8b3ccf75723784acc3fd534009ac09421f2fac2fcdcec" dependencies = [ "cfg-if 1.0.0", ] [[package]] name = "wasmtime-component-macro" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f948a6ef3119d52c9f12936970de28ddf3f9bea04bc65571f4a92d2e5ab38f4" +checksum = "eb5c0a77c9e1927c3d471f53cc13767c3d3438e5d5ffd394e3eb31c86445fd60" dependencies = [ "anyhow", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", "wasmtime-component-util", "wasmtime-wit-bindgen", "wit-parser", @@ -12570,15 +12547,15 @@ dependencies = [ [[package]] name = "wasmtime-component-util" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9275aa01ceaaa2fa6c0ecaa5267518d80b9d6e9ae7c7ea42f4c6e073e6a69ef" +checksum = "43702ca98bf5162eca0573db691ed9ecd36d716f8c6688410fe26ec16b6f9bcb" [[package]] name = "wasmtime-cranelift" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0701a44a323267aae4499672dae422b266cee3135a23b640972ec8c0e10a44a2" +checksum = "20070aa5b75080a8932ec328419faf841df2bc6ceb16b55b0df2b952098392a2" dependencies = [ "anyhow", "cfg-if 1.0.0", @@ -12588,12 +12565,12 @@ dependencies = [ "cranelift-frontend", "cranelift-native", "gimli 0.31.1", - "itertools 0.12.1", + "itertools 0.12.0", "log", - "object", + "object 0.36.7", "smallvec", "target-lexicon", - "thiserror 1.0.69", + "thiserror 1.0.68", "wasmparser 0.221.2", "wasmtime-environ", "wasmtime-versioned-export-macros", @@ -12601,17 +12578,17 @@ dependencies = [ [[package]] name = "wasmtime-environ" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "264c968c1b81d340355ece2be0bc31a10f567ccb6ce08512c3b7d10e26f3cbe5" +checksum = "2604ddb24879d4dc1dedcb7081d7a8e017259bce916fdae097a97db52cbaab80" dependencies = [ "anyhow", "cranelift-bitset", "cranelift-entity", "gimli 0.31.1", - "indexmap 2.7.0", + "indexmap 2.2.6", "log", - "object", + "object 0.36.7", "postcard", "serde", "serde_derive", @@ -12624,9 +12601,9 @@ dependencies = [ [[package]] name = "wasmtime-fiber" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78505221fd5bd7b07b4e1fa2804edea49dc231e626ad6861adc8f531812973e6" +checksum = "98593412d2b167ebe2b59d4a17a184978a72f976b53b3a0ec05629451079ac1d" dependencies = [ "anyhow", "cc", @@ -12639,9 +12616,9 @@ dependencies = [ [[package]] name = "wasmtime-jit-icache-coherence" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9bedb677ca1b549d98f95e9e1f9251b460090d99a2c196a0614228c064bf2e59" +checksum = "d40d7722b9e1fbeae135715710a8a2570b1e6cf72b74dd653962d89831c6c70d" dependencies = [ "anyhow", "cfg-if 1.0.0", @@ -12651,31 +12628,31 @@ dependencies = [ [[package]] name = "wasmtime-slab" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "564905638c132c275d365c1fa074f0b499790568f43148d29de84ccecfb5cb31" +checksum = "8579c335220b4ece9aa490a0e8b46de78cd342b195ab21ff981d095e14b52383" [[package]] name = "wasmtime-versioned-export-macros" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e91092e6cf77390eeccee273846a9327f3e8f91c3c6280f60f37809f0e62d29" +checksum = "d7de0a56fb0a69b185968f2d7a9ba54750920a806470dff7ad8de91ac06d277e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "wasmtime-winch" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b111d909dc604c741bd8ac2f4af373eaa5c68c34b5717271bcb687688212cef8" +checksum = "abd309943c443f5590d12f9aba9ba63c481091c955a0a14de0c2a9e0e3aaeca9" dependencies = [ "anyhow", "cranelift-codegen", "gimli 0.31.1", - "object", + "object 0.36.7", "target-lexicon", "wasmparser 0.221.2", "wasmtime-cranelift", @@ -12685,13 +12662,13 @@ dependencies = [ [[package]] name = "wasmtime-wit-bindgen" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f38f7a5eb2f06f53fe943e7fb8bf4197f7cf279f1bc52c0ce56e9d3ffd750a4" +checksum = "969f83022dac3435d6469edb582ceed04cfe32aa44dc3ef16e5cb55574633df8" dependencies = [ "anyhow", "heck 0.5.0", - "indexmap 2.7.0", + "indexmap 2.2.6", "wit-parser", ] @@ -12704,37 +12681,24 @@ dependencies = [ "bumpalo", "leb128", "memchr", - "unicode-width 0.1.14", + "unicode-width", "wasm-encoder 0.212.0", ] -[[package]] -name = "wast" -version = "223.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d59b2ba8a2ff9f06194b7be9524f92e45e70149f4dacc0d0c7ad92b59ac875e4" -dependencies = [ - "bumpalo", - "leb128", - "memchr", - "unicode-width 0.2.0", - "wasm-encoder 0.223.0", -] - [[package]] name = "wat" -version = "1.223.0" +version = "1.212.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "662786915c427e4918ff01eabb3c4756d4d947cd8f635761526b4cc9da2eaaad" +checksum = "c74ca7f93f11a5d6eed8499f2a8daaad6e225cab0151bc25a091fff3b987532f" dependencies = [ - "wast 223.0.0", + "wast", ] [[package]] name = "web-sys" -version = "0.3.77" +version = "0.3.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" +checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" dependencies = [ "js-sys", "wasm-bindgen", @@ -12752,24 +12716,24 @@ dependencies = [ [[package]] name = "webpki-root-certs" -version = "0.26.7" +version = "0.26.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cd5da49bdf1f30054cfe0b8ce2958b8fbeb67c4d82c8967a598af481bef255c" +checksum = "e8c6dfa3ac045bc517de14c7b1384298de1dbd229d38e08e169d9ae8c170937c" dependencies = [ "rustls-pki-types", ] [[package]] name = "webpki-roots" -version = "0.25.4" +version = "0.25.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" +checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" [[package]] name = "webpki-roots" -version = "0.26.7" +version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e" +checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" dependencies = [ "rustls-pki-types", ] @@ -12788,21 +12752,20 @@ dependencies = [ [[package]] name = "which" -version = "4.4.2" +version = "4.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" +checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" dependencies = [ "either", - "home", + "libc", "once_cell", - "rustix", ] [[package]] name = "widestring" -version = "1.1.0" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" +checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" [[package]] name = "winapi" @@ -12828,11 +12791,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.9" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" +checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" dependencies = [ - "windows-sys 0.59.0", + "winapi 0.3.9", ] [[package]] @@ -12843,9 +12806,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "winch-codegen" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6232f40a795be2ce10fc761ed3b403825126a60d12491ac556ea104a932fd18a" +checksum = "9110decc2983ed94de904804dcd979ba59cbabc78a94fec6b1d8468ec513d0f6" dependencies = [ "anyhow", "cranelift-codegen", @@ -12858,16 +12821,6 @@ dependencies = [ "wasmtime-environ", ] -[[package]] -name = "windows" -version = "0.58.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" -dependencies = [ - "windows-core 0.58.0", - "windows-targets 0.52.6", -] - [[package]] name = "windows-core" version = "0.52.0" @@ -12877,41 +12830,6 @@ dependencies = [ "windows-targets 0.52.6", ] -[[package]] -name = "windows-core" -version = "0.58.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" -dependencies = [ - "windows-implement", - "windows-interface", - "windows-result", - "windows-strings", - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-implement" -version = "0.58.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.96", -] - -[[package]] -name = "windows-interface" -version = "0.58.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.96", -] - [[package]] name = "windows-registry" version = "0.2.0" @@ -12942,13 +12860,22 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-sys" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" +dependencies = [ + "windows-targets 0.42.2", +] + [[package]] name = "windows-sys" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" dependencies = [ - "windows-targets 0.48.5", + "windows-targets 0.48.1", ] [[package]] @@ -12971,17 +12898,32 @@ dependencies = [ [[package]] name = "windows-targets" -version = "0.48.5" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" dependencies = [ - "windows_aarch64_gnullvm 0.48.5", - "windows_aarch64_msvc 0.48.5", - "windows_i686_gnu 0.48.5", - "windows_i686_msvc 0.48.5", - "windows_x86_64_gnu 0.48.5", - "windows_x86_64_gnullvm 0.48.5", - "windows_x86_64_msvc 0.48.5", + "windows_aarch64_gnullvm 0.42.2", + "windows_aarch64_msvc 0.42.2", + "windows_i686_gnu 0.42.2", + "windows_i686_msvc 0.42.2", + "windows_x86_64_gnu 0.42.2", + "windows_x86_64_gnullvm 0.42.2", + "windows_x86_64_msvc 0.42.2", +] + +[[package]] +name = "windows-targets" +version = "0.48.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" +dependencies = [ + "windows_aarch64_gnullvm 0.48.0", + "windows_aarch64_msvc 0.48.0", + "windows_i686_gnu 0.48.0", + "windows_i686_msvc 0.48.0", + "windows_x86_64_gnu 0.48.0", + "windows_x86_64_gnullvm 0.48.0", + "windows_x86_64_msvc 0.48.0", ] [[package]] @@ -13002,9 +12944,15 @@ dependencies = [ [[package]] name = "windows_aarch64_gnullvm" -version = "0.48.5" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" +checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" [[package]] name = "windows_aarch64_gnullvm" @@ -13014,9 +12962,15 @@ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" [[package]] name = "windows_aarch64_msvc" -version = "0.48.5" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" +checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" [[package]] name = "windows_aarch64_msvc" @@ -13026,9 +12980,15 @@ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" [[package]] name = "windows_i686_gnu" -version = "0.48.5" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" +checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" [[package]] name = "windows_i686_gnu" @@ -13044,9 +13004,15 @@ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" [[package]] name = "windows_i686_msvc" -version = "0.48.5" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" +checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" [[package]] name = "windows_i686_msvc" @@ -13056,9 +13022,15 @@ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" [[package]] name = "windows_x86_64_gnu" -version = "0.48.5" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" +checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" [[package]] name = "windows_x86_64_gnu" @@ -13068,9 +13040,15 @@ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" [[package]] name = "windows_x86_64_gnullvm" -version = "0.48.5" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" +checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" [[package]] name = "windows_x86_64_gnullvm" @@ -13080,9 +13058,15 @@ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" [[package]] name = "windows_x86_64_msvc" -version = "0.48.5" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" +checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" [[package]] name = "windows_x86_64_msvc" @@ -13092,9 +13076,18 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winnow" -version = "0.6.24" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81fac9742fd1ad1bd9643b991319f72dd031016d44b77039a26977eb667141e7" +dependencies = [ + "memchr", +] + +[[package]] +name = "winnow" +version = "0.6.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a" +checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" dependencies = [ "memchr", ] @@ -13117,7 +13110,7 @@ checksum = "fbe1538eea6ea5ddbe5defd0dc82539ad7ba751e1631e9185d24a931f0a5adc8" dependencies = [ "anyhow", "id-arena", - "indexmap 2.7.0", + "indexmap 2.2.6", "log", "semver", "serde", @@ -13198,19 +13191,17 @@ dependencies = [ "nom", "oid-registry", "rusticata-macros", - "thiserror 1.0.69", + "thiserror 1.0.68", "time", ] [[package]] name = "xattr" -version = "1.4.0" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e105d177a3871454f754b33bb0ee637ecaaac997446375fd3e5d43a2ed00c909" +checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" dependencies = [ "libc", - "linux-raw-sys", - "rustix", ] [[package]] @@ -13237,12 +13228,6 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" -[[package]] -name = "yansi" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" - [[package]] name = "yasna" version = "0.5.2" @@ -13254,9 +13239,9 @@ dependencies = [ [[package]] name = "yoke" -version = "0.7.5" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" +checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" dependencies = [ "serde", "stable_deref_trait", @@ -13266,55 +13251,54 @@ dependencies = [ [[package]] name = "yoke-derive" -version = "0.7.5" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" +checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", "synstructure", ] [[package]] name = "zerocopy" -version = "0.7.35" +version = "0.7.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" +checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" dependencies = [ - "byteorder", "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.7.35" +version = "0.7.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" +checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] name = "zerofrom" -version = "0.1.5" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" +checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" dependencies = [ "zerofrom-derive", ] [[package]] name = "zerofrom-derive" -version = "0.1.5" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" +checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", "synstructure", ] @@ -13335,7 +13319,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", ] [[package]] @@ -13357,7 +13341,16 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.87", +] + +[[package]] +name = "zstd" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c" +dependencies = [ + "zstd-safe 6.0.5+zstd.1.5.4", ] [[package]] @@ -13366,23 +13359,33 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9" dependencies = [ - "zstd-safe", + "zstd-safe 7.1.0", +] + +[[package]] +name = "zstd-safe" +version = "6.0.5+zstd.1.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b" +dependencies = [ + "libc", + "zstd-sys", ] [[package]] name = "zstd-safe" -version = "7.2.1" +version = "7.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059" +checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a" dependencies = [ "zstd-sys", ] [[package]] name = "zstd-sys" -version = "2.0.13+zstd.1.5.6" +version = "2.0.10+zstd.1.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" +checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa" dependencies = [ "cc", "pkg-config", diff --git a/Cargo.lock b/Cargo.lock index a4443b28ab6..f70c30ce41c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 4 +version = 3 [[package]] name = "abnf" @@ -39,7 +39,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "bytes", "futures-core", "futures-sink", @@ -62,7 +62,7 @@ dependencies = [ "actix-utils", "ahash 0.8.11", "base64 0.22.1", - "bitflags 2.8.0", + "bitflags 2.6.0", "brotli 6.0.0", "bytes", "bytestring", @@ -96,7 +96,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" dependencies = [ "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -214,7 +214,7 @@ dependencies = [ "actix-router", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -292,9 +292,9 @@ dependencies = [ [[package]] name = "aide" -version = "0.13.5" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5678d2978845ddb4bd736a026f467dd652d831e9e6254b0e41b07f7ee7523309" +checksum = "7b0e3b97a21e41ec5c19bfd9b4fc1f7086be104f8b988681230247ffc91cc8ed" dependencies = [ "axum", "bytes", @@ -375,7 +375,7 @@ dependencies = [ "prometheus", "rand 0.8.5", "rsa", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", ] @@ -403,7 +403,7 @@ dependencies = [ "lazy_static", "prometheus", "serde", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -447,20 +447,19 @@ dependencies = [ [[package]] name = "anstyle-wincon" -version = "3.0.7" +version = "3.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" +checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125" dependencies = [ "anstyle", - "once_cell", "windows-sys 0.59.0", ] [[package]] name = "anyhow" -version = "1.0.95" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" +checksum = "c1fd03a028ef38ba2276dce7e33fcd6369c158a1bca17946c4b1b701891c1ff7" [[package]] name = "arbitrary" @@ -526,7 +525,7 @@ dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -568,7 +567,7 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", "synstructure", ] @@ -580,7 +579,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -692,7 +691,7 @@ version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" dependencies = [ - "event-listener 5.4.0", + "event-listener 5.3.1", "event-listener-strategy", "pin-project-lite", ] @@ -748,7 +747,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -759,13 +758,13 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.85" +version = "0.1.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056" +checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -814,13 +813,13 @@ dependencies = [ [[package]] name = "auto_impl" -version = "1.2.1" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e12882f59de5360c748c4cbf569a042d5fb0eb515f7bea9c1f470b47f6ffbd73" +checksum = "3c87f3f15e7794432337fc718554eaa4dc8f04c9677a950ffe366f20a162ae42" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -1109,7 +1108,7 @@ version = "0.69.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "cexpr", "clang-sys", "itertools 0.12.1", @@ -1120,7 +1119,7 @@ dependencies = [ "regex", "rustc-hash 1.1.0", "shlex", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -1338,9 +1337,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.8.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" +checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "bitvec" @@ -1387,9 +1386,9 @@ dependencies = [ [[package]] name = "borsh" -version = "1.5.4" +version = "1.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fb65153674e51d3a42c8f27b05b9508cea85edfaade8aa46bc8fc18cecdfef3" +checksum = "2506947f73ad44e344215ccd6403ac2ae18cd8e046e581a441bf8d199f257f03" dependencies = [ "borsh-derive", "cfg_aliases", @@ -1397,15 +1396,15 @@ dependencies = [ [[package]] name = "borsh-derive" -version = "1.5.4" +version = "1.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a396e17ad94059c650db3d253bb6e25927f1eb462eede7e7a153bb6e75dce0a7" +checksum = "c2593a3b8b938bd68373196c9832f516be11fa487ef4ae745eb282e6a56a7244" dependencies = [ "once_cell", "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -1452,9 +1451,9 @@ dependencies = [ [[package]] name = "bstr" -version = "1.11.3" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0" +checksum = "786a307d683a5bf92e6fd5fd69a7eb613751668d1d8d67d802846dfe367c62c8" dependencies = [ "memchr", "regex-automata 0.4.9", @@ -1575,9 +1574,9 @@ dependencies = [ [[package]] name = "bytemuck" -version = "1.21.0" +version = "1.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3" +checksum = "8b37c88a63ffd85d15b406896cc343916d7cf57838a847b3a6f2ca5d39a5695a" [[package]] name = "byteorder" @@ -1675,7 +1674,7 @@ dependencies = [ "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -1711,7 +1710,7 @@ version = "0.1.0" dependencies = [ "anyhow", "bytes", - "clap 4.5.26", + "clap 4.5.23", "futures-util", "http 1.2.0", "http-body 1.0.1", @@ -1751,9 +1750,9 @@ dependencies = [ [[package]] name = "candid" -version = "0.10.12" +version = "0.10.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51e129c4051c57daf943586e01ef72faae48b04a8f692d5f646febf17a264c38" +checksum = "d04aa85a9ba2542bded33d1eff0ffb17cb98b1be8117e0a25e1ad8c62bedc881" dependencies = [ "anyhow", "binread", @@ -1781,7 +1780,7 @@ dependencies = [ "lazy_static", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -1889,9 +1888,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] name = "cc" -version = "1.2.9" +version = "1.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8293772165d9345bdaaa39b45b2109591e63fe5e6fbc23c6ff930a048aa310b" +checksum = "c31a0499c1dc64f458ad13872de75c0eb7e3fdb0e67964610c914b034fc5956e" dependencies = [ "jobserver", "libc", @@ -1941,7 +1940,7 @@ dependencies = [ "candid", "certificate_orchestrator_interface", "chacha20poly1305", - "clap 4.5.26", + "clap 4.5.23", "cloudflare 0.12.0 (git+https://github.com/dfinity/cloudflare-rs.git?rev=a6538a036926bd756986c9c0a5de356daef48881)", "flate2", "futures", @@ -1949,7 +1948,7 @@ dependencies = [ "ic-agent", "ic-http-certification", "ic-response-verification", - "ic-utils 0.39.2", + "ic-utils 0.39.0", "idna 1.0.3", "instant-acme", "leb128", @@ -1959,12 +1958,12 @@ dependencies = [ "pem 1.1.1", "prometheus", "rcgen", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde", "serde_cbor", "serde_json", "sha2 0.10.8", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", "tower 0.5.2", "tracing", @@ -1996,7 +1995,7 @@ dependencies = [ "serde", "serde_cbor", "sha2 0.10.8", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -2008,7 +2007,7 @@ dependencies = [ "ic-stable-structures", "serde", "serde_bytes", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -2151,19 +2150,19 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.26" +version = "4.5.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783" +checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84" dependencies = [ "clap_builder", - "clap_derive 4.5.24", + "clap_derive 4.5.18", ] [[package]] name = "clap_builder" -version = "4.5.26" +version = "4.5.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121" +checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838" dependencies = [ "anstream", "anstyle", @@ -2186,14 +2185,14 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.24" +version = "4.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c" +checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -2369,7 +2368,7 @@ name = "config" version = "1.0.0" dependencies = [ "anyhow", - "clap 4.5.26", + "clap 4.5.23", "config_types", "ic-types", "macaddr", @@ -2396,7 +2395,7 @@ dependencies = [ "serde_json", "serde_with 1.14.0", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.8", "url", ] @@ -2505,7 +2504,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "registry-canister", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde_json", "slog", "tokio", @@ -2692,18 +2691,18 @@ dependencies = [ [[package]] name = "cranelift-bforest" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88c1d02b72b6c411c0a2e92b25ed791ad5d071184193c08a34aa0fdcdf000b72" +checksum = "ac89549be94911dd0e839b4a7db99e9ed29c17517e1c026f61066884c168aa3c" dependencies = [ "cranelift-entity", ] [[package]] name = "cranelift-bitset" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "720b93bd86ebbb23ebfb2db1ed44d54b2ecbdbb2d034d485bc64aa605ee787ab" +checksum = "b9bd49369f76c77e34e641af85d0956869237832c118964d08bf5f51f210875a" dependencies = [ "serde", "serde_derive", @@ -2711,9 +2710,9 @@ dependencies = [ [[package]] name = "cranelift-codegen" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aed3d2d9914d30b460eedd7fd507720203023997bef71452ce84873f9c93537c" +checksum = "fd96ce9cf8efebd7f5ab8ced5a0ce44250280bbae9f593d74a6d7effc3582a35" dependencies = [ "bumpalo", "cranelift-bforest", @@ -2735,33 +2734,33 @@ dependencies = [ [[package]] name = "cranelift-codegen-meta" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "888c188d32263ec9e048873ff0b68c700933600d553f4412417916828be25f8e" +checksum = "5a68e358827afe4bfb6239fcbf6fbd5ac56206ece8a99c8f5f9bbd518773281a" dependencies = [ "cranelift-codegen-shared", ] [[package]] name = "cranelift-codegen-shared" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ddd5f4114d04ce7e073dd74e2ad16541fc61970726fcc8b2d5644a154ee4127" +checksum = "e184c9767afbe73d50c55ec29abcf4c32f9baf0d9d22b86d58c4d55e06dee181" [[package]] name = "cranelift-control" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92cc4c98d6a4256a1600d93ccd3536f3e77da9b4ca2c279de786ac22876e67d6" +checksum = "5cc7664f2a66f053e33f149e952bb5971d138e3af637f5097727ed6dc0ed95dd" dependencies = [ "arbitrary", ] [[package]] name = "cranelift-entity" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "760af4b5e051b5f82097a27274b917e3751736369fa73660513488248d27f23d" +checksum = "118597e3a9cf86c3556fa579a7a23b955fa18231651a52a77a2475d305a9cf84" dependencies = [ "cranelift-bitset", "serde", @@ -2770,9 +2769,9 @@ dependencies = [ [[package]] name = "cranelift-frontend" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0bf77ec0f470621655ec7539860b5c620d4f91326654ab21b075b83900f8831" +checksum = "7638ea1efb069a0aa18d8ee67401b6b0d19f6bfe5de5e9ede348bfc80bb0d8c7" dependencies = [ "cranelift-codegen", "log", @@ -2782,15 +2781,15 @@ dependencies = [ [[package]] name = "cranelift-isle" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b665d0a6932c421620be184f9fc7f7adaf1b0bc2fa77bb7ac5177c49abf645b" +checksum = "15c53e1152a0b01c4ed2b1e0535602b8e86458777dd9d18b28732b16325c7dc0" [[package]] name = "cranelift-native" -version = "0.115.1" +version = "0.115.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb2e75d1bd43dfec10924798f15e6474f1dbf63b0024506551aa19394dbe72ab" +checksum = "7b7d8f895444fa52dd7bdd0bed11bf007a7fb43af65a6deac8fcc4094c6372f7" dependencies = [ "cranelift-codegen", "libc", @@ -2815,7 +2814,7 @@ dependencies = [ "anes", "cast", "ciborium", - "clap 4.5.26", + "clap 4.5.23", "criterion-plot", "futures", "is-terminal", @@ -2914,7 +2913,7 @@ version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "crossterm_winapi", "libc", "mio 0.8.11", @@ -2971,7 +2970,7 @@ dependencies = [ "cssparser-macros", "dtoa-short", "itoa", - "phf 0.11.3", + "phf 0.11.2", "smallvec", ] @@ -2982,7 +2981,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" dependencies = [ "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3042,7 +3041,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3179,7 +3178,7 @@ dependencies = [ "proc-macro2", "quote", "strsim 0.11.1", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3201,7 +3200,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core 0.20.10", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3239,9 +3238,9 @@ dependencies = [ [[package]] name = "data-encoding" -version = "2.7.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e60eed09d8c01d3cee5b7d30acb059b76614c918fa0f992e0dd6eeb10daad6f" +checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" [[package]] name = "debugid" @@ -3294,7 +3293,7 @@ checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3315,7 +3314,7 @@ checksum = "2cdc8d50f426189eef89dac62fabfa0abb27d5cc008f25bf4156a0203325becc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3326,7 +3325,7 @@ checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3339,7 +3338,7 @@ dependencies = [ "proc-macro2", "quote", "rustc_version", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3359,7 +3358,7 @@ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3367,11 +3366,11 @@ name = "deterministic_ips" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.26", + "clap 4.5.23", "config_types", "ic-crypto-sha2", "macaddr", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -3379,7 +3378,7 @@ name = "dflate" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.26", + "clap 4.5.23", "libc", "tar", ] @@ -3494,7 +3493,7 @@ name = "diroid" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.26", + "clap 4.5.23", "walkdir", ] @@ -3527,7 +3526,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3772,7 +3771,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3785,7 +3784,7 @@ dependencies = [ "num-traits", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3835,7 +3834,7 @@ checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3988,9 +3987,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "event-listener" -version = "5.4.0" +version = "5.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" +checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" dependencies = [ "concurrent-queue", "parking", @@ -4003,7 +4002,7 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2" dependencies = [ - "event-listener 5.4.0", + "event-listener 5.3.1", "pin-project-lite", ] @@ -4018,7 +4017,7 @@ dependencies = [ "ic-cdk 0.16.0", "mockall", "serde", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", ] @@ -4101,11 +4100,11 @@ dependencies = [ "ic-types", "ic-types-test-utils", "ic-universal-canister", - "ic-utils 0.39.2", + "ic-utils 0.39.0", "lazy_static", "rand 0.8.5", "rand_chacha 0.3.1", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde_cbor", "slog", "tokio", @@ -4389,9 +4388,9 @@ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" [[package]] name = "futures-lite" -version = "2.6.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" +checksum = "cef40d21ae2c515b51041df9ed313ed21e572df340ea58a922a0aefe7e8891a1" dependencies = [ "fastrand", "futures-core", @@ -4408,7 +4407,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -4418,7 +4417,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8f2f12607f92c69b12ed746fabf9ca4f5c482cba46679c1a75b874ed7c26adb" dependencies = [ "futures-io", - "rustls 0.23.21", + "rustls 0.23.20", "rustls-pki-types", ] @@ -4473,19 +4472,6 @@ version = "0.3.55" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" -[[package]] -name = "generator" -version = "0.8.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc6bd114ceda131d3b1d665eba35788690ad37f5916457286b32ab6fd3c438dd" -dependencies = [ - "cfg-if 1.0.0", - "libc", - "log", - "rustversion", - "windows", -] - [[package]] name = "generic-array" version = "0.14.7" @@ -4565,9 +4551,9 @@ dependencies = [ [[package]] name = "glob" -version = "0.3.2" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" +checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" [[package]] name = "governor" @@ -4605,7 +4591,7 @@ name = "guestos_tool" version = "1.0.0" dependencies = [ "anyhow", - "clap 4.5.26", + "clap 4.5.23", "config", "indoc", "itertools 0.12.1", @@ -4942,7 +4928,7 @@ name = "hostos_tool" version = "1.0.0" dependencies = [ "anyhow", - "clap 4.5.26", + "clap 4.5.23", "config", "config_types", "deterministic_ips", @@ -5042,10 +5028,10 @@ name = "httpbin-rs" version = "0.9.0" dependencies = [ "axum", - "clap 4.5.26", + "clap 4.5.23", "hyper 1.5.2", "hyper-util", - "rustls 0.23.21", + "rustls 0.23.20", "rustls-pemfile 2.2.0", "serde_json", "tokio", @@ -5174,7 +5160,7 @@ dependencies = [ "hyper 1.5.2", "hyper-util", "log", - "rustls 0.23.21", + "rustls 0.23.20", "rustls-native-certs 0.8.1", "rustls-pki-types", "tokio", @@ -5241,7 +5227,7 @@ dependencies = [ "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "windows-core 0.52.0", + "windows-core", ] [[package]] @@ -5302,7 +5288,7 @@ dependencies = [ "base64 0.13.1", "candid", "chrono", - "clap 4.5.26", + "clap 4.5.23", "cycles-minting-canister", "futures", "hex", @@ -5402,7 +5388,7 @@ dependencies = [ "pkcs8", "rand 0.8.5", "rangemap", - "reqwest 0.12.12", + "reqwest 0.12.9", "ring 0.17.8", "sec1", "serde", @@ -5412,7 +5398,7 @@ dependencies = [ "sha2 0.10.8", "simple_asn1", "stop-token", - "thiserror 2.0.11", + "thiserror 2.0.8", "time", "tokio", "tower-service", @@ -5448,7 +5434,7 @@ dependencies = [ "prost 0.13.4", "rand 0.8.5", "slog", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", "tower 0.5.2", "tracing", @@ -5479,7 +5465,7 @@ version = "0.9.0" dependencies = [ "bincode", "byteorder", - "clap 4.5.26", + "clap 4.5.23", "criterion", "ic-config", "ic-crypto-test-utils-canister-threshold-sigs", @@ -5522,7 +5508,7 @@ version = "0.9.0" dependencies = [ "anyhow", "chrono", - "clap 4.5.26", + "clap 4.5.23", "ic-config", "ic-crypto-utils-threshold-sig-der", "ic-logger", @@ -5534,7 +5520,7 @@ dependencies = [ "ic-test-utilities-tmpdir", "ic-types", "rand 0.8.5", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde", "serde_json", "slog", @@ -5616,8 +5602,8 @@ dependencies = [ "base64 0.22.1", "bytes", "chacha20poly1305", - "clap 4.5.26", - "clap_derive 4.5.24", + "clap 4.5.23", + "clap_derive 4.5.18", "cloudflare 0.12.0 (git+https://github.com/cloudflare/cloudflare-rs.git?rev=f14720e42184ee176a97676e85ef2d2d85bc3aae)", "derive-new", "fqdn 0.4.4", @@ -5639,8 +5625,8 @@ dependencies = [ "prost-types 0.13.4", "rand 0.8.5", "rcgen", - "reqwest 0.12.12", - "rustls 0.23.21", + "reqwest 0.12.9", + "rustls 0.23.20", "rustls-acme", "rustls-pemfile 2.2.0", "rustls-platform-verifier", @@ -5651,7 +5637,7 @@ dependencies = [ "strum", "strum_macros", "systemstat", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", "tokio-io-timeout", "tokio-rustls 0.26.1", @@ -5680,7 +5666,7 @@ dependencies = [ "axum-extra", "bytes", "candid", - "clap 4.5.26", + "clap 4.5.23", "criterion", "dashmap 6.1.0", "ethnum", @@ -5732,8 +5718,8 @@ dependencies = [ "ratelimit", "rcgen", "regex", - "reqwest 0.12.12", - "rustls 0.23.21", + "reqwest 0.12.9", + "rustls 0.23.20", "rustls-pemfile 2.2.0", "serde", "serde_bytes", @@ -5745,7 +5731,7 @@ dependencies = [ "slog", "strum", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.8", "tikv-jemalloc-ctl", "tikv-jemallocator", "tokio", @@ -5782,7 +5768,7 @@ dependencies = [ "pem 1.1.1", "rand 0.8.5", "rand_chacha 0.3.1", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde_json", "slog", "tokio", @@ -5799,7 +5785,7 @@ dependencies = [ "ic-crypto-tree-hash", "ic-system-test-driver", "ic-types", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde", "serde_cbor", "slog", @@ -5823,7 +5809,7 @@ dependencies = [ "ic-system-test-driver", "prost 0.13.4", "rand 0.8.5", - "reqwest 0.12.12", + "reqwest 0.12.9", "slog", "tokio", ] @@ -5844,7 +5830,7 @@ dependencies = [ "ic-registry-subnet-type", "ic-system-test-driver", "ic-types", - "ic-utils 0.39.2", + "ic-utils 0.39.0", "slog", "url", ] @@ -5856,7 +5842,7 @@ dependencies = [ "bitcoin 0.28.2", "bitcoincore-rpc", "bitcoind", - "clap 4.5.26", + "clap 4.5.23", "criterion", "futures", "hashlink", @@ -5885,7 +5871,7 @@ dependencies = [ "slog", "slog-async", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", "tokio-socks", "tonic", @@ -5991,7 +5977,7 @@ dependencies = [ "proptest", "prost 0.13.4", "slog", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -6065,7 +6051,7 @@ dependencies = [ "prost 0.13.4", "rand 0.8.5", "rand_chacha 0.3.1", - "rustls 0.23.21", + "rustls 0.23.20", "serde", "serde_cbor", "tokio", @@ -6191,7 +6177,7 @@ dependencies = [ "serde_bytes", "serde_cbor", "sha2 0.10.8", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -6258,7 +6244,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "scoped_threadpool", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -6389,7 +6375,7 @@ dependencies = [ "quote", "serde", "serde_tokenstream 0.2.2", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -6403,7 +6389,7 @@ dependencies = [ "quote", "serde", "serde_tokenstream 0.2.2", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -6658,7 +6644,7 @@ dependencies = [ "strum", "strum_macros", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.8", "thousands", "time", "tokio", @@ -6907,7 +6893,7 @@ dependencies = [ "assert_matches", "async-trait", "bincode", - "clap 4.5.26", + "clap 4.5.23", "criterion", "hex", "ic-adapter-metrics-server", @@ -6986,7 +6972,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "rsa", - "rustls 0.23.21", + "rustls 0.23.20", "serde", "sha2 0.10.8", "simple_asn1", @@ -7030,7 +7016,7 @@ dependencies = [ "pem 1.1.1", "rand 0.8.5", "rand_chacha 0.3.1", - "thiserror 2.0.11", + "thiserror 2.0.8", "wycheproof", "zeroize", ] @@ -7336,7 +7322,7 @@ dependencies = [ "stubborn-io", "tarpc", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.8", "time", "tokio", "tokio-serde", @@ -7578,7 +7564,7 @@ dependencies = [ "serde_cbor", "strum", "strum_macros", - "thiserror 2.0.11", + "thiserror 2.0.8", "zeroize", ] @@ -7747,7 +7733,7 @@ dependencies = [ "ic-types-test-utils", "rand 0.8.5", "rand_chacha 0.3.1", - "rustls 0.23.21", + "rustls 0.23.20", "tempfile", "tokio", ] @@ -7926,7 +7912,7 @@ version = "0.9.0" dependencies = [ "ic-types", "mockall", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -7947,7 +7933,7 @@ dependencies = [ "ic-types", "pkcs8", "rand 0.8.5", - "rustls 0.23.21", + "rustls 0.23.20", "signature", "time", "tokio", @@ -7983,9 +7969,9 @@ dependencies = [ "ic-types", "json5", "maplit", - "rustls 0.23.21", + "rustls 0.23.20", "serde", - "thiserror 2.0.11", + "thiserror 2.0.8", "x509-parser", ] @@ -7996,7 +7982,7 @@ dependencies = [ "ic-base-types", "ic-crypto-tls-interfaces", "mockall", - "rustls 0.23.21", + "rustls 0.23.20", ] [[package]] @@ -8017,7 +8003,7 @@ dependencies = [ "serde", "serde_bytes", "serde_cbor", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -8029,7 +8015,7 @@ dependencies = [ "ic-crypto-tree-hash", "proptest", "rand 0.8.5", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -8096,7 +8082,7 @@ name = "ic-crypto-utils-tls" version = "0.9.0" dependencies = [ "ic-base-types", - "thiserror 2.0.11", + "thiserror 2.0.8", "x509-parser", ] @@ -8111,7 +8097,7 @@ dependencies = [ "ic-registry-nns-data-provider", "ic-types", "prost 0.13.4", - "reqwest 0.12.12", + "reqwest 0.12.9", "tokio", ] @@ -8181,7 +8167,7 @@ dependencies = [ name = "ic-drun" version = "0.9.0" dependencies = [ - "clap 4.5.26", + "clap 4.5.23", "futures", "hex", "ic-canister-sandbox-backend-lib", @@ -8226,7 +8212,7 @@ dependencies = [ "bincode", "candid", "canister-test", - "clap 4.5.26", + "clap 4.5.23", "criterion", "embedders_bench", "ic-base-types", @@ -8404,7 +8390,7 @@ dependencies = [ "anyhow", "assert_cmd", "assert_matches", - "clap 4.5.26", + "clap 4.5.23", "ic-crypto-test-utils-reproducible-rng", "ic-sys", "maplit", @@ -8458,9 +8444,9 @@ dependencies = [ "ic-metrics", "ic-test-utilities-logger", "prometheus", - "reqwest 0.12.12", + "reqwest 0.12.9", "slog", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", "tokio-io-timeout", "tower 0.5.2", @@ -8523,7 +8509,7 @@ dependencies = [ "ic-tracing", "ic-types", "ic-validator", - "inferno 0.12.1", + "inferno 0.12.0", "maplit", "mockall", "pretty_assertions", @@ -8531,9 +8517,9 @@ dependencies = [ "proptest", "prost 0.13.4", "rand 0.8.5", - "reqwest 0.12.12", + "reqwest 0.12.9", "rstest", - "rustls 0.23.21", + "rustls 0.23.20", "serde", "serde_bytes", "serde_cbor", @@ -8580,7 +8566,7 @@ dependencies = [ "maplit", "prometheus", "prost 0.13.4", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde", "serde_json", "slog", @@ -8605,7 +8591,7 @@ dependencies = [ "ic-agent", "ic-http-certification", "ic-response-verification", - "ic-utils 0.39.2", + "ic-utils 0.39.0", "thiserror 1.0.69", ] @@ -8621,7 +8607,7 @@ dependencies = [ "ic-logger", "ic-test-utilities-in-memory-logger", "mockito", - "reqwest 0.12.12", + "reqwest 0.12.9", "slog", "tar", "tempfile", @@ -8636,7 +8622,7 @@ dependencies = [ "async-stream", "byte-unit", "bytes", - "clap 4.5.26", + "clap 4.5.23", "futures", "http 1.2.0", "http-body-util", @@ -8654,13 +8640,13 @@ dependencies = [ "prometheus", "rand 0.8.5", "rstest", - "rustls 0.23.21", + "rustls 0.23.20", "rustls-pemfile 2.2.0", "serde", "serde_json", "slog", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", "tokio-rustls 0.26.1", "tonic", @@ -8794,7 +8780,7 @@ dependencies = [ "icrc-ledger-types", "num-bigint 0.4.6", "pocket-ic", - "reqwest 0.12.12", + "reqwest 0.12.9", "rosetta-core", "serde", "tempfile", @@ -8811,7 +8797,7 @@ dependencies = [ "ic-rosetta-test-utils", "icp-ledger", "pocket-ic", - "reqwest 0.12.12", + "reqwest 0.12.9", "tempfile", "tokio", ] @@ -8824,7 +8810,7 @@ dependencies = [ "axum", "candid", "ciborium", - "clap 4.5.26", + "clap 4.5.23", "futures", "hex", "ic-agent", @@ -8844,7 +8830,7 @@ dependencies = [ "ic-rosetta-test-utils", "ic-sys", "ic-test-utilities-load-wasm", - "ic-utils 0.39.2", + "ic-utils 0.39.0", "icrc-ledger-agent", "icrc-ledger-types", "indicatif", @@ -8855,7 +8841,7 @@ dependencies = [ "pocket-ic", "proptest", "rand 0.8.5", - "reqwest 0.12.12", + "reqwest 0.12.9", "rolling-file", "rosetta-core", "rusqlite", @@ -8881,7 +8867,7 @@ version = "0.1.0" dependencies = [ "anyhow", "candid", - "clap 4.5.26", + "clap 4.5.23", "hex", "ic-agent", "ic-crypto-ed25519", @@ -8892,7 +8878,7 @@ dependencies = [ "icrc-ledger-types", "num-bigint 0.4.6", "pocket-ic", - "reqwest 0.12.12", + "reqwest 0.12.9", "rosetta-core", "serde", "tokio", @@ -8907,7 +8893,7 @@ dependencies = [ "candid", "icrc-ledger-types", "pocket-ic", - "reqwest 0.12.12", + "reqwest 0.12.9", "tempfile", "tokio", ] @@ -8945,7 +8931,7 @@ dependencies = [ "rand 0.8.5", "serde", "serde_bytes", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -9185,7 +9171,7 @@ dependencies = [ "serde", "strum", "strum_macros", - "thiserror 2.0.11", + "thiserror 2.0.8", "tower 0.5.2", ] @@ -9194,7 +9180,7 @@ name = "ic-interfaces-adapter-client" version = "0.9.0" dependencies = [ "strum_macros", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -9249,7 +9235,7 @@ dependencies = [ "ic-crypto-tree-hash", "ic-types", "phantom_newtype", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -9284,7 +9270,7 @@ dependencies = [ "icp-ledger", "on_wire", "proptest", - "reqwest 0.12.12", + "reqwest 0.12.9", "rusqlite", "serde", "tokio", @@ -9509,7 +9495,7 @@ dependencies = [ "ic-types", "ic_consensus_system_test_utils", "icp-ledger", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde", "slog", "url", @@ -9523,11 +9509,11 @@ dependencies = [ "assert_matches", "candid", "candid_parser", - "clap 4.5.26", + "clap 4.5.23", "futures", "hex", "maplit", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde", "serde_json", "sha2 0.10.8", @@ -9678,7 +9664,7 @@ name = "ic-metrics-tool" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.26", + "clap 4.5.23", ] [[package]] @@ -9700,7 +9686,7 @@ dependencies = [ "pocket-ic", "serde", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", ] @@ -10461,7 +10447,7 @@ version = "0.9.0" dependencies = [ "candid", "canister-test", - "clap 4.5.26", + "clap 4.5.23", "ic-base-types", "ic-canister-client", "ic-interfaces-registry", @@ -10485,7 +10471,7 @@ dependencies = [ name = "ic-nns-inspector" version = "0.1.0" dependencies = [ - "clap 4.5.26", + "clap 4.5.23", "csv", "hex", "ic-base-types", @@ -10720,7 +10706,7 @@ dependencies = [ "quinn", "quinn-udp", "rcgen", - "rustls 0.23.21", + "rustls 0.23.20", "serde", "slog", "tempfile", @@ -10758,7 +10744,7 @@ dependencies = [ "pprof", "prost 0.12.6", "regex", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", ] @@ -10769,7 +10755,7 @@ dependencies = [ "anyhow", "assert_matches", "base64 0.13.1", - "clap 4.5.26", + "clap 4.5.23", "fs_extra", "ic-config", "ic-crypto-node-key-generation", @@ -10800,12 +10786,12 @@ dependencies = [ "pretty_assertions", "prost 0.13.4", "rand 0.8.5", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde", "serde_json", "slog", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.8", "url", "x509-cert", ] @@ -10885,11 +10871,11 @@ dependencies = [ "prost 0.13.4", "quinn", "rstest", - "rustls 0.23.21", + "rustls 0.23.20", "slog", "socket2 0.5.8", "static_assertions", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", "tokio-metrics", "tokio-util", @@ -10917,7 +10903,7 @@ name = "ic-recovery" version = "0.9.0" dependencies = [ "base64 0.13.1", - "clap 4.5.26", + "clap 4.5.23", "futures", "hex", "ic-artifact-pool", @@ -10947,7 +10933,7 @@ dependencies = [ "ic-test-utilities-types", "ic-types", "prost 0.13.4", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde", "serde_cbor", "serde_json", @@ -10967,7 +10953,7 @@ version = "0.9.0" dependencies = [ "anyhow", "base64 0.13.1", - "clap 4.5.26", + "clap 4.5.23", "ic-base-types", "ic-crypto-sha2", "ic-crypto-utils-threshold-sig-der", @@ -10985,7 +10971,7 @@ dependencies = [ "serde", "serde_json", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", "url", ] @@ -10997,7 +10983,7 @@ dependencies = [ "candid", "ic-base-types", "serde", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -11072,7 +11058,7 @@ dependencies = [ "ic-registry-subnet-features", "ic-types", "serde_cbor", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -11121,7 +11107,7 @@ dependencies = [ "ic-registry-transport", "ic-types", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", "url", ] @@ -11194,7 +11180,7 @@ dependencies = [ "ic-registry-transport", "ic-sys", "ic-types", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -11209,7 +11195,7 @@ dependencies = [ name = "ic-registry-replicator" version = "0.9.0" dependencies = [ - "clap 4.5.26", + "clap 4.5.23", "ic-config", "ic-crypto-utils-threshold-sig-der", "ic-http-endpoints-metrics", @@ -11294,7 +11280,7 @@ name = "ic-replay" version = "0.9.0" dependencies = [ "candid", - "clap 4.5.26", + "clap 4.5.23", "hex", "ic-artifact-pool", "ic-canister-client", @@ -11348,7 +11334,7 @@ version = "0.9.0" dependencies = [ "assert_cmd", "canister-test", - "clap 4.5.26", + "clap 4.5.23", "criterion", "hex", "ic-artifact-pool", @@ -11604,7 +11590,7 @@ dependencies = [ "async-trait", "base64 0.13.1", "candid", - "clap 4.5.26", + "clap 4.5.23", "dfn_candid", "dfn_protobuf", "futures", @@ -11651,7 +11637,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "registry-canister", - "reqwest 0.12.12", + "reqwest 0.12.9", "rolling-file", "rosetta-core", "rusqlite", @@ -11684,7 +11670,7 @@ dependencies = [ "icp-ledger", "nix 0.24.3", "rand 0.8.5", - "reqwest 0.12.12", + "reqwest 0.12.9", "rosetta-core", "serde", "serde_bytes", @@ -11765,7 +11751,7 @@ dependencies = [ "serde", "serde_json", "textplots", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", ] @@ -11776,7 +11762,7 @@ dependencies = [ "anyhow", "base64 0.13.1", "candid", - "clap 4.5.26", + "clap 4.5.23", "futures", "hex", "ic-agent", @@ -11802,7 +11788,7 @@ dependencies = [ "serde_json", "serde_yaml", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", ] @@ -11818,7 +11804,7 @@ dependencies = [ "canbench-rs", "candid", "candid_parser", - "clap 4.5.26", + "clap 4.5.23", "comparable", "futures", "hex", @@ -11893,7 +11879,7 @@ version = "0.9.0" dependencies = [ "bytes", "candid", - "clap 4.5.26", + "clap 4.5.23", "comparable", "ic-base-types", "ic-nervous-system-proto", @@ -12308,7 +12294,7 @@ name = "ic-starter" version = "0.9.0" dependencies = [ "anyhow", - "clap 4.5.26", + "clap 4.5.23", "ic-config", "ic-logger", "ic-management-canister-types", @@ -12360,7 +12346,7 @@ version = "0.9.0" dependencies = [ "candid", "ciborium", - "clap 4.5.26", + "clap 4.5.23", "hex", "ic-artifact-pool", "ic-base-types", @@ -12520,7 +12506,7 @@ dependencies = [ "prost 0.13.4", "rand 0.8.5", "slog", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", "tokio-metrics", "tokio-util", @@ -12532,7 +12518,7 @@ dependencies = [ name = "ic-state-tool" version = "0.9.0" dependencies = [ - "clap 4.5.26", + "clap 4.5.23", "hex", "ic-config", "ic-logger", @@ -12556,7 +12542,7 @@ dependencies = [ name = "ic-subnet-splitting" version = "0.9.0" dependencies = [ - "clap 4.5.26", + "clap 4.5.23", "hex", "ic-agent", "ic-base-types", @@ -12595,7 +12581,7 @@ dependencies = [ "prost 0.13.4", "rand 0.8.5", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", "wsl", ] @@ -12652,7 +12638,7 @@ dependencies = [ "candid", "canister-test", "chrono", - "clap 4.5.26", + "clap 4.5.23", "config_types", "crossbeam-channel", "cycles-minting-canister", @@ -12730,7 +12716,7 @@ dependencies = [ "ic-types", "ic-types-test-utils", "ic-universal-canister", - "ic-utils 0.39.2", + "ic-utils 0.39.0", "ic-wasm-types", "icp-ledger", "icrc-ledger-types", @@ -12758,7 +12744,7 @@ dependencies = [ "rcgen", "regex", "registry-canister", - "reqwest 0.12.12", + "reqwest 0.12.9", "ring 0.17.8", "rosetta-core", "rsa", @@ -12776,7 +12762,7 @@ dependencies = [ "strum", "strum_macros", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.8", "time", "tokio", "tokio-util", @@ -13165,7 +13151,7 @@ dependencies = [ "ic_consensus_system_test_utils", "ic_consensus_threshold_sig_system_test_utils", "icrc-ledger-types", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde_json", "slog", ] @@ -13218,7 +13204,7 @@ dependencies = [ "serde_cbor", "serde_repr", "sha2 0.10.8", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -13265,7 +13251,7 @@ dependencies = [ "serde_with 1.14.0", "strum", "strum_macros", - "thiserror 2.0.11", + "thiserror 2.0.8", "thousands", ] @@ -13306,9 +13292,9 @@ dependencies = [ [[package]] name = "ic-utils" -version = "0.39.2" +version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1fb9c35ef4976a71d37f3ebf73ee43bb52b360be60d91d3a77f74fbc875dda4" +checksum = "bb1da4a68c45146018b8496c157ad94126b9c202ab4400c6c0a9030c1ef0f0ba" dependencies = [ "async-trait", "candid", @@ -13321,7 +13307,7 @@ dependencies = [ "sha2 0.10.8", "strum", "strum_macros", - "thiserror 2.0.11", + "thiserror 1.0.69", "time", "tokio", ] @@ -13385,7 +13371,7 @@ dependencies = [ "ic-types", "mockall", "rand 0.8.5", - "thiserror 2.0.11", + "thiserror 2.0.8", ] [[package]] @@ -13517,7 +13503,7 @@ checksum = "19fabaeecfe37f24b433c62489242fc54503d98d4cc8d0f9ef7544dfdfc0ddcb" dependencies = [ "anyhow", "candid", - "clap 4.5.26", + "clap 4.5.23", "libflate", "rustc-demangle", "serde", @@ -13557,7 +13543,7 @@ dependencies = [ "byte-unit", "candid", "chrono", - "clap 4.5.26", + "clap 4.5.23", "console 0.11.3", "futures", "hex", @@ -13649,10 +13635,10 @@ dependencies = [ "prometheus", "proptest", "rand 0.8.5", - "reqwest 0.12.12", + "reqwest 0.12.9", "slog", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", "url", ] @@ -13802,7 +13788,7 @@ dependencies = [ "prost 0.13.4", "rand 0.8.5", "registry-canister", - "reqwest 0.12.12", + "reqwest 0.12.9", "rsa", "serde_json", "slog", @@ -13841,7 +13827,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "registry-canister", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde_cbor", "serde_json", "slog", @@ -13899,7 +13885,7 @@ dependencies = [ "ic_consensus_system_test_utils", "k256", "rand 0.8.5", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde_bytes", "serde_cbor", "slog", @@ -13924,7 +13910,7 @@ dependencies = [ name = "icp-config" version = "0.9.0" dependencies = [ - "clap 4.5.26", + "clap 4.5.23", "eyre", "ic-config", "ic-replicated-state", @@ -14214,7 +14200,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -14276,9 +14262,9 @@ dependencies = [ [[package]] name = "impl-more" -version = "0.1.9" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" +checksum = "aae21c3177a27788957044151cc2800043d127acaa460a47ebb9b84dfa2c6aa0" [[package]] name = "impl-rlp" @@ -14306,7 +14292,7 @@ checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -14376,12 +14362,12 @@ dependencies = [ [[package]] name = "inferno" -version = "0.12.1" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "692eda1cc790750b9f5a5e3921ef9c117fd5498b97cfacbc910693e5b29002dc" +checksum = "75a5d75fee4d36809e6b021e4b96b686e763d365ffdb03af2bd00786353f84fe" dependencies = [ "ahash 0.8.11", - "clap 4.5.26", + "clap 4.5.23", "crossbeam-channel", "crossbeam-utils", "dashmap 6.1.0", @@ -14391,7 +14377,7 @@ dependencies = [ "log", "num-format", "once_cell", - "quick-xml 0.37.2", + "quick-xml 0.37.1", "rgb", "str_stack", ] @@ -14401,7 +14387,7 @@ name = "inject-files" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.26", + "clap 4.5.23", "partition_tools", "tempfile", "tokio", @@ -14418,13 +14404,13 @@ dependencies = [ [[package]] name = "insta" -version = "1.42.0" +version = "1.41.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6513e4067e16e69ed1db5ab56048ed65db32d10ba5fc1217f5393f8f17d8b5a5" +checksum = "7e9ffc4d4892617c50a928c52b2961cb5174b6fc6ebf252b2fac9d21955c48b8" dependencies = [ "console 0.15.10", + "lazy_static", "linked-hash-map", - "once_cell", "similar", ] @@ -14598,9 +14584,9 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.77" +version = "0.3.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" +checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7" dependencies = [ "once_cell", "wasm-bindgen", @@ -14735,7 +14721,7 @@ dependencies = [ "k8s-openapi", "kube-core", "pem 3.0.4", - "rustls 0.23.21", + "rustls 0.23.20", "rustls-pemfile 2.2.0", "secrecy", "serde", @@ -14851,12 +14837,12 @@ checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" name = "launch-single-vm" version = "0.1.0" dependencies = [ - "clap 4.5.26", + "clap 4.5.23", "ic-prep", "ic-registry-subnet-type", "ic-system-test-driver", "ic-types", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde", "slog", "slog-async", @@ -15090,7 +15076,7 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "libc", "redox_syscall 0.5.8", ] @@ -15148,9 +15134,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.21" +version = "1.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df9b68e50e6e0b26f672573834882eb57759f6db9b3be2ea3c35c91188bb4eaa" +checksum = "d2d16453e800a8cf6dd2fc3eb4bc99b786a9b90c663b8559a5b1a041bf89e472" dependencies = [ "cc", "libc", @@ -15182,9 +15168,9 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linux-raw-sys" -version = "0.4.15" +version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" +checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" [[package]] name = "linux_kernel_command_line" @@ -15276,9 +15262,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.25" +version = "0.4.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f" +checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" [[package]] name = "logos" @@ -15309,7 +15295,7 @@ dependencies = [ "proc-macro2", "quote", "regex-syntax 0.6.29", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -15335,19 +15321,6 @@ dependencies = [ "logos-codegen", ] -[[package]] -name = "loom" -version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" -dependencies = [ - "cfg-if 1.0.0", - "generator", - "scoped-tls", - "tracing", - "tracing-subscriber", -] - [[package]] name = "lru" version = "0.7.8" @@ -15572,7 +15545,7 @@ dependencies = [ "ic-registry-subnet-type", "ic-system-test-driver", "ic-types", - "ic-utils 0.39.2", + "ic-utils 0.39.0", "itertools 0.12.1", "rand 0.8.5", "rand_chacha 0.3.1", @@ -15642,9 +15615,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.8.3" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924" +checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394" dependencies = [ "adler2", ] @@ -15702,7 +15675,7 @@ dependencies = [ "cfg-if 1.0.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -15731,23 +15704,25 @@ dependencies = [ [[package]] name = "moka" -version = "0.12.10" +version = "0.12.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" +checksum = "32cf62eb4dd975d2dde76432fb1075c49e3ee2331cf36f1f8fd4b66550d32b6f" dependencies = [ "async-lock", + "async-trait", "crossbeam-channel", "crossbeam-epoch", "crossbeam-utils", - "event-listener 5.4.0", + "event-listener 5.3.1", "futures-util", - "loom", + "once_cell", "parking_lot 0.12.3", - "portable-atomic", + "quanta", "rustc_version", "smallvec", "tagptr", "thiserror 1.0.69", + "triomphe", "uuid", ] @@ -15800,9 +15775,9 @@ checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" [[package]] name = "neli" -version = "0.6.5" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93062a0dce6da2517ea35f301dfc88184ce18d3601ec786a727a87bf535deca9" +checksum = "1100229e06604150b3becd61a4965d5c70f3be1759544ea7274166f4be41ef43" dependencies = [ "byteorder", "libc", @@ -15812,9 +15787,9 @@ dependencies = [ [[package]] name = "neli-proc-macros" -version = "0.1.4" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c8034b7fbb6f9455b2a96c19e6edf8dc9fc34c70449938d8ee3b4df363f61fe" +checksum = "c168194d373b1e134786274020dae7fc5513d565ea2ebb9bc9ff17ffb69106d4" dependencies = [ "either", "proc-macro2", @@ -15884,12 +15859,12 @@ dependencies = [ "ic-test-utilities", "ic-test-utilities-types", "ic-types", - "ic-utils 0.39.2", + "ic-utils 0.39.0", "proxy_canister", "rand 0.8.5", "rand_chacha 0.3.1", "registry-canister", - "reqwest 0.12.12", + "reqwest 0.12.9", "slog", "tokio", "url", @@ -15906,7 +15881,7 @@ name = "nft_exporter" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.26", + "clap 4.5.23", "serde", "serde_json", ] @@ -15954,7 +15929,7 @@ version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "cfg-if 1.0.0", "libc", "memoffset 0.9.1", @@ -15966,7 +15941,7 @@ version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "cfg-if 1.0.0", "cfg_aliases", "libc", @@ -16016,7 +15991,7 @@ dependencies = [ "on_wire", "prost 0.13.4", "registry-canister", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde_cbor", "slog", "tokio", @@ -16245,7 +16220,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -16265,9 +16240,9 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" [[package]] name = "object" -version = "0.36.7" +version = "0.36.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" +checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e" dependencies = [ "crc32fast", "hashbrown 0.15.2", @@ -16537,7 +16512,7 @@ dependencies = [ "async-trait", "backoff", "candid", - "clap 4.5.26", + "clap 4.5.23", "env-file-reader", "exec", "get_if_addrs", @@ -16647,7 +16622,7 @@ dependencies = [ "ic-types", "ic_consensus_system_test_utils", "itertools 0.12.1", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde", "slog", "tokio", @@ -16873,7 +16848,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc" dependencies = [ "memchr", - "thiserror 2.0.11", + "thiserror 2.0.8", "ucd-trie", ] @@ -16897,7 +16872,7 @@ dependencies = [ "pest_meta", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -16953,12 +16928,12 @@ dependencies = [ [[package]] name = "phf" -version = "0.11.3" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" +checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" dependencies = [ "phf_macros", - "phf_shared 0.11.3", + "phf_shared 0.11.2", ] [[package]] @@ -16983,25 +16958,25 @@ dependencies = [ [[package]] name = "phf_generator" -version = "0.11.3" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" +checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" dependencies = [ - "phf_shared 0.11.3", + "phf_shared 0.11.2", "rand 0.8.5", ] [[package]] name = "phf_macros" -version = "0.11.3" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" +checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" dependencies = [ - "phf_generator 0.11.3", - "phf_shared 0.11.3", + "phf_generator 0.11.2", + "phf_shared 0.11.2", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -17010,16 +16985,16 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" dependencies = [ - "siphasher 0.3.11", + "siphasher", ] [[package]] name = "phf_shared" -version = "0.11.3" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" +checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" dependencies = [ - "siphasher 1.0.1", + "siphasher", ] [[package]] @@ -17030,29 +17005,29 @@ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" [[package]] name = "pin-project" -version = "1.1.8" +version = "1.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916" +checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.8" +version = "1.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb" +checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "pin-project-lite" -version = "0.2.16" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" +checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff" [[package]] name = "pin-utils" @@ -17166,7 +17141,7 @@ dependencies = [ "ic-transport-types", "k256", "lazy_static", - "reqwest 0.12.12", + "reqwest 0.12.9", "schemars", "serde", "serde_bytes", @@ -17176,7 +17151,7 @@ dependencies = [ "slog", "strum", "strum_macros", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", "tracing", "tracing-appender", @@ -17201,7 +17176,7 @@ dependencies = [ "bitcoincore-rpc", "bytes", "candid", - "clap 4.5.26", + "clap 4.5.23", "ctrlc", "flate2", "form_urlencoded", @@ -17250,7 +17225,7 @@ dependencies = [ "ic-test-utilities", "ic-test-utilities-registry", "ic-types", - "ic-utils 0.39.2", + "ic-utils 0.39.0", "ic-utils-thread", "ic-validator-ingress-message", "itertools 0.12.1", @@ -17259,7 +17234,7 @@ dependencies = [ "rand 0.8.5", "rcgen", "registry-canister", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde", "serde_cbor", "serde_json", @@ -17455,12 +17430,12 @@ dependencies = [ [[package]] name = "prettyplease" -version = "0.2.29" +version = "0.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac" +checksum = "64d1ec885c64d0457d564db4ec299b2dae3f9c02808b8ad9c3a089c591b18033" dependencies = [ "proc-macro2", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -17538,9 +17513,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "1.0.93" +version = "1.0.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" +checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" dependencies = [ "unicode-ident", ] @@ -17565,7 +17540,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "hex", "lazy_static", "procfs-core", @@ -17578,7 +17553,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "hex", ] @@ -17619,7 +17594,7 @@ checksum = "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" dependencies = [ "bit-set 0.8.0", "bit-vec 0.8.0", - "bitflags 2.8.0", + "bitflags 2.6.0", "lazy_static", "num-traits", "rand 0.8.5", @@ -17639,7 +17614,7 @@ checksum = "4ee1c9ac207483d5e7db4940700de86a9aae46ef90c48b57f99fe7edb8345e49" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -17679,7 +17654,7 @@ dependencies = [ "prost 0.12.6", "prost-types 0.12.6", "regex", - "syn 2.0.96", + "syn 2.0.90", "tempfile", ] @@ -17699,7 +17674,7 @@ dependencies = [ "prost 0.13.4", "prost-types 0.13.4", "regex", - "syn 2.0.96", + "syn 2.0.90", "tempfile", ] @@ -17713,7 +17688,7 @@ dependencies = [ "itertools 0.12.1", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -17726,7 +17701,7 @@ dependencies = [ "itertools 0.13.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -17811,9 +17786,9 @@ dependencies = [ [[package]] name = "pulley-interpreter" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8324e531de91a3c25021a30fb7862d39cc516b61fbb801176acb5ff279ea887b" +checksum = "403a1a95f4c18a45c86c7bff13df00347afd0abcbf2e54af273c837339ffcf77" dependencies = [ "cranelift-bitset", "log", @@ -17822,9 +17797,9 @@ dependencies = [ [[package]] name = "quanta" -version = "0.12.5" +version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e" +checksum = "773ce68d0bb9bc7ef20be3536ffe94e223e1f365bd374108b2659fac0c65cfe6" dependencies = [ "crossbeam-utils", "libc", @@ -17852,9 +17827,9 @@ dependencies = [ [[package]] name = "quick-xml" -version = "0.37.2" +version = "0.37.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "165859e9e55f79d67b96c5d96f4e88b6f2695a1972849c15a6a3f5c59fc2c003" +checksum = "f22f29bdff3987b4d8632ef95fd6424ec7e4e0a57e2f4fc63e489e75357f6a03" dependencies = [ "memchr", ] @@ -17870,9 +17845,9 @@ dependencies = [ "quinn-proto", "quinn-udp", "rustc-hash 2.1.0", - "rustls 0.23.21", + "rustls 0.23.20", "socket2 0.5.8", - "thiserror 2.0.11", + "thiserror 2.0.8", "tokio", "tracing", ] @@ -17888,10 +17863,10 @@ dependencies = [ "rand 0.8.5", "ring 0.17.8", "rustc-hash 2.1.0", - "rustls 0.23.21", + "rustls 0.23.20", "rustls-pki-types", "slab", - "thiserror 2.0.11", + "thiserror 2.0.8", "tinyvec", "tracing", "web-time", @@ -17913,9 +17888,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.38" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" +checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" dependencies = [ "proc-macro2", ] @@ -18137,7 +18112,7 @@ version = "0.9.0" dependencies = [ "anyhow", "candid", - "clap 4.5.26", + "clap 4.5.23", "ic-agent", "k256", "rate-limits-api", @@ -18191,7 +18166,7 @@ dependencies = [ "serde_cbor", "serde_json", "strum", - "thiserror 2.0.11", + "thiserror 2.0.8", "uuid", ] @@ -18208,11 +18183,11 @@ dependencies = [ [[package]] name = "raw-cpuid" -version = "11.3.0" +version = "11.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6928fa44c097620b706542d428957635951bade7143269085389d42c8a4927e" +checksum = "1ab240315c661615f2ee9f0f2cd32d5a7343a84d5ebcccb99d46e6637565e7b0" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", ] [[package]] @@ -18237,9 +18212,9 @@ dependencies = [ [[package]] name = "rcgen" -version = "0.13.2" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" +checksum = "54077e1872c46788540de1ea3d7f4ccb1983d12f9aa909b234468676c1a36779" dependencies = [ "pem 3.0.4", "ring 0.17.8", @@ -18273,7 +18248,7 @@ version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", ] [[package]] @@ -18536,9 +18511,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.12.12" +version = "0.12.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" +checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" dependencies = [ "base64 0.22.1", "bytes", @@ -18562,7 +18537,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "quinn", - "rustls 0.23.21", + "rustls 0.23.20", "rustls-native-certs 0.8.1", "rustls-pemfile 2.2.0", "rustls-pki-types", @@ -18574,7 +18549,6 @@ dependencies = [ "tokio-rustls 0.26.1", "tokio-socks", "tokio-util", - "tower 0.5.2", "tower-service", "url", "wasm-bindgen", @@ -18832,7 +18806,7 @@ dependencies = [ "on_wire", "prost 0.13.4", "rand 0.8.5", - "reqwest 0.12.12", + "reqwest 0.12.9", "rosetta-core", "serde", "serde_json", @@ -18887,7 +18861,7 @@ dependencies = [ "regex", "relative-path", "rustc_version", - "syn 2.0.96", + "syn 2.0.90", "unicode-ident", ] @@ -19010,11 +18984,11 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.43" +version = "0.38.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6" +checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "errno 0.3.10", "libc", "linux-raw-sys", @@ -19049,9 +19023,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.21" +version = "0.23.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8" +checksum = "5065c3f250cbd332cd894be57c40fa52387247659b14a2d6041d121547903b1b" dependencies = [ "brotli 7.0.0", "brotli-decompressor", @@ -19085,7 +19059,7 @@ dependencies = [ "ring 0.17.8", "serde", "serde_json", - "thiserror 2.0.11", + "thiserror 2.0.8", "webpki-roots 0.26.7", "x509-parser", ] @@ -19112,7 +19086,7 @@ dependencies = [ "openssl-probe", "rustls-pki-types", "schannel", - "security-framework 3.2.0", + "security-framework 3.1.0", ] [[package]] @@ -19153,7 +19127,7 @@ dependencies = [ "jni", "log", "once_cell", - "rustls 0.23.21", + "rustls 0.23.20", "rustls-native-certs 0.7.3", "rustls-platform-verifier-android", "rustls-webpki 0.102.8", @@ -19192,9 +19166,9 @@ dependencies = [ [[package]] name = "rustversion" -version = "1.0.19" +version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" +checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248" [[package]] name = "rusty-fork" @@ -19244,7 +19218,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -19278,7 +19252,7 @@ dependencies = [ "proc-macro2", "quote", "serde_derive_internals", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -19337,7 +19311,7 @@ dependencies = [ "ic-system-test-driver", "ic_consensus_system_test_utils", "nns_dapp", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde_json", "slog", ] @@ -19438,7 +19412,7 @@ version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "core-foundation 0.9.4", "core-foundation-sys", "libc", @@ -19448,11 +19422,11 @@ dependencies = [ [[package]] name = "security-framework" -version = "3.2.0" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" +checksum = "81d3f8c9bfcc3cbb6b0179eb57042d75b1582bdc65c3cb95f3fa999509c03cbc" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "core-foundation 0.10.0", "core-foundation-sys", "libc", @@ -19461,9 +19435,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.14.0" +version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" +checksum = "1863fd3768cd83c56a7f60faa4dc0d403f1b6df0a38c3c25f44b7894e45370d5" dependencies = [ "core-foundation-sys", "libc", @@ -19475,7 +19449,7 @@ version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4eb30575f3638fc8f6815f448d50cb1a2e255b0897985c8c59f4d37b72a07b06" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "cssparser", "derive_more 0.99.18", "fxhash", @@ -19499,9 +19473,9 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.217" +version = "1.0.216" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" +checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e" dependencies = [ "serde_derive", ] @@ -19559,13 +19533,13 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.217" +version = "1.0.216" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" +checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -19576,14 +19550,14 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "serde_json" -version = "1.0.135" +version = "1.0.133" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" +checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377" dependencies = [ "itoa", "memchr", @@ -19632,7 +19606,7 @@ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -19655,7 +19629,7 @@ dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -19717,7 +19691,7 @@ dependencies = [ "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -19747,7 +19721,7 @@ name = "setupos-disable-checks" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.26", + "clap 4.5.23", "indoc", "linux_kernel_command_line", "partition_tools", @@ -19761,7 +19735,7 @@ name = "setupos-inject-configuration" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.26", + "clap 4.5.23", "config", "partition_tools", "serde", @@ -19777,7 +19751,7 @@ name = "setupos_tool" version = "1.0.0" dependencies = [ "anyhow", - "clap 4.5.26", + "clap 4.5.23", "config", "config_types", "deterministic_ips", @@ -19899,13 +19873,13 @@ checksum = "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e" [[package]] name = "simple_asn1" -version = "0.6.3" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" +checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" dependencies = [ "num-bigint 0.4.6", "num-traits", - "thiserror 2.0.11", + "thiserror 1.0.69", "time", ] @@ -19935,12 +19909,6 @@ version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" -[[package]] -name = "siphasher" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" - [[package]] name = "slab" version = "0.4.9" @@ -20070,7 +20038,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -20098,7 +20066,7 @@ dependencies = [ "ic-system-test-driver", "ic-types", "ic-universal-canister", - "ic-utils 0.39.2", + "ic-utils 0.39.0", "ic_consensus_system_test_utils", "icp-ledger", "icrc-ledger-agent", @@ -20156,7 +20124,7 @@ dependencies = [ "ic-registry-subnet-type", "ic-system-test-driver", "ic-types", - "reqwest 0.12.12", + "reqwest 0.12.9", "slog", ] @@ -20336,7 +20304,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta-derive 0.2.0", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -20348,7 +20316,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta-derive 0.3.0", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -20359,7 +20327,7 @@ checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -20370,7 +20338,7 @@ checksum = "152a0b65a590ff6c3da95cabe2353ee04e6167c896b28e3b14478c2636c922fc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -20392,7 +20360,7 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -20420,9 +20388,9 @@ checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142" [[package]] name = "symbolic-common" -version = "12.13.2" +version = "12.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8150eae9699e3c73a3e6431dc1f80d87748797c0457336af23e94c1de619ed24" +checksum = "cd33e73f154e36ec223c18013f7064a2c120f1162fc086ac9933542def186b00" dependencies = [ "debugid", "memmap2", @@ -20432,9 +20400,9 @@ dependencies = [ [[package]] name = "symbolic-demangle" -version = "12.13.2" +version = "12.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95f4a9846f7a8933b6d198c022faa2c9bd89e1a970bed9d9a98d25708bf8de17" +checksum = "89e51191290147f071777e37fe111800bb82a9059f9c95b19d2dd41bfeddf477" dependencies = [ "rustc-demangle", "symbolic-common", @@ -20453,9 +20421,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.96" +version = "2.0.90" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" +checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31" dependencies = [ "proc-macro2", "quote", @@ -20507,7 +20475,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -20538,11 +20506,11 @@ dependencies = [ "anyhow", "async-trait", "axum", - "clap 4.5.26", + "clap 4.5.23", "http 1.2.0", "itertools 0.12.1", - "reqwest 0.12.12", - "thiserror 2.0.11", + "reqwest 0.12.9", + "thiserror 2.0.8", "tokio", "url", ] @@ -20647,13 +20615,12 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.15.0" +version = "3.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" +checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c" dependencies = [ "cfg-if 1.0.0", "fastrand", - "getrandom", "once_cell", "rustix", "windows-sys 0.59.0", @@ -20724,7 +20691,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta 0.2.0", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -20736,7 +20703,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta 0.3.0", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -20776,7 +20743,7 @@ dependencies = [ "ic_consensus_system_test_utils", "nns_dapp", "os_qualification_utils", - "reqwest 0.12.12", + "reqwest 0.12.9", "serde", "serde_json", "slog", @@ -20811,11 +20778,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.11" +version = "2.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" +checksum = "08f5383f3e0071702bf93ab5ee99b52d26936be9dedd9413067cbdcddcb6141a" dependencies = [ - "thiserror-impl 2.0.11", + "thiserror-impl 2.0.8", ] [[package]] @@ -20826,18 +20793,18 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "thiserror-impl" -version = "2.0.11" +version = "2.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" +checksum = "f2f357fcec90b3caef6623a099691be676d033b40a058ac95d2a6ade6fa0c943" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -20960,9 +20927,9 @@ dependencies = [ [[package]] name = "tinyvec" -version = "1.8.1" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" +checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" dependencies = [ "tinyvec_macros", ] @@ -21013,14 +20980,14 @@ checksum = "8d9ef545650e79f30233c0003bcc2504d7efac6dad25fca40744de773fe2049c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "tokio" -version = "1.43.0" +version = "1.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" +checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" dependencies = [ "backtrace", "bytes", @@ -21046,13 +21013,13 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.5.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" +checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -21094,7 +21061,7 @@ version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37" dependencies = [ - "rustls 0.23.21", + "rustls 0.23.20", "tokio", ] @@ -21237,7 +21204,7 @@ dependencies = [ "prost-build 0.13.4", "prost-types 0.13.4", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -21287,7 +21254,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" dependencies = [ "base64 0.21.7", - "bitflags 2.8.0", + "bitflags 2.6.0", "bytes", "http 1.2.0", "http-body 1.0.1", @@ -21306,7 +21273,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697" dependencies = [ "async-compression", - "bitflags 2.8.0", + "bitflags 2.6.0", "bytes", "futures-core", "http 1.2.0", @@ -21408,7 +21375,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -21548,6 +21515,12 @@ dependencies = [ "serde_json", ] +[[package]] +name = "triomphe" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "859eb650cfee7434994602c3a68b25d77ad9e68c8a6cd491616ef86661382eb3" + [[package]] name = "trust-dns-proto" version = "0.22.0" @@ -21670,10 +21643,11 @@ dependencies = [ [[package]] name = "ulid" -version = "1.1.4" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f294bff79170ed1c5633812aff1e565c35d993a36e757f9bc0accf5eec4e6045" +checksum = "04f903f293d11f31c0c29e4148f6dc0d033a7f80cebc0282bea147611667d289" dependencies = [ + "getrandom", "rand 0.8.5", "web-time", ] @@ -21686,9 +21660,9 @@ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" [[package]] name = "unicase" -version = "2.8.1" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" +checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df" [[package]] name = "unicode-bidi" @@ -21840,9 +21814,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.12.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4" +checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" dependencies = [ "getrandom", "serde", @@ -21899,7 +21873,7 @@ dependencies = [ name = "vsock_guest" version = "1.0.0" dependencies = [ - "clap 4.5.26", + "clap 4.5.23", "vsock_lib", ] @@ -21916,7 +21890,7 @@ version = "1.0.0" dependencies = [ "anyhow", "regex", - "reqwest 0.12.12", + "reqwest 0.12.9", "rusb", "serde", "serde_json", @@ -22028,35 +22002,34 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.100" +version = "0.2.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" +checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396" dependencies = [ "cfg-if 1.0.0", "once_cell", - "rustversion", "wasm-bindgen-macro", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.100" +version = "0.2.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" +checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79" dependencies = [ "bumpalo", "log", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.50" +version = "0.4.49" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" +checksum = "38176d9b44ea84e9184eff0bc34cc167ed044f816accfe5922e54d84cf48eca2" dependencies = [ "cfg-if 1.0.0", "js-sys", @@ -22067,9 +22040,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.100" +version = "0.2.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" +checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -22077,25 +22050,22 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.100" +version = "0.2.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" +checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.100" +version = "0.2.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" -dependencies = [ - "unicode-ident", -] +checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6" [[package]] name = "wasm-encoder" @@ -22128,12 +22098,12 @@ dependencies = [ [[package]] name = "wasm-encoder" -version = "0.223.0" +version = "0.222.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e636076193fa68103e937ac951b5f2f587624097017d764b8984d9c0f149464" +checksum = "3432682105d7e994565ef928ccf5856cf6af4ba3dddebedb737f61caed70f956" dependencies = [ "leb128", - "wasmparser 0.223.0", + "wasmparser 0.222.0", ] [[package]] @@ -22156,7 +22126,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d28bc49ba1e5c5b61ffa7a2eace10820443c4b7d1c0b144109261d14570fdf8" dependencies = [ "ahash 0.8.11", - "bitflags 2.8.0", + "bitflags 2.6.0", "hashbrown 0.14.5", "indexmap 2.7.0", "semver", @@ -22170,7 +22140,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca917a21307d3adf2b9857b94dd05ebf8496bdcff4437a9b9fb3899d3e6c74e7" dependencies = [ "ahash 0.8.11", - "bitflags 2.8.0", + "bitflags 2.6.0", "hashbrown 0.14.5", "indexmap 2.7.0", "semver", @@ -22183,7 +22153,7 @@ version = "0.221.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9845c470a2e10b61dd42c385839cdd6496363ed63b5c9e420b5488b77bd22083" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "hashbrown 0.15.2", "indexmap 2.7.0", "semver", @@ -22192,11 +22162,11 @@ dependencies = [ [[package]] name = "wasmparser" -version = "0.223.0" +version = "0.222.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5a99faceb1a5a84dd6084ec4bfa4b2ab153b5793b43fd8f58b89232634afc35" +checksum = "4adf50fde1b1a49c1add6a80d47aea500c88db70551805853aa8b88f3ea27ab5" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.6.0", "indexmap 2.7.0", "semver", ] @@ -22225,12 +22195,12 @@ dependencies = [ [[package]] name = "wasmtime" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edd30973c65eceb0f37dfcc430d83abd5eb24015fdfcab6912f52949287e04f0" +checksum = "f639ecae347b9a2227e453a7b7671e84370a0b61f47a15e0390fe9b7725e47b3" dependencies = [ "anyhow", - "bitflags 2.8.0", + "bitflags 2.6.0", "bumpalo", "cc", "cfg-if 1.0.0", @@ -22269,23 +22239,23 @@ dependencies = [ [[package]] name = "wasmtime-asm-macros" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6c21dd30d1f3f93ee390ac1a7ec304ecdbfdab6390e1add41a1f52727b0992b" +checksum = "882a18800471cfc063c8b3ccf75723784acc3fd534009ac09421f2fac2fcdcec" dependencies = [ "cfg-if 1.0.0", ] [[package]] name = "wasmtime-component-macro" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f948a6ef3119d52c9f12936970de28ddf3f9bea04bc65571f4a92d2e5ab38f4" +checksum = "eb5c0a77c9e1927c3d471f53cc13767c3d3438e5d5ffd394e3eb31c86445fd60" dependencies = [ "anyhow", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", "wasmtime-component-util", "wasmtime-wit-bindgen", "wit-parser", @@ -22293,15 +22263,15 @@ dependencies = [ [[package]] name = "wasmtime-component-util" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9275aa01ceaaa2fa6c0ecaa5267518d80b9d6e9ae7c7ea42f4c6e073e6a69ef" +checksum = "43702ca98bf5162eca0573db691ed9ecd36d716f8c6688410fe26ec16b6f9bcb" [[package]] name = "wasmtime-cranelift" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0701a44a323267aae4499672dae422b266cee3135a23b640972ec8c0e10a44a2" +checksum = "20070aa5b75080a8932ec328419faf841df2bc6ceb16b55b0df2b952098392a2" dependencies = [ "anyhow", "cfg-if 1.0.0", @@ -22324,9 +22294,9 @@ dependencies = [ [[package]] name = "wasmtime-environ" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "264c968c1b81d340355ece2be0bc31a10f567ccb6ce08512c3b7d10e26f3cbe5" +checksum = "2604ddb24879d4dc1dedcb7081d7a8e017259bce916fdae097a97db52cbaab80" dependencies = [ "anyhow", "cranelift-bitset", @@ -22347,9 +22317,9 @@ dependencies = [ [[package]] name = "wasmtime-fiber" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78505221fd5bd7b07b4e1fa2804edea49dc231e626ad6861adc8f531812973e6" +checksum = "98593412d2b167ebe2b59d4a17a184978a72f976b53b3a0ec05629451079ac1d" dependencies = [ "anyhow", "cc", @@ -22362,9 +22332,9 @@ dependencies = [ [[package]] name = "wasmtime-jit-icache-coherence" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9bedb677ca1b549d98f95e9e1f9251b460090d99a2c196a0614228c064bf2e59" +checksum = "d40d7722b9e1fbeae135715710a8a2570b1e6cf72b74dd653962d89831c6c70d" dependencies = [ "anyhow", "cfg-if 1.0.0", @@ -22374,26 +22344,26 @@ dependencies = [ [[package]] name = "wasmtime-slab" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "564905638c132c275d365c1fa074f0b499790568f43148d29de84ccecfb5cb31" +checksum = "8579c335220b4ece9aa490a0e8b46de78cd342b195ab21ff981d095e14b52383" [[package]] name = "wasmtime-versioned-export-macros" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e91092e6cf77390eeccee273846a9327f3e8f91c3c6280f60f37809f0e62d29" +checksum = "d7de0a56fb0a69b185968f2d7a9ba54750920a806470dff7ad8de91ac06d277e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "wasmtime-winch" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b111d909dc604c741bd8ac2f4af373eaa5c68c34b5717271bcb687688212cef8" +checksum = "abd309943c443f5590d12f9aba9ba63c481091c955a0a14de0c2a9e0e3aaeca9" dependencies = [ "anyhow", "cranelift-codegen", @@ -22408,9 +22378,9 @@ dependencies = [ [[package]] name = "wasmtime-wit-bindgen" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f38f7a5eb2f06f53fe943e7fb8bf4197f7cf279f1bc52c0ce56e9d3ffd750a4" +checksum = "969f83022dac3435d6469edb582ceed04cfe32aa44dc3ef16e5cb55574633df8" dependencies = [ "anyhow", "heck 0.5.0", @@ -22433,31 +22403,31 @@ dependencies = [ [[package]] name = "wast" -version = "223.0.0" +version = "222.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d59b2ba8a2ff9f06194b7be9524f92e45e70149f4dacc0d0c7ad92b59ac875e4" +checksum = "5ce7191f4b7da0dd300cc32476abae6457154e4625d9b1bc26890828a9a26f6e" dependencies = [ "bumpalo", "leb128", "memchr", "unicode-width 0.2.0", - "wasm-encoder 0.223.0", + "wasm-encoder 0.222.0", ] [[package]] name = "wat" -version = "1.223.0" +version = "1.222.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "662786915c427e4918ff01eabb3c4756d4d947cd8f635761526b4cc9da2eaaad" +checksum = "8fde61b4b52f9a84ae31b5e8902a2cd3162ea45d8bf564c729c3288fe52f4334" dependencies = [ - "wast 223.0.0", + "wast 222.0.0", ] [[package]] name = "web-sys" -version = "0.3.77" +version = "0.3.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" +checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc" dependencies = [ "js-sys", "wasm-bindgen", @@ -22578,9 +22548,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "winch-codegen" -version = "28.0.1" +version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6232f40a795be2ce10fc761ed3b403825126a60d12491ac556ea104a932fd18a" +checksum = "9110decc2983ed94de904804dcd979ba59cbabc78a94fec6b1d8468ec513d0f6" dependencies = [ "anyhow", "cranelift-codegen", @@ -22593,16 +22563,6 @@ dependencies = [ "wasmtime-environ", ] -[[package]] -name = "windows" -version = "0.58.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" -dependencies = [ - "windows-core 0.58.0", - "windows-targets 0.52.6", -] - [[package]] name = "windows-core" version = "0.52.0" @@ -22612,41 +22572,6 @@ dependencies = [ "windows-targets 0.52.6", ] -[[package]] -name = "windows-core" -version = "0.58.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" -dependencies = [ - "windows-implement", - "windows-interface", - "windows-result", - "windows-strings", - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-implement" -version = "0.58.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.96", -] - -[[package]] -name = "windows-interface" -version = "0.58.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.96", -] - [[package]] name = "windows-registry" version = "0.2.0" @@ -22827,9 +22752,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winnow" -version = "0.6.24" +version = "0.6.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a" +checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" dependencies = [ "memchr", ] @@ -22945,9 +22870,9 @@ dependencies = [ [[package]] name = "xattr" -version = "1.4.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e105d177a3871454f754b33bb0ee637ecaaac997446375fd3e5d43a2ed00c909" +checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" dependencies = [ "libc", "linux-raw-sys", @@ -23044,7 +22969,7 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", "synstructure", ] @@ -23066,7 +22991,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -23086,7 +23011,7 @@ checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", "synstructure", ] @@ -23107,7 +23032,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -23129,7 +23054,7 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] From 0c8a8dde5145948f5985f953f2619043d647075c Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Fri, 17 Jan 2025 12:21:05 +0000 Subject: [PATCH 07/34] . --- Cargo.lock | 1143 ++++++++++--------- rs/protobuf/src/proxy.rs | 2 +- rs/tla_instrumentation/local_key/src/lib.rs | 4 +- 3 files changed, 612 insertions(+), 537 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f70c30ce41c..44d9c32910a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "abnf" @@ -39,7 +39,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "bytes", "futures-core", "futures-sink", @@ -62,7 +62,7 @@ dependencies = [ "actix-utils", "ahash 0.8.11", "base64 0.22.1", - "bitflags 2.6.0", + "bitflags 2.8.0", "brotli 6.0.0", "bytes", "bytestring", @@ -96,7 +96,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" dependencies = [ "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -214,7 +214,7 @@ dependencies = [ "actix-router", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -292,9 +292,9 @@ dependencies = [ [[package]] name = "aide" -version = "0.13.4" +version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b0e3b97a21e41ec5c19bfd9b4fc1f7086be104f8b988681230247ffc91cc8ed" +checksum = "5678d2978845ddb4bd736a026f467dd652d831e9e6254b0e41b07f7ee7523309" dependencies = [ "axum", "bytes", @@ -375,7 +375,7 @@ dependencies = [ "prometheus", "rand 0.8.5", "rsa", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", ] @@ -403,7 +403,7 @@ dependencies = [ "lazy_static", "prometheus", "serde", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -447,19 +447,20 @@ dependencies = [ [[package]] name = "anstyle-wincon" -version = "3.0.6" +version = "3.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125" +checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" dependencies = [ "anstyle", + "once_cell", "windows-sys 0.59.0", ] [[package]] name = "anyhow" -version = "1.0.94" +version = "1.0.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1fd03a028ef38ba2276dce7e33fcd6369c158a1bca17946c4b1b701891c1ff7" +checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" [[package]] name = "arbitrary" @@ -525,7 +526,7 @@ dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -567,7 +568,7 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", "synstructure", ] @@ -579,7 +580,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -691,7 +692,7 @@ version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" dependencies = [ - "event-listener 5.3.1", + "event-listener 5.4.0", "event-listener-strategy", "pin-project-lite", ] @@ -747,7 +748,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -758,13 +759,13 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.83" +version = "0.1.85" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" +checksum = "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -813,13 +814,13 @@ dependencies = [ [[package]] name = "auto_impl" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c87f3f15e7794432337fc718554eaa4dc8f04c9677a950ffe366f20a162ae42" +checksum = "e12882f59de5360c748c4cbf569a042d5fb0eb515f7bea9c1f470b47f6ffbd73" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -1108,7 +1109,7 @@ version = "0.69.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "cexpr", "clang-sys", "itertools 0.12.1", @@ -1119,7 +1120,7 @@ dependencies = [ "regex", "rustc-hash 1.1.0", "shlex", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -1337,9 +1338,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.6.0" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" +checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" [[package]] name = "bitvec" @@ -1386,9 +1387,9 @@ dependencies = [ [[package]] name = "borsh" -version = "1.5.3" +version = "1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2506947f73ad44e344215ccd6403ac2ae18cd8e046e581a441bf8d199f257f03" +checksum = "9fb65153674e51d3a42c8f27b05b9508cea85edfaade8aa46bc8fc18cecdfef3" dependencies = [ "borsh-derive", "cfg_aliases", @@ -1396,15 +1397,15 @@ dependencies = [ [[package]] name = "borsh-derive" -version = "1.5.3" +version = "1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2593a3b8b938bd68373196c9832f516be11fa487ef4ae745eb282e6a56a7244" +checksum = "a396e17ad94059c650db3d253bb6e25927f1eb462eede7e7a153bb6e75dce0a7" dependencies = [ "once_cell", "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -1451,9 +1452,9 @@ dependencies = [ [[package]] name = "bstr" -version = "1.11.1" +version = "1.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "786a307d683a5bf92e6fd5fd69a7eb613751668d1d8d67d802846dfe367c62c8" +checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0" dependencies = [ "memchr", "regex-automata 0.4.9", @@ -1574,9 +1575,9 @@ dependencies = [ [[package]] name = "bytemuck" -version = "1.20.0" +version = "1.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b37c88a63ffd85d15b406896cc343916d7cf57838a847b3a6f2ca5d39a5695a" +checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3" [[package]] name = "byteorder" @@ -1674,7 +1675,7 @@ dependencies = [ "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -1710,7 +1711,7 @@ version = "0.1.0" dependencies = [ "anyhow", "bytes", - "clap 4.5.23", + "clap 4.5.26", "futures-util", "http 1.2.0", "http-body 1.0.1", @@ -1750,9 +1751,9 @@ dependencies = [ [[package]] name = "candid" -version = "0.10.11" +version = "0.10.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d04aa85a9ba2542bded33d1eff0ffb17cb98b1be8117e0a25e1ad8c62bedc881" +checksum = "51e129c4051c57daf943586e01ef72faae48b04a8f692d5f646febf17a264c38" dependencies = [ "anyhow", "binread", @@ -1780,7 +1781,7 @@ dependencies = [ "lazy_static", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -1888,9 +1889,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] name = "cc" -version = "1.2.5" +version = "1.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c31a0499c1dc64f458ad13872de75c0eb7e3fdb0e67964610c914b034fc5956e" +checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229" dependencies = [ "jobserver", "libc", @@ -1940,7 +1941,7 @@ dependencies = [ "candid", "certificate_orchestrator_interface", "chacha20poly1305", - "clap 4.5.23", + "clap 4.5.26", "cloudflare 0.12.0 (git+https://github.com/dfinity/cloudflare-rs.git?rev=a6538a036926bd756986c9c0a5de356daef48881)", "flate2", "futures", @@ -1948,7 +1949,7 @@ dependencies = [ "ic-agent", "ic-http-certification", "ic-response-verification", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "idna 1.0.3", "instant-acme", "leb128", @@ -1958,12 +1959,12 @@ dependencies = [ "pem 1.1.1", "prometheus", "rcgen", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_cbor", "serde_json", "sha2 0.10.8", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tower 0.5.2", "tracing", @@ -1995,7 +1996,7 @@ dependencies = [ "serde", "serde_cbor", "sha2 0.10.8", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -2007,7 +2008,7 @@ dependencies = [ "ic-stable-structures", "serde", "serde_bytes", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -2150,19 +2151,19 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.23" +version = "4.5.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84" +checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783" dependencies = [ "clap_builder", - "clap_derive 4.5.18", + "clap_derive 4.5.24", ] [[package]] name = "clap_builder" -version = "4.5.23" +version = "4.5.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838" +checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121" dependencies = [ "anstream", "anstyle", @@ -2185,14 +2186,14 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.18" +version = "4.5.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" +checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -2368,7 +2369,7 @@ name = "config" version = "1.0.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "config_types", "ic-types", "macaddr", @@ -2395,7 +2396,7 @@ dependencies = [ "serde_json", "serde_with 1.14.0", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "url", ] @@ -2504,7 +2505,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "registry-canister", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde_json", "slog", "tokio", @@ -2691,18 +2692,18 @@ dependencies = [ [[package]] name = "cranelift-bforest" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac89549be94911dd0e839b4a7db99e9ed29c17517e1c026f61066884c168aa3c" +checksum = "88c1d02b72b6c411c0a2e92b25ed791ad5d071184193c08a34aa0fdcdf000b72" dependencies = [ "cranelift-entity", ] [[package]] name = "cranelift-bitset" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9bd49369f76c77e34e641af85d0956869237832c118964d08bf5f51f210875a" +checksum = "720b93bd86ebbb23ebfb2db1ed44d54b2ecbdbb2d034d485bc64aa605ee787ab" dependencies = [ "serde", "serde_derive", @@ -2710,9 +2711,9 @@ dependencies = [ [[package]] name = "cranelift-codegen" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd96ce9cf8efebd7f5ab8ced5a0ce44250280bbae9f593d74a6d7effc3582a35" +checksum = "aed3d2d9914d30b460eedd7fd507720203023997bef71452ce84873f9c93537c" dependencies = [ "bumpalo", "cranelift-bforest", @@ -2734,33 +2735,33 @@ dependencies = [ [[package]] name = "cranelift-codegen-meta" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a68e358827afe4bfb6239fcbf6fbd5ac56206ece8a99c8f5f9bbd518773281a" +checksum = "888c188d32263ec9e048873ff0b68c700933600d553f4412417916828be25f8e" dependencies = [ "cranelift-codegen-shared", ] [[package]] name = "cranelift-codegen-shared" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e184c9767afbe73d50c55ec29abcf4c32f9baf0d9d22b86d58c4d55e06dee181" +checksum = "4ddd5f4114d04ce7e073dd74e2ad16541fc61970726fcc8b2d5644a154ee4127" [[package]] name = "cranelift-control" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cc7664f2a66f053e33f149e952bb5971d138e3af637f5097727ed6dc0ed95dd" +checksum = "92cc4c98d6a4256a1600d93ccd3536f3e77da9b4ca2c279de786ac22876e67d6" dependencies = [ "arbitrary", ] [[package]] name = "cranelift-entity" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "118597e3a9cf86c3556fa579a7a23b955fa18231651a52a77a2475d305a9cf84" +checksum = "760af4b5e051b5f82097a27274b917e3751736369fa73660513488248d27f23d" dependencies = [ "cranelift-bitset", "serde", @@ -2769,9 +2770,9 @@ dependencies = [ [[package]] name = "cranelift-frontend" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7638ea1efb069a0aa18d8ee67401b6b0d19f6bfe5de5e9ede348bfc80bb0d8c7" +checksum = "c0bf77ec0f470621655ec7539860b5c620d4f91326654ab21b075b83900f8831" dependencies = [ "cranelift-codegen", "log", @@ -2781,15 +2782,15 @@ dependencies = [ [[package]] name = "cranelift-isle" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15c53e1152a0b01c4ed2b1e0535602b8e86458777dd9d18b28732b16325c7dc0" +checksum = "4b665d0a6932c421620be184f9fc7f7adaf1b0bc2fa77bb7ac5177c49abf645b" [[package]] name = "cranelift-native" -version = "0.115.0" +version = "0.115.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b7d8f895444fa52dd7bdd0bed11bf007a7fb43af65a6deac8fcc4094c6372f7" +checksum = "bb2e75d1bd43dfec10924798f15e6474f1dbf63b0024506551aa19394dbe72ab" dependencies = [ "cranelift-codegen", "libc", @@ -2814,7 +2815,7 @@ dependencies = [ "anes", "cast", "ciborium", - "clap 4.5.23", + "clap 4.5.26", "criterion-plot", "futures", "is-terminal", @@ -2913,7 +2914,7 @@ version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "crossterm_winapi", "libc", "mio 0.8.11", @@ -2970,7 +2971,7 @@ dependencies = [ "cssparser-macros", "dtoa-short", "itoa", - "phf 0.11.2", + "phf 0.11.3", "smallvec", ] @@ -2981,7 +2982,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" dependencies = [ "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3041,7 +3042,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3178,7 +3179,7 @@ dependencies = [ "proc-macro2", "quote", "strsim 0.11.1", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3200,7 +3201,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core 0.20.10", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3238,9 +3239,9 @@ dependencies = [ [[package]] name = "data-encoding" -version = "2.6.0" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" +checksum = "0e60eed09d8c01d3cee5b7d30acb059b76614c918fa0f992e0dd6eeb10daad6f" [[package]] name = "debugid" @@ -3293,7 +3294,7 @@ checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3314,7 +3315,7 @@ checksum = "2cdc8d50f426189eef89dac62fabfa0abb27d5cc008f25bf4156a0203325becc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3325,7 +3326,7 @@ checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3338,7 +3339,7 @@ dependencies = [ "proc-macro2", "quote", "rustc_version", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3358,7 +3359,7 @@ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3366,11 +3367,11 @@ name = "deterministic_ips" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "config_types", "ic-crypto-sha2", "macaddr", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -3378,7 +3379,7 @@ name = "dflate" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "libc", "tar", ] @@ -3493,7 +3494,7 @@ name = "diroid" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "walkdir", ] @@ -3526,7 +3527,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3771,7 +3772,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3784,7 +3785,7 @@ dependencies = [ "num-traits", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3834,7 +3835,7 @@ checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -3987,9 +3988,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "event-listener" -version = "5.3.1" +version = "5.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" +checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" dependencies = [ "concurrent-queue", "parking", @@ -4002,7 +4003,7 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2" dependencies = [ - "event-listener 5.3.1", + "event-listener 5.4.0", "pin-project-lite", ] @@ -4017,7 +4018,7 @@ dependencies = [ "ic-cdk 0.16.0", "mockall", "serde", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", ] @@ -4100,11 +4101,11 @@ dependencies = [ "ic-types", "ic-types-test-utils", "ic-universal-canister", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "lazy_static", "rand 0.8.5", "rand_chacha 0.3.1", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde_cbor", "slog", "tokio", @@ -4388,9 +4389,9 @@ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" [[package]] name = "futures-lite" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cef40d21ae2c515b51041df9ed313ed21e572df340ea58a922a0aefe7e8891a1" +checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" dependencies = [ "fastrand", "futures-core", @@ -4407,7 +4408,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -4417,7 +4418,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8f2f12607f92c69b12ed746fabf9ca4f5c482cba46679c1a75b874ed7c26adb" dependencies = [ "futures-io", - "rustls 0.23.20", + "rustls 0.23.21", "rustls-pki-types", ] @@ -4472,6 +4473,19 @@ version = "0.3.55" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" +[[package]] +name = "generator" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc6bd114ceda131d3b1d665eba35788690ad37f5916457286b32ab6fd3c438dd" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "log", + "rustversion", + "windows", +] + [[package]] name = "generic-array" version = "0.14.7" @@ -4551,9 +4565,9 @@ dependencies = [ [[package]] name = "glob" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" +checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" [[package]] name = "governor" @@ -4591,7 +4605,7 @@ name = "guestos_tool" version = "1.0.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "config", "indoc", "itertools 0.12.1", @@ -4928,7 +4942,7 @@ name = "hostos_tool" version = "1.0.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "config", "config_types", "deterministic_ips", @@ -5028,10 +5042,10 @@ name = "httpbin-rs" version = "0.9.0" dependencies = [ "axum", - "clap 4.5.23", + "clap 4.5.26", "hyper 1.5.2", "hyper-util", - "rustls 0.23.20", + "rustls 0.23.21", "rustls-pemfile 2.2.0", "serde_json", "tokio", @@ -5160,7 +5174,7 @@ dependencies = [ "hyper 1.5.2", "hyper-util", "log", - "rustls 0.23.20", + "rustls 0.23.21", "rustls-native-certs 0.8.1", "rustls-pki-types", "tokio", @@ -5227,7 +5241,7 @@ dependencies = [ "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "windows-core", + "windows-core 0.52.0", ] [[package]] @@ -5288,7 +5302,7 @@ dependencies = [ "base64 0.13.1", "candid", "chrono", - "clap 4.5.23", + "clap 4.5.26", "cycles-minting-canister", "futures", "hex", @@ -5388,7 +5402,7 @@ dependencies = [ "pkcs8", "rand 0.8.5", "rangemap", - "reqwest 0.12.9", + "reqwest 0.12.12", "ring 0.17.8", "sec1", "serde", @@ -5398,7 +5412,7 @@ dependencies = [ "sha2 0.10.8", "simple_asn1", "stop-token", - "thiserror 2.0.8", + "thiserror 2.0.11", "time", "tokio", "tower-service", @@ -5434,7 +5448,7 @@ dependencies = [ "prost 0.13.4", "rand 0.8.5", "slog", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tower 0.5.2", "tracing", @@ -5465,7 +5479,7 @@ version = "0.9.0" dependencies = [ "bincode", "byteorder", - "clap 4.5.23", + "clap 4.5.26", "criterion", "ic-config", "ic-crypto-test-utils-canister-threshold-sigs", @@ -5508,7 +5522,7 @@ version = "0.9.0" dependencies = [ "anyhow", "chrono", - "clap 4.5.23", + "clap 4.5.26", "ic-config", "ic-crypto-utils-threshold-sig-der", "ic-logger", @@ -5520,7 +5534,7 @@ dependencies = [ "ic-test-utilities-tmpdir", "ic-types", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_json", "slog", @@ -5602,8 +5616,8 @@ dependencies = [ "base64 0.22.1", "bytes", "chacha20poly1305", - "clap 4.5.23", - "clap_derive 4.5.18", + "clap 4.5.26", + "clap_derive 4.5.24", "cloudflare 0.12.0 (git+https://github.com/cloudflare/cloudflare-rs.git?rev=f14720e42184ee176a97676e85ef2d2d85bc3aae)", "derive-new", "fqdn 0.4.4", @@ -5625,8 +5639,8 @@ dependencies = [ "prost-types 0.13.4", "rand 0.8.5", "rcgen", - "reqwest 0.12.9", - "rustls 0.23.20", + "reqwest 0.12.12", + "rustls 0.23.21", "rustls-acme", "rustls-pemfile 2.2.0", "rustls-platform-verifier", @@ -5637,7 +5651,7 @@ dependencies = [ "strum", "strum_macros", "systemstat", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tokio-io-timeout", "tokio-rustls 0.26.1", @@ -5666,7 +5680,7 @@ dependencies = [ "axum-extra", "bytes", "candid", - "clap 4.5.23", + "clap 4.5.26", "criterion", "dashmap 6.1.0", "ethnum", @@ -5718,8 +5732,8 @@ dependencies = [ "ratelimit", "rcgen", "regex", - "reqwest 0.12.9", - "rustls 0.23.20", + "reqwest 0.12.12", + "rustls 0.23.21", "rustls-pemfile 2.2.0", "serde", "serde_bytes", @@ -5731,7 +5745,7 @@ dependencies = [ "slog", "strum", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tikv-jemalloc-ctl", "tikv-jemallocator", "tokio", @@ -5768,7 +5782,7 @@ dependencies = [ "pem 1.1.1", "rand 0.8.5", "rand_chacha 0.3.1", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde_json", "slog", "tokio", @@ -5785,7 +5799,7 @@ dependencies = [ "ic-crypto-tree-hash", "ic-system-test-driver", "ic-types", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_cbor", "slog", @@ -5809,7 +5823,7 @@ dependencies = [ "ic-system-test-driver", "prost 0.13.4", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "slog", "tokio", ] @@ -5830,7 +5844,7 @@ dependencies = [ "ic-registry-subnet-type", "ic-system-test-driver", "ic-types", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "slog", "url", ] @@ -5842,7 +5856,7 @@ dependencies = [ "bitcoin 0.28.2", "bitcoincore-rpc", "bitcoind", - "clap 4.5.23", + "clap 4.5.26", "criterion", "futures", "hashlink", @@ -5871,7 +5885,7 @@ dependencies = [ "slog", "slog-async", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tokio-socks", "tonic", @@ -5977,7 +5991,7 @@ dependencies = [ "proptest", "prost 0.13.4", "slog", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -6051,7 +6065,7 @@ dependencies = [ "prost 0.13.4", "rand 0.8.5", "rand_chacha 0.3.1", - "rustls 0.23.20", + "rustls 0.23.21", "serde", "serde_cbor", "tokio", @@ -6177,7 +6191,7 @@ dependencies = [ "serde_bytes", "serde_cbor", "sha2 0.10.8", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -6244,7 +6258,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "scoped_threadpool", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -6375,7 +6389,7 @@ dependencies = [ "quote", "serde", "serde_tokenstream 0.2.2", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -6389,7 +6403,7 @@ dependencies = [ "quote", "serde", "serde_tokenstream 0.2.2", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -6644,7 +6658,7 @@ dependencies = [ "strum", "strum_macros", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "thousands", "time", "tokio", @@ -6893,7 +6907,7 @@ dependencies = [ "assert_matches", "async-trait", "bincode", - "clap 4.5.23", + "clap 4.5.26", "criterion", "hex", "ic-adapter-metrics-server", @@ -6972,7 +6986,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "rsa", - "rustls 0.23.20", + "rustls 0.23.21", "serde", "sha2 0.10.8", "simple_asn1", @@ -7016,7 +7030,7 @@ dependencies = [ "pem 1.1.1", "rand 0.8.5", "rand_chacha 0.3.1", - "thiserror 2.0.8", + "thiserror 2.0.11", "wycheproof", "zeroize", ] @@ -7322,7 +7336,7 @@ dependencies = [ "stubborn-io", "tarpc", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "time", "tokio", "tokio-serde", @@ -7564,7 +7578,7 @@ dependencies = [ "serde_cbor", "strum", "strum_macros", - "thiserror 2.0.8", + "thiserror 2.0.11", "zeroize", ] @@ -7733,7 +7747,7 @@ dependencies = [ "ic-types-test-utils", "rand 0.8.5", "rand_chacha 0.3.1", - "rustls 0.23.20", + "rustls 0.23.21", "tempfile", "tokio", ] @@ -7912,7 +7926,7 @@ version = "0.9.0" dependencies = [ "ic-types", "mockall", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -7933,7 +7947,7 @@ dependencies = [ "ic-types", "pkcs8", "rand 0.8.5", - "rustls 0.23.20", + "rustls 0.23.21", "signature", "time", "tokio", @@ -7969,9 +7983,9 @@ dependencies = [ "ic-types", "json5", "maplit", - "rustls 0.23.20", + "rustls 0.23.21", "serde", - "thiserror 2.0.8", + "thiserror 2.0.11", "x509-parser", ] @@ -7982,7 +7996,7 @@ dependencies = [ "ic-base-types", "ic-crypto-tls-interfaces", "mockall", - "rustls 0.23.20", + "rustls 0.23.21", ] [[package]] @@ -8003,7 +8017,7 @@ dependencies = [ "serde", "serde_bytes", "serde_cbor", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -8015,7 +8029,7 @@ dependencies = [ "ic-crypto-tree-hash", "proptest", "rand 0.8.5", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -8082,7 +8096,7 @@ name = "ic-crypto-utils-tls" version = "0.9.0" dependencies = [ "ic-base-types", - "thiserror 2.0.8", + "thiserror 2.0.11", "x509-parser", ] @@ -8097,7 +8111,7 @@ dependencies = [ "ic-registry-nns-data-provider", "ic-types", "prost 0.13.4", - "reqwest 0.12.9", + "reqwest 0.12.12", "tokio", ] @@ -8167,7 +8181,7 @@ dependencies = [ name = "ic-drun" version = "0.9.0" dependencies = [ - "clap 4.5.23", + "clap 4.5.26", "futures", "hex", "ic-canister-sandbox-backend-lib", @@ -8212,7 +8226,7 @@ dependencies = [ "bincode", "candid", "canister-test", - "clap 4.5.23", + "clap 4.5.26", "criterion", "embedders_bench", "ic-base-types", @@ -8390,7 +8404,7 @@ dependencies = [ "anyhow", "assert_cmd", "assert_matches", - "clap 4.5.23", + "clap 4.5.26", "ic-crypto-test-utils-reproducible-rng", "ic-sys", "maplit", @@ -8444,9 +8458,9 @@ dependencies = [ "ic-metrics", "ic-test-utilities-logger", "prometheus", - "reqwest 0.12.9", + "reqwest 0.12.12", "slog", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tokio-io-timeout", "tower 0.5.2", @@ -8509,7 +8523,7 @@ dependencies = [ "ic-tracing", "ic-types", "ic-validator", - "inferno 0.12.0", + "inferno 0.12.1", "maplit", "mockall", "pretty_assertions", @@ -8517,9 +8531,9 @@ dependencies = [ "proptest", "prost 0.13.4", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "rstest", - "rustls 0.23.20", + "rustls 0.23.21", "serde", "serde_bytes", "serde_cbor", @@ -8566,7 +8580,7 @@ dependencies = [ "maplit", "prometheus", "prost 0.13.4", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_json", "slog", @@ -8591,7 +8605,7 @@ dependencies = [ "ic-agent", "ic-http-certification", "ic-response-verification", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "thiserror 1.0.69", ] @@ -8607,7 +8621,7 @@ dependencies = [ "ic-logger", "ic-test-utilities-in-memory-logger", "mockito", - "reqwest 0.12.9", + "reqwest 0.12.12", "slog", "tar", "tempfile", @@ -8622,7 +8636,7 @@ dependencies = [ "async-stream", "byte-unit", "bytes", - "clap 4.5.23", + "clap 4.5.26", "futures", "http 1.2.0", "http-body-util", @@ -8640,13 +8654,13 @@ dependencies = [ "prometheus", "rand 0.8.5", "rstest", - "rustls 0.23.20", + "rustls 0.23.21", "rustls-pemfile 2.2.0", "serde", "serde_json", "slog", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tokio-rustls 0.26.1", "tonic", @@ -8780,7 +8794,7 @@ dependencies = [ "icrc-ledger-types", "num-bigint 0.4.6", "pocket-ic", - "reqwest 0.12.9", + "reqwest 0.12.12", "rosetta-core", "serde", "tempfile", @@ -8797,7 +8811,7 @@ dependencies = [ "ic-rosetta-test-utils", "icp-ledger", "pocket-ic", - "reqwest 0.12.9", + "reqwest 0.12.12", "tempfile", "tokio", ] @@ -8810,7 +8824,7 @@ dependencies = [ "axum", "candid", "ciborium", - "clap 4.5.23", + "clap 4.5.26", "futures", "hex", "ic-agent", @@ -8830,7 +8844,7 @@ dependencies = [ "ic-rosetta-test-utils", "ic-sys", "ic-test-utilities-load-wasm", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "icrc-ledger-agent", "icrc-ledger-types", "indicatif", @@ -8841,7 +8855,7 @@ dependencies = [ "pocket-ic", "proptest", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "rolling-file", "rosetta-core", "rusqlite", @@ -8867,7 +8881,7 @@ version = "0.1.0" dependencies = [ "anyhow", "candid", - "clap 4.5.23", + "clap 4.5.26", "hex", "ic-agent", "ic-crypto-ed25519", @@ -8878,7 +8892,7 @@ dependencies = [ "icrc-ledger-types", "num-bigint 0.4.6", "pocket-ic", - "reqwest 0.12.9", + "reqwest 0.12.12", "rosetta-core", "serde", "tokio", @@ -8893,7 +8907,7 @@ dependencies = [ "candid", "icrc-ledger-types", "pocket-ic", - "reqwest 0.12.9", + "reqwest 0.12.12", "tempfile", "tokio", ] @@ -8931,7 +8945,7 @@ dependencies = [ "rand 0.8.5", "serde", "serde_bytes", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -9171,7 +9185,7 @@ dependencies = [ "serde", "strum", "strum_macros", - "thiserror 2.0.8", + "thiserror 2.0.11", "tower 0.5.2", ] @@ -9180,7 +9194,7 @@ name = "ic-interfaces-adapter-client" version = "0.9.0" dependencies = [ "strum_macros", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -9235,7 +9249,7 @@ dependencies = [ "ic-crypto-tree-hash", "ic-types", "phantom_newtype", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -9270,7 +9284,7 @@ dependencies = [ "icp-ledger", "on_wire", "proptest", - "reqwest 0.12.9", + "reqwest 0.12.12", "rusqlite", "serde", "tokio", @@ -9495,7 +9509,7 @@ dependencies = [ "ic-types", "ic_consensus_system_test_utils", "icp-ledger", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "slog", "url", @@ -9509,11 +9523,11 @@ dependencies = [ "assert_matches", "candid", "candid_parser", - "clap 4.5.23", + "clap 4.5.26", "futures", "hex", "maplit", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_json", "sha2 0.10.8", @@ -9664,7 +9678,7 @@ name = "ic-metrics-tool" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", ] [[package]] @@ -9686,7 +9700,7 @@ dependencies = [ "pocket-ic", "serde", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", ] @@ -10447,7 +10461,7 @@ version = "0.9.0" dependencies = [ "candid", "canister-test", - "clap 4.5.23", + "clap 4.5.26", "ic-base-types", "ic-canister-client", "ic-interfaces-registry", @@ -10471,7 +10485,7 @@ dependencies = [ name = "ic-nns-inspector" version = "0.1.0" dependencies = [ - "clap 4.5.23", + "clap 4.5.26", "csv", "hex", "ic-base-types", @@ -10706,7 +10720,7 @@ dependencies = [ "quinn", "quinn-udp", "rcgen", - "rustls 0.23.20", + "rustls 0.23.21", "serde", "slog", "tempfile", @@ -10744,7 +10758,7 @@ dependencies = [ "pprof", "prost 0.12.6", "regex", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", ] @@ -10755,7 +10769,7 @@ dependencies = [ "anyhow", "assert_matches", "base64 0.13.1", - "clap 4.5.23", + "clap 4.5.26", "fs_extra", "ic-config", "ic-crypto-node-key-generation", @@ -10786,12 +10800,12 @@ dependencies = [ "pretty_assertions", "prost 0.13.4", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_json", "slog", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "url", "x509-cert", ] @@ -10871,11 +10885,11 @@ dependencies = [ "prost 0.13.4", "quinn", "rstest", - "rustls 0.23.20", + "rustls 0.23.21", "slog", "socket2 0.5.8", "static_assertions", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tokio-metrics", "tokio-util", @@ -10903,7 +10917,7 @@ name = "ic-recovery" version = "0.9.0" dependencies = [ "base64 0.13.1", - "clap 4.5.23", + "clap 4.5.26", "futures", "hex", "ic-artifact-pool", @@ -10933,7 +10947,7 @@ dependencies = [ "ic-test-utilities-types", "ic-types", "prost 0.13.4", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_cbor", "serde_json", @@ -10953,7 +10967,7 @@ version = "0.9.0" dependencies = [ "anyhow", "base64 0.13.1", - "clap 4.5.23", + "clap 4.5.26", "ic-base-types", "ic-crypto-sha2", "ic-crypto-utils-threshold-sig-der", @@ -10971,7 +10985,7 @@ dependencies = [ "serde", "serde_json", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "url", ] @@ -10983,7 +10997,7 @@ dependencies = [ "candid", "ic-base-types", "serde", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -11058,7 +11072,7 @@ dependencies = [ "ic-registry-subnet-features", "ic-types", "serde_cbor", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -11107,7 +11121,7 @@ dependencies = [ "ic-registry-transport", "ic-types", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "url", ] @@ -11180,7 +11194,7 @@ dependencies = [ "ic-registry-transport", "ic-sys", "ic-types", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -11195,7 +11209,7 @@ dependencies = [ name = "ic-registry-replicator" version = "0.9.0" dependencies = [ - "clap 4.5.23", + "clap 4.5.26", "ic-config", "ic-crypto-utils-threshold-sig-der", "ic-http-endpoints-metrics", @@ -11280,7 +11294,7 @@ name = "ic-replay" version = "0.9.0" dependencies = [ "candid", - "clap 4.5.23", + "clap 4.5.26", "hex", "ic-artifact-pool", "ic-canister-client", @@ -11334,7 +11348,7 @@ version = "0.9.0" dependencies = [ "assert_cmd", "canister-test", - "clap 4.5.23", + "clap 4.5.26", "criterion", "hex", "ic-artifact-pool", @@ -11590,7 +11604,7 @@ dependencies = [ "async-trait", "base64 0.13.1", "candid", - "clap 4.5.23", + "clap 4.5.26", "dfn_candid", "dfn_protobuf", "futures", @@ -11637,7 +11651,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "registry-canister", - "reqwest 0.12.9", + "reqwest 0.12.12", "rolling-file", "rosetta-core", "rusqlite", @@ -11670,7 +11684,7 @@ dependencies = [ "icp-ledger", "nix 0.24.3", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "rosetta-core", "serde", "serde_bytes", @@ -11751,7 +11765,7 @@ dependencies = [ "serde", "serde_json", "textplots", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", ] @@ -11762,7 +11776,7 @@ dependencies = [ "anyhow", "base64 0.13.1", "candid", - "clap 4.5.23", + "clap 4.5.26", "futures", "hex", "ic-agent", @@ -11788,7 +11802,7 @@ dependencies = [ "serde_json", "serde_yaml", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", ] @@ -11804,7 +11818,7 @@ dependencies = [ "canbench-rs", "candid", "candid_parser", - "clap 4.5.23", + "clap 4.5.26", "comparable", "futures", "hex", @@ -11879,7 +11893,7 @@ version = "0.9.0" dependencies = [ "bytes", "candid", - "clap 4.5.23", + "clap 4.5.26", "comparable", "ic-base-types", "ic-nervous-system-proto", @@ -12294,7 +12308,7 @@ name = "ic-starter" version = "0.9.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "ic-config", "ic-logger", "ic-management-canister-types", @@ -12346,7 +12360,7 @@ version = "0.9.0" dependencies = [ "candid", "ciborium", - "clap 4.5.23", + "clap 4.5.26", "hex", "ic-artifact-pool", "ic-base-types", @@ -12506,7 +12520,7 @@ dependencies = [ "prost 0.13.4", "rand 0.8.5", "slog", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tokio-metrics", "tokio-util", @@ -12518,7 +12532,7 @@ dependencies = [ name = "ic-state-tool" version = "0.9.0" dependencies = [ - "clap 4.5.23", + "clap 4.5.26", "hex", "ic-config", "ic-logger", @@ -12542,7 +12556,7 @@ dependencies = [ name = "ic-subnet-splitting" version = "0.9.0" dependencies = [ - "clap 4.5.23", + "clap 4.5.26", "hex", "ic-agent", "ic-base-types", @@ -12581,7 +12595,7 @@ dependencies = [ "prost 0.13.4", "rand 0.8.5", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "wsl", ] @@ -12638,7 +12652,7 @@ dependencies = [ "candid", "canister-test", "chrono", - "clap 4.5.23", + "clap 4.5.26", "config_types", "crossbeam-channel", "cycles-minting-canister", @@ -12716,7 +12730,7 @@ dependencies = [ "ic-types", "ic-types-test-utils", "ic-universal-canister", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "ic-wasm-types", "icp-ledger", "icrc-ledger-types", @@ -12744,7 +12758,7 @@ dependencies = [ "rcgen", "regex", "registry-canister", - "reqwest 0.12.9", + "reqwest 0.12.12", "ring 0.17.8", "rosetta-core", "rsa", @@ -12762,7 +12776,7 @@ dependencies = [ "strum", "strum_macros", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "time", "tokio", "tokio-util", @@ -13151,7 +13165,7 @@ dependencies = [ "ic_consensus_system_test_utils", "ic_consensus_threshold_sig_system_test_utils", "icrc-ledger-types", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde_json", "slog", ] @@ -13204,7 +13218,7 @@ dependencies = [ "serde_cbor", "serde_repr", "sha2 0.10.8", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -13251,7 +13265,7 @@ dependencies = [ "serde_with 1.14.0", "strum", "strum_macros", - "thiserror 2.0.8", + "thiserror 2.0.11", "thousands", ] @@ -13292,9 +13306,9 @@ dependencies = [ [[package]] name = "ic-utils" -version = "0.39.0" +version = "0.39.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb1da4a68c45146018b8496c157ad94126b9c202ab4400c6c0a9030c1ef0f0ba" +checksum = "e1fb9c35ef4976a71d37f3ebf73ee43bb52b360be60d91d3a77f74fbc875dda4" dependencies = [ "async-trait", "candid", @@ -13307,7 +13321,7 @@ dependencies = [ "sha2 0.10.8", "strum", "strum_macros", - "thiserror 1.0.69", + "thiserror 2.0.11", "time", "tokio", ] @@ -13371,7 +13385,7 @@ dependencies = [ "ic-types", "mockall", "rand 0.8.5", - "thiserror 2.0.8", + "thiserror 2.0.11", ] [[package]] @@ -13503,7 +13517,7 @@ checksum = "19fabaeecfe37f24b433c62489242fc54503d98d4cc8d0f9ef7544dfdfc0ddcb" dependencies = [ "anyhow", "candid", - "clap 4.5.23", + "clap 4.5.26", "libflate", "rustc-demangle", "serde", @@ -13543,7 +13557,7 @@ dependencies = [ "byte-unit", "candid", "chrono", - "clap 4.5.23", + "clap 4.5.26", "console 0.11.3", "futures", "hex", @@ -13635,10 +13649,10 @@ dependencies = [ "prometheus", "proptest", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "slog", "tempfile", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "url", ] @@ -13788,7 +13802,7 @@ dependencies = [ "prost 0.13.4", "rand 0.8.5", "registry-canister", - "reqwest 0.12.9", + "reqwest 0.12.12", "rsa", "serde_json", "slog", @@ -13827,7 +13841,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "registry-canister", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde_cbor", "serde_json", "slog", @@ -13885,7 +13899,7 @@ dependencies = [ "ic_consensus_system_test_utils", "k256", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde_bytes", "serde_cbor", "slog", @@ -13910,7 +13924,7 @@ dependencies = [ name = "icp-config" version = "0.9.0" dependencies = [ - "clap 4.5.23", + "clap 4.5.26", "eyre", "ic-config", "ic-replicated-state", @@ -14200,7 +14214,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -14262,9 +14276,9 @@ dependencies = [ [[package]] name = "impl-more" -version = "0.1.8" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aae21c3177a27788957044151cc2800043d127acaa460a47ebb9b84dfa2c6aa0" +checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" [[package]] name = "impl-rlp" @@ -14292,7 +14306,7 @@ checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -14362,12 +14376,12 @@ dependencies = [ [[package]] name = "inferno" -version = "0.12.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75a5d75fee4d36809e6b021e4b96b686e763d365ffdb03af2bd00786353f84fe" +checksum = "692eda1cc790750b9f5a5e3921ef9c117fd5498b97cfacbc910693e5b29002dc" dependencies = [ "ahash 0.8.11", - "clap 4.5.23", + "clap 4.5.26", "crossbeam-channel", "crossbeam-utils", "dashmap 6.1.0", @@ -14377,7 +14391,7 @@ dependencies = [ "log", "num-format", "once_cell", - "quick-xml 0.37.1", + "quick-xml 0.37.2", "rgb", "str_stack", ] @@ -14387,7 +14401,7 @@ name = "inject-files" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "partition_tools", "tempfile", "tokio", @@ -14404,13 +14418,13 @@ dependencies = [ [[package]] name = "insta" -version = "1.41.1" +version = "1.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e9ffc4d4892617c50a928c52b2961cb5174b6fc6ebf252b2fac9d21955c48b8" +checksum = "6513e4067e16e69ed1db5ab56048ed65db32d10ba5fc1217f5393f8f17d8b5a5" dependencies = [ "console 0.15.10", - "lazy_static", "linked-hash-map", + "once_cell", "similar", ] @@ -14584,9 +14598,9 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.76" +version = "0.3.77" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7" +checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" dependencies = [ "once_cell", "wasm-bindgen", @@ -14721,7 +14735,7 @@ dependencies = [ "k8s-openapi", "kube-core", "pem 3.0.4", - "rustls 0.23.20", + "rustls 0.23.21", "rustls-pemfile 2.2.0", "secrecy", "serde", @@ -14837,12 +14851,12 @@ checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" name = "launch-single-vm" version = "0.1.0" dependencies = [ - "clap 4.5.23", + "clap 4.5.26", "ic-prep", "ic-registry-subnet-type", "ic-system-test-driver", "ic-types", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "slog", "slog-async", @@ -15076,7 +15090,7 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "libc", "redox_syscall 0.5.8", ] @@ -15134,9 +15148,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.20" +version = "1.1.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2d16453e800a8cf6dd2fc3eb4bc99b786a9b90c663b8559a5b1a041bf89e472" +checksum = "df9b68e50e6e0b26f672573834882eb57759f6db9b3be2ea3c35c91188bb4eaa" dependencies = [ "cc", "libc", @@ -15168,9 +15182,9 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linux-raw-sys" -version = "0.4.14" +version = "0.4.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" +checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" [[package]] name = "linux_kernel_command_line" @@ -15262,9 +15276,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.22" +version = "0.4.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" +checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f" [[package]] name = "logos" @@ -15295,7 +15309,7 @@ dependencies = [ "proc-macro2", "quote", "regex-syntax 0.6.29", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -15321,6 +15335,19 @@ dependencies = [ "logos-codegen", ] +[[package]] +name = "loom" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" +dependencies = [ + "cfg-if 1.0.0", + "generator", + "scoped-tls", + "tracing", + "tracing-subscriber", +] + [[package]] name = "lru" version = "0.7.8" @@ -15545,7 +15572,7 @@ dependencies = [ "ic-registry-subnet-type", "ic-system-test-driver", "ic-types", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "itertools 0.12.1", "rand 0.8.5", "rand_chacha 0.3.1", @@ -15615,9 +15642,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.8.2" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394" +checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924" dependencies = [ "adler2", ] @@ -15675,7 +15702,7 @@ dependencies = [ "cfg-if 1.0.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -15704,25 +15731,23 @@ dependencies = [ [[package]] name = "moka" -version = "0.12.8" +version = "0.12.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32cf62eb4dd975d2dde76432fb1075c49e3ee2331cf36f1f8fd4b66550d32b6f" +checksum = "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" dependencies = [ "async-lock", - "async-trait", "crossbeam-channel", "crossbeam-epoch", "crossbeam-utils", - "event-listener 5.3.1", + "event-listener 5.4.0", "futures-util", - "once_cell", + "loom", "parking_lot 0.12.3", - "quanta", + "portable-atomic", "rustc_version", "smallvec", "tagptr", "thiserror 1.0.69", - "triomphe", "uuid", ] @@ -15775,9 +15800,9 @@ checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" [[package]] name = "neli" -version = "0.6.4" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1100229e06604150b3becd61a4965d5c70f3be1759544ea7274166f4be41ef43" +checksum = "93062a0dce6da2517ea35f301dfc88184ce18d3601ec786a727a87bf535deca9" dependencies = [ "byteorder", "libc", @@ -15787,9 +15812,9 @@ dependencies = [ [[package]] name = "neli-proc-macros" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c168194d373b1e134786274020dae7fc5513d565ea2ebb9bc9ff17ffb69106d4" +checksum = "0c8034b7fbb6f9455b2a96c19e6edf8dc9fc34c70449938d8ee3b4df363f61fe" dependencies = [ "either", "proc-macro2", @@ -15859,12 +15884,12 @@ dependencies = [ "ic-test-utilities", "ic-test-utilities-types", "ic-types", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "proxy_canister", "rand 0.8.5", "rand_chacha 0.3.1", "registry-canister", - "reqwest 0.12.9", + "reqwest 0.12.12", "slog", "tokio", "url", @@ -15881,7 +15906,7 @@ name = "nft_exporter" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "serde", "serde_json", ] @@ -15929,7 +15954,7 @@ version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "cfg-if 1.0.0", "libc", "memoffset 0.9.1", @@ -15941,7 +15966,7 @@ version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "cfg-if 1.0.0", "cfg_aliases", "libc", @@ -15991,7 +16016,7 @@ dependencies = [ "on_wire", "prost 0.13.4", "registry-canister", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde_cbor", "slog", "tokio", @@ -16220,7 +16245,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -16240,9 +16265,9 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" [[package]] name = "object" -version = "0.36.5" +version = "0.36.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e" +checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" dependencies = [ "crc32fast", "hashbrown 0.15.2", @@ -16512,7 +16537,7 @@ dependencies = [ "async-trait", "backoff", "candid", - "clap 4.5.23", + "clap 4.5.26", "env-file-reader", "exec", "get_if_addrs", @@ -16622,7 +16647,7 @@ dependencies = [ "ic-types", "ic_consensus_system_test_utils", "itertools 0.12.1", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "slog", "tokio", @@ -16848,7 +16873,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc" dependencies = [ "memchr", - "thiserror 2.0.8", + "thiserror 2.0.11", "ucd-trie", ] @@ -16872,7 +16897,7 @@ dependencies = [ "pest_meta", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -16928,12 +16953,12 @@ dependencies = [ [[package]] name = "phf" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" +checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" dependencies = [ "phf_macros", - "phf_shared 0.11.2", + "phf_shared 0.11.3", ] [[package]] @@ -16958,25 +16983,25 @@ dependencies = [ [[package]] name = "phf_generator" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" +checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" dependencies = [ - "phf_shared 0.11.2", + "phf_shared 0.11.3", "rand 0.8.5", ] [[package]] name = "phf_macros" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" +checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" dependencies = [ - "phf_generator 0.11.2", - "phf_shared 0.11.2", + "phf_generator 0.11.3", + "phf_shared 0.11.3", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -16985,16 +17010,16 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" dependencies = [ - "siphasher", + "siphasher 0.3.11", ] [[package]] name = "phf_shared" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" +checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" dependencies = [ - "siphasher", + "siphasher 1.0.1", ] [[package]] @@ -17005,29 +17030,29 @@ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" [[package]] name = "pin-project" -version = "1.1.7" +version = "1.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95" +checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.7" +version = "1.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c" +checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] name = "pin-project-lite" -version = "0.2.15" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff" +checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" [[package]] name = "pin-utils" @@ -17141,7 +17166,7 @@ dependencies = [ "ic-transport-types", "k256", "lazy_static", - "reqwest 0.12.9", + "reqwest 0.12.12", "schemars", "serde", "serde_bytes", @@ -17151,7 +17176,7 @@ dependencies = [ "slog", "strum", "strum_macros", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tracing", "tracing-appender", @@ -17176,7 +17201,7 @@ dependencies = [ "bitcoincore-rpc", "bytes", "candid", - "clap 4.5.23", + "clap 4.5.26", "ctrlc", "flate2", "form_urlencoded", @@ -17225,7 +17250,7 @@ dependencies = [ "ic-test-utilities", "ic-test-utilities-registry", "ic-types", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "ic-utils-thread", "ic-validator-ingress-message", "itertools 0.12.1", @@ -17234,7 +17259,7 @@ dependencies = [ "rand 0.8.5", "rcgen", "registry-canister", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_cbor", "serde_json", @@ -17430,12 +17455,12 @@ dependencies = [ [[package]] name = "prettyplease" -version = "0.2.25" +version = "0.2.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64d1ec885c64d0457d564db4ec299b2dae3f9c02808b8ad9c3a089c591b18033" +checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac" dependencies = [ "proc-macro2", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -17513,9 +17538,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "1.0.92" +version = "1.0.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" +checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" dependencies = [ "unicode-ident", ] @@ -17540,7 +17565,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "hex", "lazy_static", "procfs-core", @@ -17553,7 +17578,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "hex", ] @@ -17594,7 +17619,7 @@ checksum = "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" dependencies = [ "bit-set 0.8.0", "bit-vec 0.8.0", - "bitflags 2.6.0", + "bitflags 2.8.0", "lazy_static", "num-traits", "rand 0.8.5", @@ -17614,7 +17639,7 @@ checksum = "4ee1c9ac207483d5e7db4940700de86a9aae46ef90c48b57f99fe7edb8345e49" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -17654,7 +17679,7 @@ dependencies = [ "prost 0.12.6", "prost-types 0.12.6", "regex", - "syn 2.0.90", + "syn 2.0.96", "tempfile", ] @@ -17674,7 +17699,7 @@ dependencies = [ "prost 0.13.4", "prost-types 0.13.4", "regex", - "syn 2.0.90", + "syn 2.0.96", "tempfile", ] @@ -17688,7 +17713,7 @@ dependencies = [ "itertools 0.12.1", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -17701,7 +17726,7 @@ dependencies = [ "itertools 0.13.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -17786,9 +17811,9 @@ dependencies = [ [[package]] name = "pulley-interpreter" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "403a1a95f4c18a45c86c7bff13df00347afd0abcbf2e54af273c837339ffcf77" +checksum = "8324e531de91a3c25021a30fb7862d39cc516b61fbb801176acb5ff279ea887b" dependencies = [ "cranelift-bitset", "log", @@ -17797,9 +17822,9 @@ dependencies = [ [[package]] name = "quanta" -version = "0.12.4" +version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "773ce68d0bb9bc7ef20be3536ffe94e223e1f365bd374108b2659fac0c65cfe6" +checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e" dependencies = [ "crossbeam-utils", "libc", @@ -17827,9 +17852,9 @@ dependencies = [ [[package]] name = "quick-xml" -version = "0.37.1" +version = "0.37.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f22f29bdff3987b4d8632ef95fd6424ec7e4e0a57e2f4fc63e489e75357f6a03" +checksum = "165859e9e55f79d67b96c5d96f4e88b6f2695a1972849c15a6a3f5c59fc2c003" dependencies = [ "memchr", ] @@ -17845,9 +17870,9 @@ dependencies = [ "quinn-proto", "quinn-udp", "rustc-hash 2.1.0", - "rustls 0.23.20", + "rustls 0.23.21", "socket2 0.5.8", - "thiserror 2.0.8", + "thiserror 2.0.11", "tokio", "tracing", ] @@ -17863,10 +17888,10 @@ dependencies = [ "rand 0.8.5", "ring 0.17.8", "rustc-hash 2.1.0", - "rustls 0.23.20", + "rustls 0.23.21", "rustls-pki-types", "slab", - "thiserror 2.0.8", + "thiserror 2.0.11", "tinyvec", "tracing", "web-time", @@ -17888,9 +17913,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.37" +version = "1.0.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" +checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" dependencies = [ "proc-macro2", ] @@ -18112,7 +18137,7 @@ version = "0.9.0" dependencies = [ "anyhow", "candid", - "clap 4.5.23", + "clap 4.5.26", "ic-agent", "k256", "rate-limits-api", @@ -18166,7 +18191,7 @@ dependencies = [ "serde_cbor", "serde_json", "strum", - "thiserror 2.0.8", + "thiserror 2.0.11", "uuid", ] @@ -18183,11 +18208,11 @@ dependencies = [ [[package]] name = "raw-cpuid" -version = "11.2.0" +version = "11.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ab240315c661615f2ee9f0f2cd32d5a7343a84d5ebcccb99d46e6637565e7b0" +checksum = "c6928fa44c097620b706542d428957635951bade7143269085389d42c8a4927e" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", ] [[package]] @@ -18212,9 +18237,9 @@ dependencies = [ [[package]] name = "rcgen" -version = "0.13.1" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54077e1872c46788540de1ea3d7f4ccb1983d12f9aa909b234468676c1a36779" +checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" dependencies = [ "pem 3.0.4", "ring 0.17.8", @@ -18248,7 +18273,7 @@ version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", ] [[package]] @@ -18511,9 +18536,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.12.9" +version = "0.12.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" +checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" dependencies = [ "base64 0.22.1", "bytes", @@ -18537,7 +18562,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "quinn", - "rustls 0.23.20", + "rustls 0.23.21", "rustls-native-certs 0.8.1", "rustls-pemfile 2.2.0", "rustls-pki-types", @@ -18549,6 +18574,7 @@ dependencies = [ "tokio-rustls 0.26.1", "tokio-socks", "tokio-util", + "tower 0.5.2", "tower-service", "url", "wasm-bindgen", @@ -18806,7 +18832,7 @@ dependencies = [ "on_wire", "prost 0.13.4", "rand 0.8.5", - "reqwest 0.12.9", + "reqwest 0.12.12", "rosetta-core", "serde", "serde_json", @@ -18861,7 +18887,7 @@ dependencies = [ "regex", "relative-path", "rustc_version", - "syn 2.0.90", + "syn 2.0.96", "unicode-ident", ] @@ -18984,11 +19010,11 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.42" +version = "0.38.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85" +checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "errno 0.3.10", "libc", "linux-raw-sys", @@ -19023,9 +19049,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.20" +version = "0.23.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5065c3f250cbd332cd894be57c40fa52387247659b14a2d6041d121547903b1b" +checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8" dependencies = [ "brotli 7.0.0", "brotli-decompressor", @@ -19059,7 +19085,7 @@ dependencies = [ "ring 0.17.8", "serde", "serde_json", - "thiserror 2.0.8", + "thiserror 2.0.11", "webpki-roots 0.26.7", "x509-parser", ] @@ -19086,7 +19112,7 @@ dependencies = [ "openssl-probe", "rustls-pki-types", "schannel", - "security-framework 3.1.0", + "security-framework 3.2.0", ] [[package]] @@ -19127,7 +19153,7 @@ dependencies = [ "jni", "log", "once_cell", - "rustls 0.23.20", + "rustls 0.23.21", "rustls-native-certs 0.7.3", "rustls-platform-verifier-android", "rustls-webpki 0.102.8", @@ -19166,9 +19192,9 @@ dependencies = [ [[package]] name = "rustversion" -version = "1.0.18" +version = "1.0.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248" +checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" [[package]] name = "rusty-fork" @@ -19218,7 +19244,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -19252,7 +19278,7 @@ dependencies = [ "proc-macro2", "quote", "serde_derive_internals", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -19311,7 +19337,7 @@ dependencies = [ "ic-system-test-driver", "ic_consensus_system_test_utils", "nns_dapp", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde_json", "slog", ] @@ -19412,7 +19438,7 @@ version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "core-foundation 0.9.4", "core-foundation-sys", "libc", @@ -19422,11 +19448,11 @@ dependencies = [ [[package]] name = "security-framework" -version = "3.1.0" +version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81d3f8c9bfcc3cbb6b0179eb57042d75b1582bdc65c3cb95f3fa999509c03cbc" +checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "core-foundation 0.10.0", "core-foundation-sys", "libc", @@ -19435,9 +19461,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.13.0" +version = "2.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1863fd3768cd83c56a7f60faa4dc0d403f1b6df0a38c3c25f44b7894e45370d5" +checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" dependencies = [ "core-foundation-sys", "libc", @@ -19449,7 +19475,7 @@ version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4eb30575f3638fc8f6815f448d50cb1a2e255b0897985c8c59f4d37b72a07b06" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "cssparser", "derive_more 0.99.18", "fxhash", @@ -19473,9 +19499,9 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.216" +version = "1.0.217" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e" +checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" dependencies = [ "serde_derive", ] @@ -19533,13 +19559,13 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.216" +version = "1.0.217" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" +checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -19550,14 +19576,14 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] name = "serde_json" -version = "1.0.133" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377" +checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" dependencies = [ "itoa", "memchr", @@ -19606,7 +19632,7 @@ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -19629,7 +19655,7 @@ dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -19691,7 +19717,7 @@ dependencies = [ "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -19721,7 +19747,7 @@ name = "setupos-disable-checks" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "indoc", "linux_kernel_command_line", "partition_tools", @@ -19735,7 +19761,7 @@ name = "setupos-inject-configuration" version = "0.1.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "config", "partition_tools", "serde", @@ -19751,7 +19777,7 @@ name = "setupos_tool" version = "1.0.0" dependencies = [ "anyhow", - "clap 4.5.23", + "clap 4.5.26", "config", "config_types", "deterministic_ips", @@ -19873,13 +19899,13 @@ checksum = "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e" [[package]] name = "simple_asn1" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" +checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" dependencies = [ "num-bigint 0.4.6", "num-traits", - "thiserror 1.0.69", + "thiserror 2.0.11", "time", ] @@ -19909,6 +19935,12 @@ version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" +[[package]] +name = "siphasher" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" + [[package]] name = "slab" version = "0.4.9" @@ -20038,7 +20070,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20066,7 +20098,7 @@ dependencies = [ "ic-system-test-driver", "ic-types", "ic-universal-canister", - "ic-utils 0.39.0", + "ic-utils 0.39.2", "ic_consensus_system_test_utils", "icp-ledger", "icrc-ledger-agent", @@ -20124,7 +20156,7 @@ dependencies = [ "ic-registry-subnet-type", "ic-system-test-driver", "ic-types", - "reqwest 0.12.9", + "reqwest 0.12.12", "slog", ] @@ -20304,7 +20336,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta-derive 0.2.0", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20316,7 +20348,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta-derive 0.3.0", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20327,7 +20359,7 @@ checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20338,7 +20370,7 @@ checksum = "152a0b65a590ff6c3da95cabe2353ee04e6167c896b28e3b14478c2636c922fc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20360,7 +20392,7 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20388,9 +20420,9 @@ checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142" [[package]] name = "symbolic-common" -version = "12.12.4" +version = "12.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd33e73f154e36ec223c18013f7064a2c120f1162fc086ac9933542def186b00" +checksum = "8150eae9699e3c73a3e6431dc1f80d87748797c0457336af23e94c1de619ed24" dependencies = [ "debugid", "memmap2", @@ -20400,9 +20432,9 @@ dependencies = [ [[package]] name = "symbolic-demangle" -version = "12.12.4" +version = "12.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89e51191290147f071777e37fe111800bb82a9059f9c95b19d2dd41bfeddf477" +checksum = "95f4a9846f7a8933b6d198c022faa2c9bd89e1a970bed9d9a98d25708bf8de17" dependencies = [ "rustc-demangle", "symbolic-common", @@ -20421,9 +20453,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.90" +version = "2.0.96" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31" +checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" dependencies = [ "proc-macro2", "quote", @@ -20475,7 +20507,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20506,11 +20538,11 @@ dependencies = [ "anyhow", "async-trait", "axum", - "clap 4.5.23", + "clap 4.5.26", "http 1.2.0", "itertools 0.12.1", - "reqwest 0.12.9", - "thiserror 2.0.8", + "reqwest 0.12.12", + "thiserror 2.0.11", "tokio", "url", ] @@ -20615,12 +20647,13 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.14.0" +version = "3.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c" +checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" dependencies = [ "cfg-if 1.0.0", "fastrand", + "getrandom", "once_cell", "rustix", "windows-sys 0.59.0", @@ -20691,7 +20724,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta 0.2.0", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20703,7 +20736,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta 0.3.0", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20743,7 +20776,7 @@ dependencies = [ "ic_consensus_system_test_utils", "nns_dapp", "os_qualification_utils", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_json", "slog", @@ -20778,11 +20811,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.8" +version = "2.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08f5383f3e0071702bf93ab5ee99b52d26936be9dedd9413067cbdcddcb6141a" +checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" dependencies = [ - "thiserror-impl 2.0.8", + "thiserror-impl 2.0.11", ] [[package]] @@ -20793,18 +20826,18 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] name = "thiserror-impl" -version = "2.0.8" +version = "2.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2f357fcec90b3caef6623a099691be676d033b40a058ac95d2a6ade6fa0c943" +checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -20927,9 +20960,9 @@ dependencies = [ [[package]] name = "tinyvec" -version = "1.8.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" +checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" dependencies = [ "tinyvec_macros", ] @@ -20980,14 +21013,14 @@ checksum = "8d9ef545650e79f30233c0003bcc2504d7efac6dad25fca40744de773fe2049c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] name = "tokio" -version = "1.42.0" +version = "1.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" +checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" dependencies = [ "backtrace", "bytes", @@ -21013,13 +21046,13 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -21061,7 +21094,7 @@ version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37" dependencies = [ - "rustls 0.23.20", + "rustls 0.23.21", "tokio", ] @@ -21204,7 +21237,7 @@ dependencies = [ "prost-build 0.13.4", "prost-types 0.13.4", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -21254,7 +21287,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" dependencies = [ "base64 0.21.7", - "bitflags 2.6.0", + "bitflags 2.8.0", "bytes", "http 1.2.0", "http-body 1.0.1", @@ -21273,7 +21306,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697" dependencies = [ "async-compression", - "bitflags 2.6.0", + "bitflags 2.8.0", "bytes", "futures-core", "http 1.2.0", @@ -21375,7 +21408,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -21515,12 +21548,6 @@ dependencies = [ "serde_json", ] -[[package]] -name = "triomphe" -version = "0.1.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "859eb650cfee7434994602c3a68b25d77ad9e68c8a6cd491616ef86661382eb3" - [[package]] name = "trust-dns-proto" version = "0.22.0" @@ -21643,11 +21670,10 @@ dependencies = [ [[package]] name = "ulid" -version = "1.1.3" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04f903f293d11f31c0c29e4148f6dc0d033a7f80cebc0282bea147611667d289" +checksum = "f294bff79170ed1c5633812aff1e565c35d993a36e757f9bc0accf5eec4e6045" dependencies = [ - "getrandom", "rand 0.8.5", "web-time", ] @@ -21660,9 +21686,9 @@ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" [[package]] name = "unicase" -version = "2.8.0" +version = "2.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df" +checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" [[package]] name = "unicode-bidi" @@ -21814,9 +21840,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.11.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" +checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4" dependencies = [ "getrandom", "serde", @@ -21824,9 +21850,9 @@ dependencies = [ [[package]] name = "valuable" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" +checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" [[package]] name = "vcpkg" @@ -21873,7 +21899,7 @@ dependencies = [ name = "vsock_guest" version = "1.0.0" dependencies = [ - "clap 4.5.23", + "clap 4.5.26", "vsock_lib", ] @@ -21890,7 +21916,7 @@ version = "1.0.0" dependencies = [ "anyhow", "regex", - "reqwest 0.12.9", + "reqwest 0.12.12", "rusb", "serde", "serde_json", @@ -22002,34 +22028,35 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.99" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396" +checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" dependencies = [ "cfg-if 1.0.0", "once_cell", + "rustversion", "wasm-bindgen-macro", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.99" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79" +checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" dependencies = [ "bumpalo", "log", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.49" +version = "0.4.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38176d9b44ea84e9184eff0bc34cc167ed044f816accfe5922e54d84cf48eca2" +checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" dependencies = [ "cfg-if 1.0.0", "js-sys", @@ -22040,9 +22067,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.99" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe" +checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -22050,22 +22077,25 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.99" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2" +checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.99" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6" +checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" +dependencies = [ + "unicode-ident", +] [[package]] name = "wasm-encoder" @@ -22098,12 +22128,12 @@ dependencies = [ [[package]] name = "wasm-encoder" -version = "0.222.0" +version = "0.223.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3432682105d7e994565ef928ccf5856cf6af4ba3dddebedb737f61caed70f956" +checksum = "7e636076193fa68103e937ac951b5f2f587624097017d764b8984d9c0f149464" dependencies = [ "leb128", - "wasmparser 0.222.0", + "wasmparser 0.223.0", ] [[package]] @@ -22126,7 +22156,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d28bc49ba1e5c5b61ffa7a2eace10820443c4b7d1c0b144109261d14570fdf8" dependencies = [ "ahash 0.8.11", - "bitflags 2.6.0", + "bitflags 2.8.0", "hashbrown 0.14.5", "indexmap 2.7.0", "semver", @@ -22140,7 +22170,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca917a21307d3adf2b9857b94dd05ebf8496bdcff4437a9b9fb3899d3e6c74e7" dependencies = [ "ahash 0.8.11", - "bitflags 2.6.0", + "bitflags 2.8.0", "hashbrown 0.14.5", "indexmap 2.7.0", "semver", @@ -22153,7 +22183,7 @@ version = "0.221.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9845c470a2e10b61dd42c385839cdd6496363ed63b5c9e420b5488b77bd22083" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "hashbrown 0.15.2", "indexmap 2.7.0", "semver", @@ -22162,11 +22192,11 @@ dependencies = [ [[package]] name = "wasmparser" -version = "0.222.0" +version = "0.223.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4adf50fde1b1a49c1add6a80d47aea500c88db70551805853aa8b88f3ea27ab5" +checksum = "d5a99faceb1a5a84dd6084ec4bfa4b2ab153b5793b43fd8f58b89232634afc35" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.8.0", "indexmap 2.7.0", "semver", ] @@ -22195,12 +22225,12 @@ dependencies = [ [[package]] name = "wasmtime" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f639ecae347b9a2227e453a7b7671e84370a0b61f47a15e0390fe9b7725e47b3" +checksum = "edd30973c65eceb0f37dfcc430d83abd5eb24015fdfcab6912f52949287e04f0" dependencies = [ "anyhow", - "bitflags 2.6.0", + "bitflags 2.8.0", "bumpalo", "cc", "cfg-if 1.0.0", @@ -22239,23 +22269,23 @@ dependencies = [ [[package]] name = "wasmtime-asm-macros" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "882a18800471cfc063c8b3ccf75723784acc3fd534009ac09421f2fac2fcdcec" +checksum = "c6c21dd30d1f3f93ee390ac1a7ec304ecdbfdab6390e1add41a1f52727b0992b" dependencies = [ "cfg-if 1.0.0", ] [[package]] name = "wasmtime-component-macro" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb5c0a77c9e1927c3d471f53cc13767c3d3438e5d5ffd394e3eb31c86445fd60" +checksum = "9f948a6ef3119d52c9f12936970de28ddf3f9bea04bc65571f4a92d2e5ab38f4" dependencies = [ "anyhow", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", "wasmtime-component-util", "wasmtime-wit-bindgen", "wit-parser", @@ -22263,15 +22293,15 @@ dependencies = [ [[package]] name = "wasmtime-component-util" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43702ca98bf5162eca0573db691ed9ecd36d716f8c6688410fe26ec16b6f9bcb" +checksum = "b9275aa01ceaaa2fa6c0ecaa5267518d80b9d6e9ae7c7ea42f4c6e073e6a69ef" [[package]] name = "wasmtime-cranelift" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20070aa5b75080a8932ec328419faf841df2bc6ceb16b55b0df2b952098392a2" +checksum = "0701a44a323267aae4499672dae422b266cee3135a23b640972ec8c0e10a44a2" dependencies = [ "anyhow", "cfg-if 1.0.0", @@ -22294,9 +22324,9 @@ dependencies = [ [[package]] name = "wasmtime-environ" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2604ddb24879d4dc1dedcb7081d7a8e017259bce916fdae097a97db52cbaab80" +checksum = "264c968c1b81d340355ece2be0bc31a10f567ccb6ce08512c3b7d10e26f3cbe5" dependencies = [ "anyhow", "cranelift-bitset", @@ -22317,9 +22347,9 @@ dependencies = [ [[package]] name = "wasmtime-fiber" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98593412d2b167ebe2b59d4a17a184978a72f976b53b3a0ec05629451079ac1d" +checksum = "78505221fd5bd7b07b4e1fa2804edea49dc231e626ad6861adc8f531812973e6" dependencies = [ "anyhow", "cc", @@ -22332,9 +22362,9 @@ dependencies = [ [[package]] name = "wasmtime-jit-icache-coherence" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d40d7722b9e1fbeae135715710a8a2570b1e6cf72b74dd653962d89831c6c70d" +checksum = "9bedb677ca1b549d98f95e9e1f9251b460090d99a2c196a0614228c064bf2e59" dependencies = [ "anyhow", "cfg-if 1.0.0", @@ -22344,26 +22374,26 @@ dependencies = [ [[package]] name = "wasmtime-slab" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8579c335220b4ece9aa490a0e8b46de78cd342b195ab21ff981d095e14b52383" +checksum = "564905638c132c275d365c1fa074f0b499790568f43148d29de84ccecfb5cb31" [[package]] name = "wasmtime-versioned-export-macros" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7de0a56fb0a69b185968f2d7a9ba54750920a806470dff7ad8de91ac06d277e" +checksum = "1e91092e6cf77390eeccee273846a9327f3e8f91c3c6280f60f37809f0e62d29" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] name = "wasmtime-winch" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abd309943c443f5590d12f9aba9ba63c481091c955a0a14de0c2a9e0e3aaeca9" +checksum = "b111d909dc604c741bd8ac2f4af373eaa5c68c34b5717271bcb687688212cef8" dependencies = [ "anyhow", "cranelift-codegen", @@ -22378,9 +22408,9 @@ dependencies = [ [[package]] name = "wasmtime-wit-bindgen" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "969f83022dac3435d6469edb582ceed04cfe32aa44dc3ef16e5cb55574633df8" +checksum = "5f38f7a5eb2f06f53fe943e7fb8bf4197f7cf279f1bc52c0ce56e9d3ffd750a4" dependencies = [ "anyhow", "heck 0.5.0", @@ -22403,31 +22433,31 @@ dependencies = [ [[package]] name = "wast" -version = "222.0.0" +version = "223.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ce7191f4b7da0dd300cc32476abae6457154e4625d9b1bc26890828a9a26f6e" +checksum = "d59b2ba8a2ff9f06194b7be9524f92e45e70149f4dacc0d0c7ad92b59ac875e4" dependencies = [ "bumpalo", "leb128", "memchr", "unicode-width 0.2.0", - "wasm-encoder 0.222.0", + "wasm-encoder 0.223.0", ] [[package]] name = "wat" -version = "1.222.0" +version = "1.223.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fde61b4b52f9a84ae31b5e8902a2cd3162ea45d8bf564c729c3288fe52f4334" +checksum = "662786915c427e4918ff01eabb3c4756d4d947cd8f635761526b4cc9da2eaaad" dependencies = [ - "wast 222.0.0", + "wast 223.0.0", ] [[package]] name = "web-sys" -version = "0.3.76" +version = "0.3.77" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc" +checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" dependencies = [ "js-sys", "wasm-bindgen", @@ -22548,9 +22578,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "winch-codegen" -version = "28.0.0" +version = "28.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9110decc2983ed94de904804dcd979ba59cbabc78a94fec6b1d8468ec513d0f6" +checksum = "6232f40a795be2ce10fc761ed3b403825126a60d12491ac556ea104a932fd18a" dependencies = [ "anyhow", "cranelift-codegen", @@ -22563,6 +22593,16 @@ dependencies = [ "wasmtime-environ", ] +[[package]] +name = "windows" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" +dependencies = [ + "windows-core 0.58.0", + "windows-targets 0.52.6", +] + [[package]] name = "windows-core" version = "0.52.0" @@ -22572,6 +22612,41 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-core" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-result", + "windows-strings", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-implement" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.96", +] + +[[package]] +name = "windows-interface" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.96", +] + [[package]] name = "windows-registry" version = "0.2.0" @@ -22752,9 +22827,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winnow" -version = "0.6.20" +version = "0.6.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" +checksum = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a" dependencies = [ "memchr", ] @@ -22870,9 +22945,9 @@ dependencies = [ [[package]] name = "xattr" -version = "1.3.1" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" +checksum = "e105d177a3871454f754b33bb0ee637ecaaac997446375fd3e5d43a2ed00c909" dependencies = [ "libc", "linux-raw-sys", @@ -22969,7 +23044,7 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", "synstructure", ] @@ -22991,7 +23066,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -23011,7 +23086,7 @@ checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", "synstructure", ] @@ -23032,7 +23107,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] @@ -23054,7 +23129,7 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.96", ] [[package]] diff --git a/rs/protobuf/src/proxy.rs b/rs/protobuf/src/proxy.rs index d34d66fea31..ef4942c068a 100644 --- a/rs/protobuf/src/proxy.rs +++ b/rs/protobuf/src/proxy.rs @@ -132,7 +132,7 @@ impl ProxyDecodeError { T: Error + Eq + 'static, { self.source() - .is_some_and(false, |err| err.downcast_ref() == Some(&other_err)) + .is_some_and(|err| err.downcast_ref() == Some(&other_err)) } } diff --git a/rs/tla_instrumentation/local_key/src/lib.rs b/rs/tla_instrumentation/local_key/src/lib.rs index 803bb734775..aaf500df76d 100644 --- a/rs/tla_instrumentation/local_key/src/lib.rs +++ b/rs/tla_instrumentation/local_key/src/lib.rs @@ -185,7 +185,7 @@ impl LocalKey { slot: &'a mut Option, } - impl<'a, T: 'static> Drop for Guard<'a, T> { + impl<'a, T: 'static> Drop for Guard<'_, T> { fn drop(&mut self) { // This should not panic. // @@ -414,7 +414,7 @@ where struct TransparentOption<'a, T> { value: &'a Option, } - impl<'a, T: fmt::Debug> fmt::Debug for TransparentOption<'a, T> { + impl<'a, T: fmt::Debug> fmt::Debug for TransparentOption<'_, T> { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self.value.as_ref() { Some(value) => value.fmt(f), From d22137d1b48b4f0d172d42f5c5c07d2a99feb7a2 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Fri, 17 Jan 2025 14:17:57 +0000 Subject: [PATCH 08/34] . --- rs/bitcoin/adapter/BUILD.bazel | 2 +- rs/bitcoin/adapter/src/lib.rs | 2 +- .../canary_proxy/src/support/auto_server.rs | 4 ++-- .../rate_limits/api/src/schema_versions/v1.rs | 2 +- .../src/encoding/tests/compatibility.rs | 1 - rs/config/src/config_sample.rs | 1 - rs/consensus/utils/src/pool_reader.rs | 2 +- .../crypto_lib/bls12_381/type/src/lib.rs | 2 +- .../bls12_381/tests/integration_tests.rs | 2 +- .../src/utils/group/algos.rs | 2 +- .../crypto_service_provider/src/vault/api.rs | 10 +++++----- .../src/vault/local_csp_vault/mod.rs | 1 - .../canister_threshold_sigs/src/lib.rs | 14 +++++++------- rs/crypto/test_utils/tls/src/test_client.rs | 2 +- rs/crypto/test_utils/tls/src/test_server.rs | 2 +- rs/embedders/src/wasm_utils.rs | 4 +--- rs/http_utils/src/file_downloader.rs | 2 +- .../guestos_tool/src/prometheus_metric.rs | 1 - .../src/crypto/sign/canister_threshold_sig.rs | 1 - rs/memory_tracker/src/tests.rs | 17 ++++++++++++++--- rs/orchestrator/src/registration.rs | 2 +- rs/p2p/consensus_manager/src/receiver.rs | 7 ++----- .../tests/bitcoin_integration_tests.rs | 6 +++++- .../src/canister_state/queues.rs | 2 +- rs/rust_canisters/memory_test/src/main.rs | 2 +- rs/state_machine_tests/tests/tests.rs | 4 ++++ rs/tla_instrumentation/local_key/src/lib.rs | 4 ++-- rs/types/types/src/consensus/idkg.rs | 6 +++--- rs/workload_generator/src/content_length.rs | 6 +++--- 29 files changed, 61 insertions(+), 52 deletions(-) diff --git a/rs/bitcoin/adapter/BUILD.bazel b/rs/bitcoin/adapter/BUILD.bazel index 2050fc86d39..711bc489f77 100644 --- a/rs/bitcoin/adapter/BUILD.bazel +++ b/rs/bitcoin/adapter/BUILD.bazel @@ -90,7 +90,7 @@ rust_binary( rust_test( name = "adapter_test", crate = ":adapter", - data = [ + compile_data = [ "test_data/first_2500_mainnet_headers.json", "test_data/first_2500_testnet_headers.json", ], diff --git a/rs/bitcoin/adapter/src/lib.rs b/rs/bitcoin/adapter/src/lib.rs index ffec373df3f..61329ee5136 100644 --- a/rs/bitcoin/adapter/src/lib.rs +++ b/rs/bitcoin/adapter/src/lib.rs @@ -1,4 +1,4 @@ -#![warn(missing_docs)] +#![cfg_attr(not(test), warn(missing_docs))] //! The Bitcoin adapter interacts with the Bitcoin P2P network to obtain blocks //! and publish transactions. Moreover, it interacts with the Bitcoin system diff --git a/rs/boundary_node/canary_proxy/src/support/auto_server.rs b/rs/boundary_node/canary_proxy/src/support/auto_server.rs index 0dd0d4079a7..cd5ce9926fe 100644 --- a/rs/boundary_node/canary_proxy/src/support/auto_server.rs +++ b/rs/boundary_node/canary_proxy/src/support/auto_server.rs @@ -123,7 +123,7 @@ enum Version { H1, H2, } -async fn read_version<'a, A>(mut reader: A) -> IoResult<(Version, Rewind)> +async fn read_version(mut reader: A) -> IoResult<(Version, Rewind)> where A: AsyncRead + Unpin, { @@ -171,7 +171,7 @@ where if this.buf.filled() == H2_PREFACE { *this.version = Version::H2; } - return Poll::Ready(Ok((*this.version, this.buf.filled().to_vec()))); + Poll::Ready(Ok((*this.version, this.buf.filled().to_vec()))) } } diff --git a/rs/boundary_node/rate_limits/api/src/schema_versions/v1.rs b/rs/boundary_node/rate_limits/api/src/schema_versions/v1.rs index 7067518a60f..42644593858 100644 --- a/rs/boundary_node/rate_limits/api/src/schema_versions/v1.rs +++ b/rs/boundary_node/rate_limits/api/src/schema_versions/v1.rs @@ -28,7 +28,7 @@ pub enum RequestType { /// Implement serde parser for Action struct ActionVisitor; -impl<'de> de::Visitor<'de> for ActionVisitor { +impl de::Visitor<'_> for ActionVisitor { type Value = Action; fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result { diff --git a/rs/canonical_state/src/encoding/tests/compatibility.rs b/rs/canonical_state/src/encoding/tests/compatibility.rs index dd46b757209..c451d085f61 100644 --- a/rs/canonical_state/src/encoding/tests/compatibility.rs +++ b/rs/canonical_state/src/encoding/tests/compatibility.rs @@ -333,7 +333,6 @@ fn canonical_encoding_stream_header_v19_plus() { /// 00 # unsigned(0) /// 03 # field_index(SubnetMetrics::update_transactions_total) /// 19 1068 # unsigned(4200) - /// ``` /// Used http://cbor.me/ for printing the human friendly output. #[test] diff --git a/rs/config/src/config_sample.rs b/rs/config/src/config_sample.rs index 46069274b59..147248c05c6 100644 --- a/rs/config/src/config_sample.rs +++ b/rs/config/src/config_sample.rs @@ -60,7 +60,6 @@ /// # EXAMPLE: y: "bad" /// y: "good" /// ``` - pub const SAMPLE_CONFIG: &str = r#" { // ============================================ diff --git a/rs/consensus/utils/src/pool_reader.rs b/rs/consensus/utils/src/pool_reader.rs index ebdf2bf8e5d..2e015943a82 100644 --- a/rs/consensus/utils/src/pool_reader.rs +++ b/rs/consensus/utils/src/pool_reader.rs @@ -64,7 +64,7 @@ impl<'a> PoolReader<'a> { /// Get the range of ancestor blocks of `block` specified (inclusively) by /// `min` and `max`. This assumes the correctness of the state of the pool. pub fn get_range( - &'a self, + &self, block: Block, min: Height, max: Height, diff --git a/rs/crypto/internal/crypto_lib/bls12_381/type/src/lib.rs b/rs/crypto/internal/crypto_lib/bls12_381/type/src/lib.rs index a238c6d4869..b25fe1ba06e 100644 --- a/rs/crypto/internal/crypto_lib/bls12_381/type/src/lib.rs +++ b/rs/crypto/internal/crypto_lib/bls12_381/type/src/lib.rs @@ -852,7 +852,7 @@ macro_rules! define_affine_and_projective_types { const WINDOW_MASK: u8 = (1 << Self::WINDOW_BITS) - 1; // The total number of windows in a scalar - const WINDOWS : usize = Self::SUBGROUP_BITS.div_ceil(define_affine_and_projective_types!(G1Affine, G1Projective, 48)); + const WINDOWS: usize = Self::SUBGROUP_BITS.div_ceil(Self::WINDOW_BITS); // We must select from 2^WINDOW_BITS elements in each table // group. However one element of the table group is always the diff --git a/rs/crypto/internal/crypto_lib/threshold_sig/bls12_381/tests/integration_tests.rs b/rs/crypto/internal/crypto_lib/threshold_sig/bls12_381/tests/integration_tests.rs index f400c9f5abc..ef5f87832da 100644 --- a/rs/crypto/internal/crypto_lib/threshold_sig/bls12_381/tests/integration_tests.rs +++ b/rs/crypto/internal/crypto_lib/threshold_sig/bls12_381/tests/integration_tests.rs @@ -190,7 +190,7 @@ fn encrypted_chunks_should_validate(epoch: Epoch) { /// Context: Most of this code converts the data used for the fs /// encryption to the form needed by the zk crypto. Suggestion: /// Put the conversion code in the library. - + /// /// Combine a big endian array of group elements (first chunk is the /// most significant) into a single group element. fn g1_from_big_endian_chunks(terms: &[G1Affine]) -> G1Affine { diff --git a/rs/crypto/internal/crypto_lib/threshold_sig/canister_threshold_sig/src/utils/group/algos.rs b/rs/crypto/internal/crypto_lib/threshold_sig/canister_threshold_sig/src/utils/group/algos.rs index 350647e9ee9..cb455812138 100644 --- a/rs/crypto/internal/crypto_lib/threshold_sig/canister_threshold_sig/src/utils/group/algos.rs +++ b/rs/crypto/internal/crypto_lib/threshold_sig/canister_threshold_sig/src/utils/group/algos.rs @@ -124,7 +124,7 @@ macro_rules! declare_mul2_table_impl { // The number of windows (of WINDOW_BITS size) required to examine every // bit of a scalar of this curve. - const WINDOWS: usize = (<$scalar>::BITS + Self::WINDOW_BITS - 1) / Self::WINDOW_BITS; + const WINDOWS: usize = <$scalar>::BITS.div_ceil(Self::WINDOW_BITS); pub fn for_standard_generators() -> Self { let g = <$projective>::generator(); diff --git a/rs/crypto/internal/crypto_service_provider/src/vault/api.rs b/rs/crypto/internal/crypto_service_provider/src/vault/api.rs index 3b82edf4386..93727e5bc21 100644 --- a/rs/crypto/internal/crypto_service_provider/src/vault/api.rs +++ b/rs/crypto/internal/crypto_service_provider/src/vault/api.rs @@ -187,31 +187,31 @@ impl NodeKeysErrors { } pub fn keys_in_registry_missing_locally(&self) -> bool { - self.node_signing_key_error.as_ref().map_or(false, |err| { + self.node_signing_key_error.as_ref().is_some_and(|err| { err.external_public_key_error.is_none() && err.contains_local_public_or_secret_key_error() }) || self .committee_signing_key_error .as_ref() - .map_or(false, |err| { + .is_some_and(|err| { err.external_public_key_error.is_none() && err.contains_local_public_or_secret_key_error() }) - || self.tls_certificate_error.as_ref().map_or(false, |err| { + || self.tls_certificate_error.as_ref().is_some_and(|err| { err.external_public_key_error.is_none() && err.contains_local_public_or_secret_key_error() }) || self .dkg_dealing_encryption_key_error .as_ref() - .map_or(false, |err| { + .is_some_and(|err| { err.external_public_key_error.is_none() && err.contains_local_public_or_secret_key_error() }) || self .idkg_dealing_encryption_key_error .as_ref() - .map_or(false, |err| { + .is_some_and(|err| { err.external_public_key_error.is_none() && err.contains_local_public_or_secret_key_error() }) diff --git a/rs/crypto/internal/crypto_service_provider/src/vault/local_csp_vault/mod.rs b/rs/crypto/internal/crypto_service_provider/src/vault/local_csp_vault/mod.rs index 4f60844b5db..32a6cc4627d 100644 --- a/rs/crypto/internal/crypto_service_provider/src/vault/local_csp_vault/mod.rs +++ b/rs/crypto/internal/crypto_service_provider/src/vault/local_csp_vault/mod.rs @@ -73,7 +73,6 @@ use std::sync::Arc; /// only during node key generation and rotation). /// /// [1]: https://medium.com/digitalfrontiers/rust-dynamic-dispatching-deep-dive-236a5896e49b - pub struct LocalCspVault< R: Rng + CryptoRng, S: SecretKeyStore, diff --git a/rs/crypto/test_utils/canister_threshold_sigs/src/lib.rs b/rs/crypto/test_utils/canister_threshold_sigs/src/lib.rs index 1a6fc5f8000..385db085960 100644 --- a/rs/crypto/test_utils/canister_threshold_sigs/src/lib.rs +++ b/rs/crypto/test_utils/canister_threshold_sigs/src/lib.rs @@ -821,7 +821,7 @@ pub mod node { pub fn filter_by_receivers<'a, T: AsRef + 'a>( &'a self, idkg_receivers: T, - ) -> impl Iterator + 'a { + ) -> impl Iterator + 'a { self.iter() .filter(move |node| idkg_receivers.as_ref().contains(node.id)) } @@ -829,7 +829,7 @@ pub mod node { pub fn filter_by_dealers<'a, T: AsRef + 'a>( &'a self, idkg_dealers: T, - ) -> impl Iterator + 'a { + ) -> impl Iterator + 'a { self.iter() .filter(move |node| idkg_dealers.as_ref().contains(node.id)) } @@ -838,7 +838,7 @@ pub mod node { &'a self, minimum_size: usize, rng: &'a mut R, - ) -> impl Iterator + 'a { + ) -> impl Iterator + 'a { assert!( minimum_size <= self.len(), "Requested a random subset with at least {} elements but there are only {} elements", @@ -853,7 +853,7 @@ pub mod node { &'a self, size: usize, rng: &'a mut R, - ) -> impl Iterator + 'a { + ) -> impl Iterator + 'a { assert!( size <= self.len(), "Requested a random subset with {} elements but there are only {} elements", @@ -867,7 +867,7 @@ pub mod node { &'a self, idkg_receivers: T, rng: &mut R, - ) -> &Node { + ) -> &'a Node { self.filter_by_receivers(idkg_receivers) .choose(rng) .expect("empty receivers") @@ -878,7 +878,7 @@ pub mod node { exclusion: &Node, idkg_receivers: T, rng: &mut R, - ) -> &Node { + ) -> &'a Node { self.filter_by_receivers(idkg_receivers) .filter(|node| *node != exclusion) .choose(rng) @@ -889,7 +889,7 @@ pub mod node { &'a self, params: &'a IDkgTranscriptParams, rng: &mut R, - ) -> &Node { + ) -> &'a Node { self.filter_by_dealers(params) .choose(rng) .expect("empty dealers") diff --git a/rs/crypto/test_utils/tls/src/test_client.rs b/rs/crypto/test_utils/tls/src/test_client.rs index 281ab26616a..755458f0a4f 100644 --- a/rs/crypto/test_utils/tls/src/test_client.rs +++ b/rs/crypto/test_utils/tls/src/test_client.rs @@ -119,7 +119,7 @@ impl Client { let msg_for_server_with_eol = format!("{}\n", msg_for_server); #[allow(clippy::disallowed_methods)] let num_bytes_written = wr.write(msg_for_server_with_eol.as_bytes()).await.unwrap(); - assert_eq!(num_bytes_written, msg_for_server_with_eol.as_bytes().len()); + assert_eq!(num_bytes_written, msg_for_server_with_eol.len()); const ACK: u8 = 0x06; let reply = rd.read_u8().await.unwrap(); diff --git a/rs/crypto/test_utils/tls/src/test_server.rs b/rs/crypto/test_utils/tls/src/test_server.rs index 6e3ec7c98a3..1d730712b90 100644 --- a/rs/crypto/test_utils/tls/src/test_server.rs +++ b/rs/crypto/test_utils/tls/src/test_server.rs @@ -180,7 +180,7 @@ impl Server { let msg_with_eol = format!("{}\n", msg_for_client); #[allow(clippy::disallowed_methods)] let num_bytes_written = wr.write(msg_with_eol.as_bytes()).await.unwrap(); - assert_eq!(num_bytes_written, msg_with_eol.as_bytes().len()); + assert_eq!(num_bytes_written, msg_with_eol.len()); const ACK: u8 = 0x06; let reply = rd.read_u8().await.unwrap(); diff --git a/rs/embedders/src/wasm_utils.rs b/rs/embedders/src/wasm_utils.rs index 771a5d328f3..8615e831e4c 100644 --- a/rs/embedders/src/wasm_utils.rs +++ b/rs/embedders/src/wasm_utils.rs @@ -243,9 +243,7 @@ fn compile_inner( let is_wasm64 = module .get_export(crate::wasmtime_embedder::WASM_HEAP_MEMORY_NAME) - .map_or(false, |export| { - export.memory().map_or(false, |mem| mem.is_64()) - }); + .is_some_and(|export| export.memory().is_some_and(|mem| mem.is_64())); let serialized_module = SerializedModule::new( &module, diff --git a/rs/http_utils/src/file_downloader.rs b/rs/http_utils/src/file_downloader.rs index 2470abd93db..2db6d21bc32 100644 --- a/rs/http_utils/src/file_downloader.rs +++ b/rs/http_utils/src/file_downloader.rs @@ -513,7 +513,7 @@ mod tests { let mut tar = Builder::new(writer); let mut header = tar::Header::new_gnu(); header.set_path("test.txt")?; - header.set_size("Hello, world!".as_bytes().len() as u64); + header.set_size("Hello, world!".len() as u64); header.set_cksum(); tar.append(&header, "Hello, world!".as_bytes())?; tar.finish()?; diff --git a/rs/ic_os/os_tools/guestos_tool/src/prometheus_metric.rs b/rs/ic_os/os_tools/guestos_tool/src/prometheus_metric.rs index 2a16d1cdbdb..7d391a64305 100644 --- a/rs/ic_os/os_tools/guestos_tool/src/prometheus_metric.rs +++ b/rs/ic_os/os_tools/guestos_tool/src/prometheus_metric.rs @@ -8,7 +8,6 @@ use std::vec::Vec; /// Types and utils for writing prometheus metrics to textfile collector /// Unused for now: /// const DEFAULT_TEXTFILE_COLLECTOR_DIR: &str = "/run/node_exporter/collector_textfile/"; - #[allow(dead_code)] pub enum MetricType { Counter, diff --git a/rs/interfaces/src/crypto/sign/canister_threshold_sig.rs b/rs/interfaces/src/crypto/sign/canister_threshold_sig.rs index 15ef934f308..75bc013893d 100644 --- a/rs/interfaces/src/crypto/sign/canister_threshold_sig.rs +++ b/rs/interfaces/src/crypto/sign/canister_threshold_sig.rs @@ -531,7 +531,6 @@ pub trait IDkgProtocol { /// The threshold signing protocol is non-interactive, which means that the nodes participating /// to the protocol only need to compute a signature share and publish it. Shares can then be /// publicly verified by anybody and combined into a single ECDSA signature. - pub trait ThresholdEcdsaSigner { /// Create a threshold ECDSA signature share. /// diff --git a/rs/memory_tracker/src/tests.rs b/rs/memory_tracker/src/tests.rs index b7b50d65609..b927c21cc36 100644 --- a/rs/memory_tracker/src/tests.rs +++ b/rs/memory_tracker/src/tests.rs @@ -795,7 +795,13 @@ mod random_ops { handler.sa_flags = libc::SA_SIGINFO | libc::SA_NODEFER | libc::SA_ONSTACK; handler.sa_sigaction = sigsegv_handler as usize; libc::sigemptyset(&mut handler.sa_mask); - if libc::sigaction(libc::SIGSEGV, &handler, PREV_SIGSEGV.as_mut_ptr()) != 0 { + if libc::sigaction( + libc::SIGSEGV, + &handler, + #[allow(static_mut_refs)] + PREV_SIGSEGV.as_mut_ptr(), + ) != 0 + { panic!( "unable to install signal handler: {}", io::Error::last_os_error(), @@ -809,8 +815,12 @@ mod random_ops { TRACKER.with(|cell| { let previous = cell.replace(None); unsafe { - if libc::sigaction(libc::SIGSEGV, PREV_SIGSEGV.as_ptr(), std::ptr::null_mut()) - != 0 + if libc::sigaction( + libc::SIGSEGV, + #[allow(static_mut_refs)] + PREV_SIGSEGV.as_ptr(), + std::ptr::null_mut(), + ) != 0 { panic!( "unable to unregister signal handler: {}", @@ -846,6 +856,7 @@ mod random_ops { unsafe { if !handled { + #[allow(static_mut_refs)] let previous = *PREV_SIGSEGV.as_ptr(); if previous.sa_flags & libc::SA_SIGINFO != 0 { mem::transmute::< diff --git a/rs/orchestrator/src/registration.rs b/rs/orchestrator/src/registration.rs index 75230b930fe..db86313f532 100644 --- a/rs/orchestrator/src/registration.rs +++ b/rs/orchestrator/src/registration.rs @@ -550,7 +550,7 @@ pub(crate) fn is_time_to_rotate_in_subnet( let now = SystemTime::now(); timestamps .iter() - .all(|ts| now.duration_since(*ts).map_or(false, |d| d >= gamma)) + .all(|ts| now.duration_since(*ts).is_ok_and(|d| d >= gamma)) } pub(crate) fn http_config_to_endpoint( diff --git a/rs/p2p/consensus_manager/src/receiver.rs b/rs/p2p/consensus_manager/src/receiver.rs index 2432fbd1110..ec9c4476548 100644 --- a/rs/p2p/consensus_manager/src/receiver.rs +++ b/rs/p2p/consensus_manager/src/receiver.rs @@ -553,11 +553,8 @@ where }); for peers_sender in self.active_assembles.values() { - peers_sender.send_if_modified(|set| { - nodes_leaving_topology - .iter() - .any(|n| set.remove(*n)) - }); + peers_sender + .send_if_modified(|set| nodes_leaving_topology.iter().any(|n| set.remove(*n))); } debug_assert!( self.slot_table.len() <= self.topology_watcher.borrow().iter().count(), diff --git a/rs/pocket_ic_server/tests/bitcoin_integration_tests.rs b/rs/pocket_ic_server/tests/bitcoin_integration_tests.rs index 59a97ab7dba..94dd9047f96 100644 --- a/rs/pocket_ic_server/tests/bitcoin_integration_tests.rs +++ b/rs/pocket_ic_server/tests/bitcoin_integration_tests.rs @@ -94,7 +94,7 @@ rpcauth=ic-btc-integration:cdf2741387f3a12438f69092f0fdad8e$62081498c98bee09a0dc let data_dir_path = tmp_dir.path().join("data"); create_dir(data_dir_path.clone()).unwrap(); - Command::new(bitcoind_path) + let mut bitcoin_d_process = Command::new(bitcoind_path) .arg(format!("-conf={}", conf_path.display())) .arg(format!("-datadir={}", data_dir_path.display())) .spawn() @@ -180,4 +180,8 @@ rpcauth=ic-btc-integration:cdf2741387f3a12438f69092f0fdad8e$62081498c98bee09a0dc n += 1; } } + + // Kill the task to avoid zombie process. + bitcoin_d_process.kill().unwrap(); + bitcoin_d_process.wait().unwrap(); } diff --git a/rs/replicated_state/src/canister_state/queues.rs b/rs/replicated_state/src/canister_state/queues.rs index 17ea0b26eac..3e8eac45d12 100644 --- a/rs/replicated_state/src/canister_state/queues.rs +++ b/rs/replicated_state/src/canister_state/queues.rs @@ -983,7 +983,7 @@ impl CanisterQueues { if self .canister_queues .get(sender) - .map_or(false, |(input_queue, _)| input_queue.len() != 0) + .is_some_and(|(input_queue, _)| input_queue.len() != 0) { self.input_schedule.reschedule(*sender, input_queue_type); break; diff --git a/rs/rust_canisters/memory_test/src/main.rs b/rs/rust_canisters/memory_test/src/main.rs index 8c09b785fbf..6014e0207cc 100644 --- a/rs/rust_canisters/memory_test/src/main.rs +++ b/rs/rust_canisters/memory_test/src/main.rs @@ -423,7 +423,7 @@ fn copy() { let step = operation.step.unwrap_or(ELEMENT_SIZE) / ELEMENT_SIZE; let value = operation.value.unwrap_or_else(|| rand(0, u8::MAX)); // Address can't exceed 4GiB WASM memory - let len = (operation.size as usize + ELEMENT_SIZE - 1) / ELEMENT_SIZE; + let len = (operation.size as usize).div_ceil(ELEMENT_SIZE); assert!(2 * len <= MEMORY_LEN); MEMORY.with(|memory| { let mut memory_ref = memory.borrow_mut(); diff --git a/rs/state_machine_tests/tests/tests.rs b/rs/state_machine_tests/tests/tests.rs index fadf407ef62..6501f493fda 100644 --- a/rs/state_machine_tests/tests/tests.rs +++ b/rs/state_machine_tests/tests/tests.rs @@ -40,6 +40,10 @@ fn test() { time.duration_since(SystemTime::UNIX_EPOCH).unwrap(), Duration::from_nanos(1_620_329_630_000_000_000) ); + + // Kill the task to avoid zombie process. + child.kill().unwrap(); + child.wait().unwrap(); } fn call_state_machine( diff --git a/rs/tla_instrumentation/local_key/src/lib.rs b/rs/tla_instrumentation/local_key/src/lib.rs index aaf500df76d..c63de2a48c7 100644 --- a/rs/tla_instrumentation/local_key/src/lib.rs +++ b/rs/tla_instrumentation/local_key/src/lib.rs @@ -185,7 +185,7 @@ impl LocalKey { slot: &'a mut Option, } - impl<'a, T: 'static> Drop for Guard<'_, T> { + impl Drop for Guard<'_, T> { fn drop(&mut self) { // This should not panic. // @@ -414,7 +414,7 @@ where struct TransparentOption<'a, T> { value: &'a Option, } - impl<'a, T: fmt::Debug> fmt::Debug for TransparentOption<'_, T> { + impl fmt::Debug for TransparentOption<'_, T> { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self.value.as_ref() { Some(value) => value.fmt(f), diff --git a/rs/types/types/src/consensus/idkg.rs b/rs/types/types/src/consensus/idkg.rs index 67a8c7ce4c2..e5908ea7968 100644 --- a/rs/types/types/src/consensus/idkg.rs +++ b/rs/types/types/src/consensus/idkg.rs @@ -248,10 +248,10 @@ impl IDkgPayload { } /// Return an iterator of all ids of pre-signatures for the given key in the payload. - pub fn iter_pre_signature_ids( - &self, + pub fn iter_pre_signature_ids<'a>( + &'a self, key_id: &'a IDkgMasterPublicKeyId, - ) -> impl Iterator { + ) -> impl Iterator + 'a { let available_pre_signature_ids = self .available_pre_signatures .iter() diff --git a/rs/workload_generator/src/content_length.rs b/rs/workload_generator/src/content_length.rs index dcecd4f3fac..80081ed8003 100644 --- a/rs/workload_generator/src/content_length.rs +++ b/rs/workload_generator/src/content_length.rs @@ -51,7 +51,7 @@ impl Add for ContentLength { } } -impl<'a> Add for &'a ContentLength { +impl Add for &ContentLength { type Output = ContentLength; fn add(self, rhs: &ContentLength) -> ContentLength { @@ -59,7 +59,7 @@ impl<'a> Add for &'a ContentLength { } } -impl<'a> Add<&'a ContentLength> for ContentLength { +impl Add<&ContentLength> for ContentLength { type Output = ContentLength; fn add(self, rhs: &ContentLength) -> ContentLength { @@ -67,7 +67,7 @@ impl<'a> Add<&'a ContentLength> for ContentLength { } } -impl<'a> Add for &'a ContentLength { +impl Add for &ContentLength { type Output = ContentLength; fn add(self, rhs: ContentLength) -> ContentLength { From 1bfdd0dc93bda749431e26d940edbf0520a43c98 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Fri, 17 Jan 2025 14:20:41 +0000 Subject: [PATCH 09/34] . --- rs/prep/src/subnet_configuration.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/rs/prep/src/subnet_configuration.rs b/rs/prep/src/subnet_configuration.rs index c7ef379feab..6e518b7c4c9 100644 --- a/rs/prep/src/subnet_configuration.rs +++ b/rs/prep/src/subnet_configuration.rs @@ -169,7 +169,6 @@ pub fn duration_to_millis(unit_delay: Duration) -> u64 { /// The configuration for app subnets is used for new app subnets with at most /// 13 nodes. App subnets with more than 13 nodes will be deployed with the NNS /// subnet configs. - pub fn get_default_config_params(subnet_type: SubnetType, nodes_num: usize) -> SubnetConfigParams { let use_app_config = subnet_type == SubnetType::Application && nodes_num <= ic_limits::SMALL_APP_SUBNET_MAX_SIZE; From 32fa2b9310a1ff2d433d1a283e4ca81782af87a1 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Fri, 17 Jan 2025 14:26:44 +0000 Subject: [PATCH 10/34] . --- rs/consensus/src/lib.rs | 2 +- rs/starter/src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rs/consensus/src/lib.rs b/rs/consensus/src/lib.rs index 4f0a9ecdc66..471a29d69e8 100755 --- a/rs/consensus/src/lib.rs +++ b/rs/consensus/src/lib.rs @@ -1,4 +1,4 @@ -#![deny(missing_docs)] +#![cfg_attr(not(test), deny(missing_docs))] //! The consensus crate provides implementations of the consensus algorithm of //! the internet computer block chain, a component responsible for executing //! distributed key generation using said block chain to hold the state of the diff --git a/rs/starter/src/main.rs b/rs/starter/src/main.rs index c3a30475a92..970b03ae284 100644 --- a/rs/starter/src/main.rs +++ b/rs/starter/src/main.rs @@ -205,7 +205,7 @@ fn main() -> Result<()> { .arg("--config-file") .args([config_path.to_str().unwrap()]); info!(log, "Executing {:?}", cmd); - cmd.exec(); + let _ = cmd.exec(); Ok(()) } From 9a734ab605a36e849d648bed1eb7cbb292a922c5 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Fri, 17 Jan 2025 14:42:48 +0000 Subject: [PATCH 11/34] . --- packages/ic-ethereum-types/src/serde_data/mod.rs | 2 +- rs/boundary_node/ic_boundary/src/cache.rs | 2 +- rs/messaging/src/message_routing/tests.rs | 2 +- rs/replica_tests/src/lib.rs | 2 +- .../icp/src/ledger_client/handle_neuron_info.rs | 6 +++--- rs/rosetta-api/icrc1/src/construction_api/types.rs | 6 +++--- rs/rust_canisters/canister_test/src/canister.rs | 8 ++++---- rs/sns/cli/src/lib.rs | 4 ++-- rs/tests/boundary_nodes/api_bn_decentralization_test.rs | 5 ++--- rs/tests/cross_chain/ic_xc_cketh_test.rs | 6 +++--- .../cross_chain/ic_xc_ledger_suite_orchestrator_test.rs | 2 +- rs/tests/driver/src/driver/simulate_network.rs | 4 ++-- rs/tests/driver/src/util/delegations.rs | 2 +- rs/types/types/src/crypto/hash/domain_separator.rs | 2 +- 14 files changed, 26 insertions(+), 27 deletions(-) diff --git a/packages/ic-ethereum-types/src/serde_data/mod.rs b/packages/ic-ethereum-types/src/serde_data/mod.rs index 59902e43923..50b13ef7977 100644 --- a/packages/ic-ethereum-types/src/serde_data/mod.rs +++ b/packages/ic-ethereum-types/src/serde_data/mod.rs @@ -30,7 +30,7 @@ where { struct HexStrVisitor(PhantomData); - impl<'de, T> Visitor<'de> for HexStrVisitor + impl Visitor<'_> for HexStrVisitor where T: FromHex, ::Error: fmt::Display, diff --git a/rs/boundary_node/ic_boundary/src/cache.rs b/rs/boundary_node/ic_boundary/src/cache.rs index 11f046cf4cc..5920874df4d 100644 --- a/rs/boundary_node/ic_boundary/src/cache.rs +++ b/rs/boundary_node/ic_boundary/src/cache.rs @@ -100,7 +100,7 @@ fn weigh_entry(k: &Arc, v: &CacheItem) -> u32 { + 58; // 2 x Principal for (k, v) in v.headers.iter() { - cost += k.as_str().as_bytes().len(); + cost += k.as_str().len(); cost += v.as_bytes().len(); } diff --git a/rs/messaging/src/message_routing/tests.rs b/rs/messaging/src/message_routing/tests.rs index 22e6d08066d..505c066dbb9 100644 --- a/rs/messaging/src/message_routing/tests.rs +++ b/rs/messaging/src/message_routing/tests.rs @@ -275,7 +275,7 @@ struct SubnetRecord<'a> { max_number_of_canisters: u64, } -impl<'a> From> for SubnetRecordProto { +impl From> for SubnetRecordProto { fn from(record: SubnetRecord) -> SubnetRecordProto { SubnetRecordBuilder::new() .with_membership(record.membership) diff --git a/rs/replica_tests/src/lib.rs b/rs/replica_tests/src/lib.rs index 49a3f2e3919..c21a123df43 100644 --- a/rs/replica_tests/src/lib.rs +++ b/rs/replica_tests/src/lib.rs @@ -753,7 +753,7 @@ pub struct UniversalCanisterWithStateMachine<'a> { canister_id: CanisterId, } -impl<'a> UniversalCanisterWithStateMachine<'a> { +impl UniversalCanisterWithStateMachine<'_> { pub fn canister_id(&self) -> CanisterId { self.canister_id } diff --git a/rs/rosetta-api/icp/src/ledger_client/handle_neuron_info.rs b/rs/rosetta-api/icp/src/ledger_client/handle_neuron_info.rs index 33afba58fad..7032f59820c 100644 --- a/rs/rosetta-api/icp/src/ledger_client/handle_neuron_info.rs +++ b/rs/rosetta-api/icp/src/ledger_client/handle_neuron_info.rs @@ -15,7 +15,7 @@ pub fn handle_neuron_info( // Check the response from governance call. let response: Result = candid::decode_one(bytes.as_ref()) .map_err(|err| format!("Could not decode NEURON_INFO response: {}", err))?; - return match response { + match response { Err(e) => Ok(Err(ApiError::InvalidRequest( false, format!("Could not retrieve neuron information: {}", e.error_message).into(), @@ -32,9 +32,9 @@ pub fn handle_neuron_info( hotkeys: neuron.hot_keys, staked_maturity_e8s: neuron.staked_maturity_e8s_equivalent, }); - return Ok(Ok(Some(output))); + Ok(Ok(Some(output))) } - }; + } } fn neuron_state(neuron: &Neuron) -> models::NeuronState { diff --git a/rs/rosetta-api/icrc1/src/construction_api/types.rs b/rs/rosetta-api/icrc1/src/construction_api/types.rs index d7d9dc9c12e..9bc343418db 100644 --- a/rs/rosetta-api/icrc1/src/construction_api/types.rs +++ b/rs/rosetta-api/icrc1/src/construction_api/types.rs @@ -40,19 +40,19 @@ pub struct SignedTransaction<'a> { pub envelopes: Vec>, } -impl<'a> std::fmt::Display for SignedTransaction<'a> { +impl std::fmt::Display for SignedTransaction<'_> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { write!(f, "{}", hex::encode(serde_cbor::ser::to_vec(self).unwrap())) } } -impl<'a> FromStr for SignedTransaction<'a> { +impl FromStr for SignedTransaction<'_> { type Err = anyhow::Error; fn from_str(s: &str) -> Result { serde_cbor::from_slice(hex::decode(s)?.as_slice()).map_err(|err| anyhow!("{:?}", err)) } } -impl<'a> SignedTransaction<'a> { +impl SignedTransaction<'_> { pub fn get_lowest_ingress_expiry(&self) -> Option { self.envelopes .iter() diff --git a/rs/rust_canisters/canister_test/src/canister.rs b/rs/rust_canisters/canister_test/src/canister.rs index 035fa531ee2..89e395bf1d6 100644 --- a/rs/rust_canisters/canister_test/src/canister.rs +++ b/rs/rust_canisters/canister_test/src/canister.rs @@ -532,7 +532,7 @@ pub struct Canister<'a> { wasm: Option, } -impl<'a> Canister<'a> { +impl Canister<'_> { pub fn is_runtime_local(&self) -> bool { match self.runtime { Runtime::Remote(_) => false, @@ -542,7 +542,7 @@ impl<'a> Canister<'a> { } } -impl<'a> fmt::Debug for Canister<'a> { +impl fmt::Debug for Canister<'_> { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, "client-side view of canister {}", self.canister_id) } @@ -891,7 +891,7 @@ pub struct Install<'a> { pub num_cycles: Option, } -impl<'a> Query<'a> { +impl Query<'_> { pub async fn bytes(&self, payload: Vec) -> Result, String> { let canister = self.canister; match canister.runtime { @@ -972,7 +972,7 @@ impl<'a> Query<'a> { } } -impl<'a> Update<'a> { +impl Update<'_> { pub async fn bytes(&self, payload: Vec) -> Result, String> { let canister = self.canister; match canister.runtime { diff --git a/rs/sns/cli/src/lib.rs b/rs/sns/cli/src/lib.rs index fd5f82d58c2..12552020b26 100644 --- a/rs/sns/cli/src/lib.rs +++ b/rs/sns/cli/src/lib.rs @@ -599,13 +599,13 @@ enum RunCommandError<'a> { }, } -impl<'a> Display for RunCommandError<'a> { +impl Display for RunCommandError<'_> { fn fmt(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result { write!(formatter, "{}", self.new_report()) } } -impl<'a> RunCommandError<'a> { +impl RunCommandError<'_> { fn new_report(&self) -> String { match self { RunCommandError::UnableToRunCommand { command, error } => { diff --git a/rs/tests/boundary_nodes/api_bn_decentralization_test.rs b/rs/tests/boundary_nodes/api_bn_decentralization_test.rs index b5c0e7f6d28..9bd913ce12b 100644 --- a/rs/tests/boundary_nodes/api_bn_decentralization_test.rs +++ b/rs/tests/boundary_nodes/api_bn_decentralization_test.rs @@ -514,11 +514,10 @@ async fn assert_api_bns_present_in_state_tree( let are_expected_bns = api_bns_sorted .iter() .enumerate() - .map(|(idx, bn)| { + .all(|(idx, bn)| { bn.domain == expected_api_bns[idx].domain && bn.ipv6_address == expected_api_bns[idx].ipv6_address - }) - .all(|is_match| is_match); + }); if !are_expected_bns { bail!("Expected API BNs haven't yet appeared in the state tree ..."); diff --git a/rs/tests/cross_chain/ic_xc_cketh_test.rs b/rs/tests/cross_chain/ic_xc_cketh_test.rs index afa3a63bf4c..0bbb81d1196 100644 --- a/rs/tests/cross_chain/ic_xc_cketh_test.rs +++ b/rs/tests/cross_chain/ic_xc_cketh_test.rs @@ -865,7 +865,7 @@ struct LedgerCanister<'a> { canister: Canister<'a>, } -impl<'a> LedgerCanister<'a> { +impl LedgerCanister<'_> { fn principal(&self) -> Principal { self.canister.canister_id().get().0 } @@ -875,7 +875,7 @@ struct CkEthMinterCanister<'a> { canister: Canister<'a>, } -impl<'a> CkEthMinterCanister<'a> { +impl CkEthMinterCanister<'_> { async fn minter_address(&self) -> String { self.canister .update_("minter_address", candid, ()) @@ -913,7 +913,7 @@ struct LedgerSuiteOrchestratorCanister<'a> { canister: Canister<'a>, } -impl<'a> LedgerSuiteOrchestratorCanister<'a> { +impl LedgerSuiteOrchestratorCanister<'_> { async fn upgrade(&mut self, arg: LedgerSuiteOrchestratorUpgradeArg) { self.canister .upgrade_to_self_binary(Encode!(&OrchestratorArg::UpgradeArg(arg)).unwrap()) diff --git a/rs/tests/cross_chain/ic_xc_ledger_suite_orchestrator_test.rs b/rs/tests/cross_chain/ic_xc_ledger_suite_orchestrator_test.rs index 43b52e7de9c..7153a932e98 100644 --- a/rs/tests/cross_chain/ic_xc_ledger_suite_orchestrator_test.rs +++ b/rs/tests/cross_chain/ic_xc_ledger_suite_orchestrator_test.rs @@ -431,7 +431,7 @@ struct LedgerOrchestratorCanister<'a> { canister: Canister<'a>, } -impl<'a> LedgerOrchestratorCanister<'a> { +impl LedgerOrchestratorCanister<'_> { async fn call_canister_ids(&self, contract: Erc20Contract) -> Option { self.canister .query_("canister_ids", dfn_candid::candid, (contract,)) diff --git a/rs/tests/driver/src/driver/simulate_network.rs b/rs/tests/driver/src/driver/simulate_network.rs index 006961bc3af..2947e35578f 100644 --- a/rs/tests/driver/src/driver/simulate_network.rs +++ b/rs/tests/driver/src/driver/simulate_network.rs @@ -192,7 +192,7 @@ impl ProductionSubnetTopology { /// Query: /// https://victoria.ch1-obs1.dfinity.network/select/0/vmui/#/?g0.expr=sum+by+%28ic_node%2Cpeer%29+%28quic_transport_quinn_path_rtt_seconds%7Bic_subnet%3D%22uzr34-akd3s-xrdag-3ql62-ocgoh-ld2ao-tamcv-54e7j-krwgb-2gm4z-oqe%22%7D%29&g0.range_input=21h24m51s870ms&g0.end_input=2024-08-20T08%3A22%3A07&g0.relative_time=none&g0.tenantID=0 -pub const UZR_34_RTT: [(u64, u64, f64); 756] = [ +pub static UZR_34_RTT: [(u64, u64, f64); 756] = [ (1, 2, 0.15598), (1, 3, 0.37478), (1, 4, 0.13583), @@ -952,7 +952,7 @@ pub const UZR_34_RTT: [(u64, u64, f64); 756] = [ ]; /// Query: /// https://victoria.ch1-obs1.dfinity.network/select/0/vmui/#/?g0.expr=sum+by+%28ic_node%2Cpeer%29+%28%0A++rate%28quic_transport_quinn_path_lost_packets%7Bic_subnet%3D%22uzr34-akd3s-xrdag-3ql62-ocgoh-ld2ao-tamcv-54e7j-krwgb-2gm4z-oqe%22%7D%5B7d%5D%29+%2F%0A++rate%28quic_transport_quinn_path_sent_packets%7Bic_subnet%3D%22uzr34-akd3s-xrdag-3ql62-ocgoh-ld2ao-tamcv-54e7j-krwgb-2gm4z-oqe%22%7D%5B7d%5D%29%0A%29&g0.range_input=13d14h36m59s549ms&g0.end_input=2024-06-23T20%3A59%3A19&g0.tab=1&g0.relative_time=none&g0.tenantID=0 -pub const UZR_34_PACKET_LOSS: [(u64, u64, f64); 756] = [ +pub static UZR_34_PACKET_LOSS: [(u64, u64, f64); 756] = [ (1, 2, 0.0015710290841178466), (1, 3, 0.000604650481546998), (1, 4, 0.0014703598418393934), diff --git a/rs/tests/driver/src/util/delegations.rs b/rs/tests/driver/src/util/delegations.rs index a8a779a5552..e6e0e003959 100644 --- a/rs/tests/driver/src/util/delegations.rs +++ b/rs/tests/driver/src/util/delegations.rs @@ -124,7 +124,7 @@ pub struct AgentWithDelegation<'a> { pub polling_timeout: Duration, } -impl<'a> AgentWithDelegation<'a> { +impl AgentWithDelegation<'_> { async fn send_http_request( &self, method: &str, diff --git a/rs/types/types/src/crypto/hash/domain_separator.rs b/rs/types/types/src/crypto/hash/domain_separator.rs index 228e3c29981..2dfce357301 100644 --- a/rs/types/types/src/crypto/hash/domain_separator.rs +++ b/rs/types/types/src/crypto/hash/domain_separator.rs @@ -162,6 +162,6 @@ fn ic_request_domain_variable_is_sound_and_consistent_with_the_enum_variant() { ); assert_eq!( DOMAIN_IC_REQUEST[0] as usize, - DomainSeparator::IcRequest.as_str().as_bytes().len() + DomainSeparator::IcRequest.as_str().len() ); } From 6cb3bdcd87936e87615fe68302ed1fcbc19ee5cc Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Fri, 17 Jan 2025 14:43:03 +0000 Subject: [PATCH 12/34] enable `embed-bitcode` for canisters.bzl --- bazel/canisters.bzl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bazel/canisters.bzl b/bazel/canisters.bzl index 8985effd90d..2308dc7147e 100644 --- a/bazel/canisters.bzl +++ b/bazel/canisters.bzl @@ -25,6 +25,13 @@ def _wasm_rust_transition_impl(_settings, attr): "-C", "lto", "-C", + # If combined with -C lto, -C embed-bitcode=no will cause rustc to abort at start-up, + # because the combination is invalid. + # See: https://doc.rust-lang.org/rustc/codegen-options/index.html#embed-bitcode + # + # embed-bitcode is disabled by default by rules_rust. + "embed-bitcode=yes", + "-C", "target-feature=+bulk-memory", ], } From 9daf907ea4e0cacc0182e2c287da8bbbf0d9321f Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Fri, 17 Jan 2025 15:48:26 +0000 Subject: [PATCH 13/34] . --- Cargo.lock | 11 --- Cargo.toml | 1 - packages/pocket-ic/src/lib.rs | 6 +- rs/artifact_pool/src/rocksdb_pool.rs | 2 +- rs/canister_sandbox/src/rpc.rs | 2 - .../src/consensus/malicious_consensus.rs | 1 - .../system_api_complexity.rs | 1 - .../src/canister_manager.rs | 6 +- .../src/execution/replicated_query.rs | 2 +- .../src/execution/response.rs | 3 +- .../src/execution/update.rs | 6 +- .../src/execution/upgrade.rs | 2 +- rs/execution_environment/src/hypervisor.rs | 4 +- rs/execution_environment/src/scheduler.rs | 9 +- rs/execution_environment/tests/hypervisor.rs | 2 +- rs/messaging/tests/queue_tests.rs | 2 +- rs/nns/governance/src/governance.rs | 14 ++- rs/nns/governance/src/known_neuron_index.rs | 1 - rs/registry/admin/src/main.rs | 2 +- rs/rosetta-api/icp/src/convert.rs | 1 - .../tests/integration_tests/tests/tests.rs | 2 +- rs/rust_canisters/pmap/BUILD.bazel | 55 ------------ rs/rust_canisters/pmap/Cargo.toml | 31 ------- rs/rust_canisters/pmap/Readme.md | 3 - rs/rust_canisters/pmap/canister/main.rs | 85 ------------------- rs/rust_canisters/pmap/canister/pmap.did | 7 -- rs/rust_canisters/pmap/src/main.rs | 1 - rs/rust_canisters/pmap/test/main.rs | 37 -------- .../random_traffic_test/src/main.rs | 2 +- rs/sns/governance/src/proposal.rs | 2 +- .../src/manifest/tests/computation.rs | 2 +- .../rotate_ecdsa_idkg_key_test.rs | 2 +- .../orchestrator/unstuck_subnet_test.rs | 2 +- rs/tests/consensus/subnet_recovery/common.rs | 4 +- 34 files changed, 37 insertions(+), 276 deletions(-) delete mode 100644 rs/rust_canisters/pmap/BUILD.bazel delete mode 100644 rs/rust_canisters/pmap/Cargo.toml delete mode 100644 rs/rust_canisters/pmap/Readme.md delete mode 100644 rs/rust_canisters/pmap/canister/main.rs delete mode 100644 rs/rust_canisters/pmap/canister/pmap.did delete mode 100644 rs/rust_canisters/pmap/src/main.rs delete mode 100644 rs/rust_canisters/pmap/test/main.rs diff --git a/Cargo.lock b/Cargo.lock index 44d9c32910a..364d3919585 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -17137,17 +17137,6 @@ dependencies = [ "plotters-backend", ] -[[package]] -name = "pmap" -version = "0.9.0" -dependencies = [ - "canister-test", - "dfn_core", - "dfn_json", - "dfn_macro", - "ic-utils 0.9.0", -] - [[package]] name = "pocket-ic" version = "6.0.0" diff --git a/Cargo.toml b/Cargo.toml index 4a3f645d2a1..a46bff8ba76 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -320,7 +320,6 @@ members = [ "rs/rust_canisters/load_simulator", "rs/rust_canisters/memory_test", "rs/rust_canisters/on_wire", - "rs/rust_canisters/pmap", "rs/rust_canisters/proxy_canister", "rs/rust_canisters/response_payload_test", "rs/rust_canisters/stable_reader", diff --git a/packages/pocket-ic/src/lib.rs b/packages/pocket-ic/src/lib.rs index 393be384e36..cbcbc668a2a 100644 --- a/packages/pocket-ic/src/lib.rs +++ b/packages/pocket-ic/src/lib.rs @@ -1637,7 +1637,8 @@ To download the binary, please visit https://github.com/dfinity/pocketic." cmd.stderr(std::process::Stdio::null()); } } - cmd.spawn() + let process = cmd + .spawn() .unwrap_or_else(|_| panic!("Failed to start PocketIC binary ({:?})", bin_path)); loop { @@ -1652,6 +1653,9 @@ To download the binary, please visit https://github.com/dfinity/pocketic." } std::thread::sleep(Duration::from_millis(20)); } + + process.kill(); + process.wait().unwrap(); } #[derive(Error, Debug)] diff --git a/rs/artifact_pool/src/rocksdb_pool.rs b/rs/artifact_pool/src/rocksdb_pool.rs index ab35775a2f0..0c89925857b 100755 --- a/rs/artifact_pool/src/rocksdb_pool.rs +++ b/rs/artifact_pool/src/rocksdb_pool.rs @@ -568,7 +568,7 @@ fn deserialize_consensus_artifact( impl PoolSection for PersistentHeightIndexedPool { fn contains(&self, msg_id: &ConsensusMessageId) -> bool { - self.lookup_key(msg_id).map_or(false, |key| { + self.lookup_key(msg_id).is_some_and(|key| { let info = info_for_msg_id(msg_id); let cf_handle = check_not_none_uw!(self.db.cf_handle(info.name)); check_ok_uw!(self.db.get_pinned_cf(cf_handle, &key)).is_some() diff --git a/rs/canister_sandbox/src/rpc.rs b/rs/canister_sandbox/src/rpc.rs index 8cdef287c94..4dc06be5d51 100644 --- a/rs/canister_sandbox/src/rpc.rs +++ b/rs/canister_sandbox/src/rpc.rs @@ -5,7 +5,6 @@ use std::task::{Context, Poll}; /// Pieces for a very simple bidirectional RPC using an underlying /// duplex stream channel. - /// Describe RPC error -- can be either related to transport (i.e. /// failure to transport or parse a message) or to server (i.e. server /// responded, but gave us a message indicating an error). @@ -276,7 +275,6 @@ impl MessageSink for ReplyManager { /// An RPC result that is immediately "ready" (i.e. pass a value to /// a caller such that it does not need to wait). - pub struct ReadyResult { value: Mutex>, } diff --git a/rs/consensus/src/consensus/malicious_consensus.rs b/rs/consensus/src/consensus/malicious_consensus.rs index 5a9e5be9300..71e80f00c64 100644 --- a/rs/consensus/src/consensus/malicious_consensus.rs +++ b/rs/consensus/src/consensus/malicious_consensus.rs @@ -234,7 +234,6 @@ fn maliciously_notarize_all(notary: &Notary, pool: &PoolReader<'_>) -> Vec, diff --git a/rs/embedders/src/wasmtime_embedder/system_api_complexity.rs b/rs/embedders/src/wasmtime_embedder/system_api_complexity.rs index 4dc8a107589..304520fd6b8 100644 --- a/rs/embedders/src/wasmtime_embedder/system_api_complexity.rs +++ b/rs/embedders/src/wasmtime_embedder/system_api_complexity.rs @@ -1,7 +1,6 @@ /// /// System API Calls Complexity Module /// - /// The Fixed System API Overhead (in Instructions) /// /// The cost of the System API calls is proportional to the work the call performs. diff --git a/rs/execution_environment/src/canister_manager.rs b/rs/execution_environment/src/canister_manager.rs index 14877845010..6dd8409b862 100644 --- a/rs/execution_environment/src/canister_manager.rs +++ b/rs/execution_environment/src/canister_manager.rs @@ -912,7 +912,7 @@ impl CanisterManager { return false; } }; - module.memories.first().map_or(false, |m| m.memory64) + module.memories.first().is_some_and(|m| m.memory64) } /// Installs code to a canister. @@ -2190,9 +2190,7 @@ impl CanisterManager { .certified_data .clone_from(snapshot.certified_data()); - let is_wasm64_execution = new_execution_state - .as_ref() - .map_or(false, |es| es.is_wasm64); + let is_wasm64_execution = new_execution_state.as_ref().is_some_and(|es| es.is_wasm64); let mut new_canister = CanisterState::new(system_state, new_execution_state, scheduler_state); diff --git a/rs/execution_environment/src/execution/replicated_query.rs b/rs/execution_environment/src/execution/replicated_query.rs index b3b38b83fe7..a63c115e8d4 100644 --- a/rs/execution_environment/src/execution/replicated_query.rs +++ b/rs/execution_environment/src/execution/replicated_query.rs @@ -48,7 +48,7 @@ pub fn execute_replicated_query( let is_wasm64_execution = canister .execution_state .as_ref() - .map_or(false, |es| es.is_wasm64); + .is_some_and(|es| es.is_wasm64); let prepaid_execution_cycles = match round.cycles_account_manager.prepay_execution_cycles( &mut canister.system_state, diff --git a/rs/execution_environment/src/execution/response.rs b/rs/execution_environment/src/execution/response.rs index 7d41f7ddac1..ca8963046e7 100644 --- a/rs/execution_environment/src/execution/response.rs +++ b/rs/execution_environment/src/execution/response.rs @@ -101,7 +101,6 @@ const RESERVED_CLEANUP_INSTRUCTIONS_IN_PERCENT: u64 = 5; /// ▼ /// [end] ///``` - /// Contains fields of `ResponseHelper` that are necessary for resuming the /// response execution. #[derive(Debug)] @@ -575,7 +574,7 @@ impl ResponseHelper { .canister .execution_state .as_ref() - .map_or(false, |es| es.is_wasm64); + .is_some_and(|es| es.is_wasm64); round.cycles_account_manager.refund_unused_execution_cycles( &mut self.canister.system_state, diff --git a/rs/execution_environment/src/execution/update.rs b/rs/execution_environment/src/execution/update.rs index 6e8b5098d48..702d008229b 100644 --- a/rs/execution_environment/src/execution/update.rs +++ b/rs/execution_environment/src/execution/update.rs @@ -63,7 +63,7 @@ pub fn execute_update( let is_wasm64_execution = canister .execution_state .as_ref() - .map_or(false, |es| es.is_wasm64); + .is_some_and(|es| es.is_wasm64); let prepaid_execution_cycles = match round .cycles_account_manager @@ -268,7 +268,7 @@ fn finish_err( let is_wasm64_execution = canister .execution_state .as_ref() - .map_or(false, |es| es.is_wasm64); + .is_some_and(|es| es.is_wasm64); let instruction_limit = original.execution_parameters.instruction_limits.message(); round.cycles_account_manager.refund_unused_execution_cycles( @@ -537,7 +537,7 @@ impl UpdateHelper { .canister .execution_state .as_ref() - .map_or(false, |es| es.is_wasm64); + .is_some_and(|es| es.is_wasm64); round.cycles_account_manager.refund_unused_execution_cycles( &mut self.canister.system_state, diff --git a/rs/execution_environment/src/execution/upgrade.rs b/rs/execution_environment/src/execution/upgrade.rs index 924fed0cdf0..9bad4929b70 100644 --- a/rs/execution_environment/src/execution/upgrade.rs +++ b/rs/execution_environment/src/execution/upgrade.rs @@ -884,7 +884,7 @@ fn determine_main_memory_handling( let old_state_uses_orthogonal_persistence = || { old_state .as_ref() - .map_or(false, expects_enhanced_orthogonal_persistence) + .is_some_and(expects_enhanced_orthogonal_persistence) }; let new_state_uses_classical_persistence = || { new_state_candidate.is_ok() diff --git a/rs/execution_environment/src/hypervisor.rs b/rs/execution_environment/src/hypervisor.rs index 4e472eff012..b67705512da 100644 --- a/rs/execution_environment/src/hypervisor.rs +++ b/rs/execution_environment/src/hypervisor.rs @@ -535,11 +535,11 @@ impl Hypervisor { if let Err(err) = &mut result.wasm_result { let can_view = match &system_state.log_visibility { LogVisibilityV2::Controllers => { - caller.map_or(false, |c| system_state.controllers.contains(&c)) + caller.is_some_and(|c| system_state.controllers.contains(&c)) } LogVisibilityV2::Public => true, LogVisibilityV2::AllowedViewers(allowed) => { - caller.map_or(false, |c| allowed.get().contains(&c)) + caller.is_some_and(|c| allowed.get().contains(&c)) } }; if !can_view { diff --git a/rs/execution_environment/src/scheduler.rs b/rs/execution_environment/src/scheduler.rs index bd7a475ef66..3ebadda7d5f 100644 --- a/rs/execution_environment/src/scheduler.rs +++ b/rs/execution_environment/src/scheduler.rs @@ -138,7 +138,6 @@ impl SchedulerRoundLimits { //////////////////////////////////////////////////////////////////////// /// Scheduler Implementation - pub(crate) struct SchedulerImpl { config: SchedulerConfig, own_subnet_id: SubnetId, @@ -222,7 +221,7 @@ impl SchedulerImpl { state = new_state; ongoing_long_install_code |= state .canister_state(canister_id) - .map_or(false, |canister| canister.has_paused_install_code()); + .is_some_and(|canister| canister.has_paused_install_code()); let round_instructions_executed = as_num_instructions(instructions_before - round_limits.instructions); @@ -1658,7 +1657,7 @@ impl Scheduler for SchedulerImpl { //////////////////////////////////////////////////////////////////////// /// Filtered Canisters - +/// /// This struct represents a collection of canister IDs. struct FilteredCanisters { /// Active canisters during the execution of the inner round. @@ -1823,7 +1822,7 @@ fn execute_canisters_on_thread( &mut round_limits, subnet_size, ); - if instructions_used.map_or(false, |instructions| instructions.get() > 0) { + if instructions_used.is_some_and( |instructions| instructions.get() > 0) { // We only want to count the canister as executed if it used instructions. executed_canister_ids.insert(new_canister.canister_id()); } @@ -2324,7 +2323,7 @@ fn is_next_method_chosen( .system_state .task_queue .front() - .map_or(false, |task| task.is_hook()) + .is_some_and( |task| task.is_hook()) { return true; } diff --git a/rs/execution_environment/tests/hypervisor.rs b/rs/execution_environment/tests/hypervisor.rs index 7f9f649b104..a7a27426517 100644 --- a/rs/execution_environment/tests/hypervisor.rs +++ b/rs/execution_environment/tests/hypervisor.rs @@ -7587,7 +7587,7 @@ fn declaring_too_many_tables_fails() { fn use_wasm_memory_and_reply(bytes: u64) -> Vec { wasm() .stable64_grow( - (bytes + WASM_PAGE_SIZE_IN_BYTES as u64 - 1) / WASM_PAGE_SIZE_IN_BYTES as u64, + bytes.div_ceil(WASM_PAGE_SIZE_IN_BYTES as u64), ) .stable64_read(0, bytes) .blob_length() diff --git a/rs/messaging/tests/queue_tests.rs b/rs/messaging/tests/queue_tests.rs index a800f92b97f..2107d111210 100644 --- a/rs/messaging/tests/queue_tests.rs +++ b/rs/messaging/tests/queue_tests.rs @@ -204,7 +204,7 @@ impl SubnetPairProxy { do_until_or_panic(MAX_TICKS, |_| { let exit_condition = self .local_output_queue_snapshot() - .map_or(false, |q| q.len() >= min_num_messages); + .is_some_and(|q| q.len() >= min_num_messages); if !exit_condition { self.local_env.tick(); } diff --git a/rs/nns/governance/src/governance.rs b/rs/nns/governance/src/governance.rs index a4add42fe8a..b5c9845c045 100644 --- a/rs/nns/governance/src/governance.rs +++ b/rs/nns/governance/src/governance.rs @@ -1057,7 +1057,7 @@ impl Proposal { fn allowed_when_resources_are_low(&self) -> bool { self.action .as_ref() - .map_or(false, |a| a.allowed_when_resources_are_low()) + .is_some_and(|a| a.allowed_when_resources_are_low()) } fn omit_large_fields(self) -> Self { @@ -1177,7 +1177,7 @@ impl ProposalData { pub fn is_manage_neuron(&self) -> bool { self.proposal .as_ref() - .map_or(false, Proposal::is_manage_neuron) + .is_some_and(Proposal::is_manage_neuron) } pub fn reward_status( @@ -1938,6 +1938,10 @@ fn spawn_in_canister_env(future: impl Future + Sized + 'static) { } } +fn error_string_to_governance_error(error: String) -> GovernanceError { + GovernanceError::new_with_message(ErrorType::InvalidProposal, error) +} + impl Governance { /// Creates a new Governance instance with uninitialized fields. The canister should only have /// such state before the state is recovered from the stable memory in post_upgrade or @@ -5308,12 +5312,6 @@ impl Governance { } fn validate_proposal(&self, proposal: &Proposal) -> Result { - impl From for GovernanceError { - fn from(message: String) -> Self { - Self::new_with_message(ErrorType::InvalidProposal, message) - } - } - if proposal.topic() == Topic::Unspecified { Err(format!("Topic not specified. proposal: {:#?}", proposal))?; } diff --git a/rs/nns/governance/src/known_neuron_index.rs b/rs/nns/governance/src/known_neuron_index.rs index bc22e08b3d1..15c52982e92 100644 --- a/rs/nns/governance/src/known_neuron_index.rs +++ b/rs/nns/governance/src/known_neuron_index.rs @@ -8,7 +8,6 @@ use ic_stable_structures::{Memory, StableBTreeMap, Storable}; /// Note that the index only cares about the uniqueness of the names, not the ids - /// the caller should make sure the name-id is removed from the index when a neuron /// is removed or its name is changed. - pub struct KnownNeuronIndex { known_neuron_name_to_id: StableBTreeMap, } diff --git a/rs/registry/admin/src/main.rs b/rs/registry/admin/src/main.rs index c32e582296d..ca2abbcfd09 100644 --- a/rs/registry/admin/src/main.rs +++ b/rs/registry/admin/src/main.rs @@ -5962,7 +5962,7 @@ struct GovernanceCanisterClient(NnsCanisterClient); struct RootCanisterClient(NnsCanisterClient); fn is_mainnet(url: &Url) -> bool { - url.domain().map_or(false, |domain| { + url.domain().is_some_and(|domain| { IC_DOMAINS .iter() .any(|&ic_domain| domain.contains(ic_domain)) diff --git a/rs/rosetta-api/icp/src/convert.rs b/rs/rosetta-api/icp/src/convert.rs index d15d8496331..f24984635b5 100644 --- a/rs/rosetta-api/icp/src/convert.rs +++ b/rs/rosetta-api/icp/src/convert.rs @@ -36,7 +36,6 @@ use std::convert::{TryFrom, TryInto}; /// This module converts from ledger_canister data structures to Rosetta data /// structures - pub fn to_rosetta_core_transaction( transaction_index: BlockIndex, transaction: Transaction, diff --git a/rs/rosetta-api/icp/tests/integration_tests/tests/tests.rs b/rs/rosetta-api/icp/tests/integration_tests/tests/tests.rs index 9461ff50c0f..bafc1b14a30 100644 --- a/rs/rosetta-api/icp/tests/integration_tests/tests/tests.rs +++ b/rs/rosetta-api/icp/tests/integration_tests/tests/tests.rs @@ -412,7 +412,7 @@ fn matches_blockchain_is_empty_error(error: &rosetta_core::miscellaneous::Error) .as_ref() .unwrap() .get("error_message") - .map_or(false, |e| { + .is_some_and( |e| { e == "Blockchain is empty" || e == "Block not found: 0" || e == "RosettaBlocks was activated and there are no RosettaBlocks in the database yet. The synch is ongoing, please wait until the first RosettaBlock is written to the database." }) } diff --git a/rs/rust_canisters/pmap/BUILD.bazel b/rs/rust_canisters/pmap/BUILD.bazel deleted file mode 100644 index e4639a57082..00000000000 --- a/rs/rust_canisters/pmap/BUILD.bazel +++ /dev/null @@ -1,55 +0,0 @@ -load("@rules_rust//rust:defs.bzl", "rust_binary") -load("//bazel:canisters.bzl", "rust_canister") -load("//bazel:defs.bzl", "rust_ic_test") - -package(default_visibility = ["//visibility:public"]) - -DEPENDENCIES = [ - # Keep sorted. - "//rs/rust_canisters/dfn_core", - "//rs/rust_canisters/dfn_json", -] - -DEV_DEPENDENCIES = [ - # Keep sorted. - "//rs/rust_canisters/canister_test", - "//rs/utils", -] - -MACRO_DEPENDENCIES = [ - # Keep sorted. - "//rs/rust_canisters/dfn_macro", -] - -ALIASES = {} - -rust_binary( - name = "pmap", - srcs = ["src/main.rs"], - aliases = ALIASES, - proc_macro_deps = MACRO_DEPENDENCIES, - deps = DEPENDENCIES, -) - -rust_canister( - name = "pmap_canister", - srcs = ["canister/main.rs"], - aliases = ALIASES, - proc_macro_deps = MACRO_DEPENDENCIES, - service_file = ":canister/pmap.did", - deps = DEPENDENCIES, -) - -rust_ic_test( - name = "pmap_test", - srcs = ["test/main.rs"], - data = [ - ":pmap_canister", - ], - env = { - "CARGO_MANIFEST_DIR": "rs/rust_canisters/pmap", - "PMAP_CANISTER_WASM_PATH": "$(rootpath :pmap_canister)", - }, - proc_macro_deps = MACRO_DEPENDENCIES, - deps = DEPENDENCIES + DEV_DEPENDENCIES, -) diff --git a/rs/rust_canisters/pmap/Cargo.toml b/rs/rust_canisters/pmap/Cargo.toml deleted file mode 100644 index cd5a6a4c7d6..00000000000 --- a/rs/rust_canisters/pmap/Cargo.toml +++ /dev/null @@ -1,31 +0,0 @@ -[package] -name = "pmap" -version.workspace = true -authors.workspace = true -edition.workspace = true -description.workspace = true -documentation.workspace = true - -[dependencies] -# add dependencies that only canister uses here -dfn_core = { path = "../dfn_core" } -dfn_json = { path = "../dfn_json" } -dfn_macro = { path = "../dfn_macro" } - -[target.'cfg(not(target_os = "unknown"))'.dev-dependencies] -# add dependencies that only test driver uses -canister-test = { path = "../../rust_canisters/canister_test" } -ic-utils = { path = "../../utils" } - - -[[bin]] -name = "pmap" -path = "src/main.rs" - -[[bin]] -name = "pmap_canister" -path = "canister/main.rs" - -[[test]] -name = "test" -path = "test/main.rs" diff --git a/rs/rust_canisters/pmap/Readme.md b/rs/rust_canisters/pmap/Readme.md deleted file mode 100644 index 3f5a9a3ed78..00000000000 --- a/rs/rust_canisters/pmap/Readme.md +++ /dev/null @@ -1,3 +0,0 @@ -to run the test do : - -cargo test \ No newline at end of file diff --git a/rs/rust_canisters/pmap/canister/main.rs b/rs/rust_canisters/pmap/canister/main.rs deleted file mode 100644 index 9bf061382c9..00000000000 --- a/rs/rust_canisters/pmap/canister/main.rs +++ /dev/null @@ -1,85 +0,0 @@ -use dfn_core::api::print; -use dfn_macro::{query, update}; -use std::ptr::{addr_of, addr_of_mut}; - -static mut MYVEC: Vec = Vec::new(); -const ARRAYSIZE: usize = 10; -static mut TRAP: bool = false; - -#[update] -async fn create_array() -> Result { - unsafe { - MYVEC = vec![0; ARRAYSIZE]; - } - - print("Array created"); - Ok("Array created".into()) -} - -#[update] -async fn increment_array() -> Result { - unsafe { - if MYVEC.is_empty() { - return Err("Array not initialized".into()); - } else { - let hi = MYVEC[ARRAYSIZE - 1]; - let lo = MYVEC[0]; - - print(format!("Before increment hi {} lo {}", hi, lo)); - - for v in &mut *addr_of_mut!(MYVEC) { - *v += 1; - } - - let hi = MYVEC[ARRAYSIZE - 1]; - let lo = MYVEC[0]; - - print(format!("After increment hi {} lo {}", hi, lo)); - - if TRAP { - unreachable!() - } - } - } - print("Done !!! "); - Ok("Done !!! ".into()) -} - -#[query] -async fn compute_sum() -> Result { - unsafe { - if MYVEC.is_empty() { - Err("Array not initialized".into()) - } else { - let hi = MYVEC[ARRAYSIZE - 1]; - let lo = MYVEC[0]; - - print(format!("Compute sum hi {} lo {}", hi, lo)); - - let mut sum: u32 = 0; - - for v in &*addr_of!(MYVEC) { - sum += *v as u32; - } - - print(format!("Computed sum {}", sum)); - Ok(sum) - } - } -} - -#[update] -async fn toggle_trap() -> Result<(), String> { - unsafe { - TRAP = !TRAP; - } - Ok(()) -} - -#[query] -async fn test() -> Result { - print("hello world"); - Ok("Hello World".into()) -} - -fn main() {} diff --git a/rs/rust_canisters/pmap/canister/pmap.did b/rs/rust_canisters/pmap/canister/pmap.did deleted file mode 100644 index fdfb9b1af78..00000000000 --- a/rs/rust_canisters/pmap/canister/pmap.did +++ /dev/null @@ -1,7 +0,0 @@ -service : { - create_array : () -> (variant { Ok : text; Err : text }); - increment_array : () -> (variant { Ok : text; Err : text }); - compute_sum : () -> (variant { Ok : nat32; Err : text }) query; - toggle_trap : () -> (variant { Ok : null; Err : text }); - test : () -> (variant { Ok : text; Err : text }) query; -} \ No newline at end of file diff --git a/rs/rust_canisters/pmap/src/main.rs b/rs/rust_canisters/pmap/src/main.rs deleted file mode 100644 index f328e4d9d04..00000000000 --- a/rs/rust_canisters/pmap/src/main.rs +++ /dev/null @@ -1 +0,0 @@ -fn main() {} diff --git a/rs/rust_canisters/pmap/test/main.rs b/rs/rust_canisters/pmap/test/main.rs deleted file mode 100644 index cfc7fe10340..00000000000 --- a/rs/rust_canisters/pmap/test/main.rs +++ /dev/null @@ -1,37 +0,0 @@ -use canister_test::*; -use dfn_json::json; - -#[test] -fn test() { - local_test_e(|runtime| async move { - /////////////////////////////////////////////////////// - // Create a new instance of pmap - /////////////////////////////////////////////////////// - let proj = Project::new(); - - let create_canister = |c| proj.cargo_bin(c, &[]).install(&runtime).bytes(Vec::new()); - - let canister = create_canister("pmap_canister").await?; - - let res: Result = canister.query_("test", json, ()).await?; - assert!(res.is_ok()); - - let res: Result = canister.update_("create_array", json, ()).await?; - assert!(res.is_ok()); - - let res: Result = canister.update_("increment_array", json, ()).await?; - assert!(res.is_ok()); - - let res: Result = canister.update_("increment_array", json, ()).await?; - assert!(res.is_ok()); - - let res: Result = canister.update_("compute_sum", json, ()).await?; - assert_eq!(res, Ok(20)); - - let res: Result = canister.query_("test", json, ()).await?; - assert!(res.is_ok()); - Ok(()) - }); -} - -fn main() {} diff --git a/rs/rust_canisters/random_traffic_test/src/main.rs b/rs/rust_canisters/random_traffic_test/src/main.rs index ce928a0553e..9dff81803fc 100644 --- a/rs/rust_canisters/random_traffic_test/src/main.rs +++ b/rs/rust_canisters/random_traffic_test/src/main.rs @@ -265,7 +265,7 @@ async fn handle_call(msg: Message) -> Vec { fn should_make_downstream_call() -> bool { RNG.with_borrow_mut(|rng| { WeightedIndex::new([CALL_WEIGHT.get(), REPLY_WEIGHT.get()]) - .map_or(false, |dist| dist.sample(rng) == 0) + .is_some_and(|dist| dist.sample(rng) == 0) }) } diff --git a/rs/sns/governance/src/proposal.rs b/rs/sns/governance/src/proposal.rs index 6aaae38eddc..41a24a5c0f6 100644 --- a/rs/sns/governance/src/proposal.rs +++ b/rs/sns/governance/src/proposal.rs @@ -104,7 +104,7 @@ impl Proposal { pub(crate) fn allowed_when_resources_are_low(&self) -> bool { self.action .as_ref() - .map_or(false, |a| a.allowed_when_resources_are_low()) + .is_some_and(|a| a.allowed_when_resources_are_low()) } /// Returns a clone of self, except that "large blob fields" are replaced diff --git a/rs/state_manager/src/manifest/tests/computation.rs b/rs/state_manager/src/manifest/tests/computation.rs index 53b7856a836..6ae1413da2b 100644 --- a/rs/state_manager/src/manifest/tests/computation.rs +++ b/rs/state_manager/src/manifest/tests/computation.rs @@ -402,7 +402,7 @@ fn test_validate_sub_manifest() { let encoded_manifest = encode_manifest(&manifest); let num = - (encoded_manifest.len() + DEFAULT_CHUNK_SIZE as usize - 1) / DEFAULT_CHUNK_SIZE as usize; + encoded_manifest.len().div_ceil(DEFAULT_CHUNK_SIZE as usize); assert!( num > 1, "This test does not cover the case where the encoded manifest is divided into multiple pieces." diff --git a/rs/tests/consensus/orchestrator/rotate_ecdsa_idkg_key_test.rs b/rs/tests/consensus/orchestrator/rotate_ecdsa_idkg_key_test.rs index 69bf064dea9..9698ce6611a 100644 --- a/rs/tests/consensus/orchestrator/rotate_ecdsa_idkg_key_test.rs +++ b/rs/tests/consensus/orchestrator/rotate_ecdsa_idkg_key_test.rs @@ -242,7 +242,7 @@ fn test(env: TestEnv) { assert!(last_rotation .duration_since(first_rotation) - .map_or(false, |d| d + gamma <= delta)); + .is_some_and(|d| d + gamma <= delta)); // Ensure signing still works for (key_id, public_key) in public_keys { diff --git a/rs/tests/consensus/orchestrator/unstuck_subnet_test.rs b/rs/tests/consensus/orchestrator/unstuck_subnet_test.rs index 97cb79cd63b..9f8f5f76692 100644 --- a/rs/tests/consensus/orchestrator/unstuck_subnet_test.rs +++ b/rs/tests/consensus/orchestrator/unstuck_subnet_test.rs @@ -205,7 +205,7 @@ fn test(test_env: TestEnv) { fn have_sha_errors(session: &Session) -> bool { let cmd = "journalctl | grep -c 'FileHashMismatchError'".to_string(); - execute_bash_command(session, cmd).map_or(false, |res| res.trim().parse::().unwrap() > 0) + execute_bash_command(session, cmd).is_some_and(|res| res.trim().parse::().unwrap() > 0) } fn main() -> Result<()> { diff --git a/rs/tests/consensus/subnet_recovery/common.rs b/rs/tests/consensus/subnet_recovery/common.rs index 4106012edd8..77c960d9aec 100644 --- a/rs/tests/consensus/subnet_recovery/common.rs +++ b/rs/tests/consensus/subnet_recovery/common.rs @@ -573,7 +573,7 @@ fn halt_subnet( message.cursor ), ); - if res.map_or(false, |r| r.trim().parse::().unwrap() > 0) { + if res.is_some_and(|r| r.trim().parse::().unwrap() > 0) { Ok(()) } else { bail!("Did not find log entry that consensus is halted.") @@ -660,7 +660,7 @@ fn corrupt_latest_cup(subnet: &SubnetSnapshot, recovery: &Recovery, logger: &Log message.cursor ), ); - if res.map_or(false, |r| r.trim().parse::().unwrap() > 0) { + if resis_some_and( |r| r.trim().parse::().unwrap() > 0) { Ok(()) } else { bail!("Did not find log entry that cup is corrupted.") From 50f815eb08dbd1360d6aafc3d7206c99ee92a7dd Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Fri, 17 Jan 2025 16:21:39 +0000 Subject: [PATCH 14/34] . --- packages/pocket-ic/src/lib.rs | 9 ++++----- rs/execution_environment/benches/lib/src/wat_builder.rs | 3 --- rs/ledger_suite/icp/BUILD.bazel | 2 +- rs/orchestrator/BUILD.bazel | 4 ++-- rs/rust_canisters/random_traffic_test/src/main.rs | 2 +- 5 files changed, 8 insertions(+), 12 deletions(-) diff --git a/packages/pocket-ic/src/lib.rs b/packages/pocket-ic/src/lib.rs index cbcbc668a2a..df3caf7ac00 100644 --- a/packages/pocket-ic/src/lib.rs +++ b/packages/pocket-ic/src/lib.rs @@ -1637,8 +1637,10 @@ To download the binary, please visit https://github.com/dfinity/pocketic." cmd.stderr(std::process::Stdio::null()); } } - let process = cmd - .spawn() + + // TODO: This process must be killed at some point + // to avoid it becoming a zombie. + cmd.spawn() .unwrap_or_else(|_| panic!("Failed to start PocketIC binary ({:?})", bin_path)); loop { @@ -1653,9 +1655,6 @@ To download the binary, please visit https://github.com/dfinity/pocketic." } std::thread::sleep(Duration::from_millis(20)); } - - process.kill(); - process.wait().unwrap(); } #[derive(Error, Debug)] diff --git a/rs/execution_environment/benches/lib/src/wat_builder.rs b/rs/execution_environment/benches/lib/src/wat_builder.rs index fcbdb0f6b20..779002c6a09 100644 --- a/rs/execution_environment/benches/lib/src/wat_builder.rs +++ b/rs/execution_environment/benches/lib/src/wat_builder.rs @@ -23,7 +23,6 @@ use crate::common::Wasm64; //////////////////////////////////////////////////////////////////////// /// WAT Block Builder - /// Represent a block of WAT code with corresponding imports and local variables. #[derive(Default)] pub struct Block { @@ -161,7 +160,6 @@ impl Block { //////////////////////////////////////////////////////////////////////// /// WAT Function Builder - /// Represent a WAT function with corresponding imports. #[derive(Default)] pub struct Func { @@ -188,7 +186,6 @@ impl Func { //////////////////////////////////////////////////////////////////////// /// Helper functions - /// Return a new block prepended and appended with the specified lines. fn wrap_lines(prefix: &str, lines: Vec, suffix: &str) -> Vec { vec![prefix.into()] diff --git a/rs/ledger_suite/icp/BUILD.bazel b/rs/ledger_suite/icp/BUILD.bazel index 999d83e0d54..20ab1447f14 100644 --- a/rs/ledger_suite/icp/BUILD.bazel +++ b/rs/ledger_suite/icp/BUILD.bazel @@ -97,9 +97,9 @@ rust_ic_test_suite( "tests/tests.rs", "tests/upgrade_downgrade.rs", ], + compile_data = ["ledger_archive.did"], data = [ "ledger.did", - "ledger_archive.did", ":ledger_proxy.wasm", ":test_notified_canister", "//rs/ledger_suite/icp/archive:ledger-archive-node-canister-wasm", diff --git a/rs/orchestrator/BUILD.bazel b/rs/orchestrator/BUILD.bazel index 4d992a490ca..02a2db1cc45 100644 --- a/rs/orchestrator/BUILD.bazel +++ b/rs/orchestrator/BUILD.bazel @@ -87,12 +87,12 @@ rust_binary( rust_test( name = "orchestrator_test", - crate = ":lib", - data = [ + compile_data = [ "testdata/nftables_assigned_replica.conf.golden", "testdata/nftables_boundary_node.conf.golden", "//ic-os/components:ic/generate-ic-config/ic.json5.template", ], + crate = ":lib", deps = [ # Keep sorted. "//rs/crypto/temp_crypto", diff --git a/rs/rust_canisters/random_traffic_test/src/main.rs b/rs/rust_canisters/random_traffic_test/src/main.rs index 9dff81803fc..dad560394f6 100644 --- a/rs/rust_canisters/random_traffic_test/src/main.rs +++ b/rs/rust_canisters/random_traffic_test/src/main.rs @@ -265,7 +265,7 @@ async fn handle_call(msg: Message) -> Vec { fn should_make_downstream_call() -> bool { RNG.with_borrow_mut(|rng| { WeightedIndex::new([CALL_WEIGHT.get(), REPLY_WEIGHT.get()]) - .is_some_and(|dist| dist.sample(rng) == 0) + .is_ok_and(|dist| dist.sample(rng) == 0) }) } From 354279938bbab64ea93bcf104d6457f9a942d829 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 08:16:31 +0000 Subject: [PATCH 15/34] add pmap back --- rs/nns/governance/src/governance.rs | 14 ++-- rs/rust_canisters/pmap/BUILD.bazel | 55 +++++++++++++++ rs/rust_canisters/pmap/Cargo.toml | 31 +++++++++ rs/rust_canisters/pmap/Readme.md | 3 + rs/rust_canisters/pmap/canister/main.rs | 85 ++++++++++++++++++++++++ rs/rust_canisters/pmap/canister/pmap.did | 7 ++ rs/rust_canisters/pmap/src/main.rs | 1 + rs/rust_canisters/pmap/test/main.rs | 37 +++++++++++ 8 files changed, 227 insertions(+), 6 deletions(-) create mode 100644 rs/rust_canisters/pmap/BUILD.bazel create mode 100644 rs/rust_canisters/pmap/Cargo.toml create mode 100644 rs/rust_canisters/pmap/Readme.md create mode 100644 rs/rust_canisters/pmap/canister/main.rs create mode 100644 rs/rust_canisters/pmap/canister/pmap.did create mode 100644 rs/rust_canisters/pmap/src/main.rs create mode 100644 rs/rust_canisters/pmap/test/main.rs diff --git a/rs/nns/governance/src/governance.rs b/rs/nns/governance/src/governance.rs index b5c9845c045..a4add42fe8a 100644 --- a/rs/nns/governance/src/governance.rs +++ b/rs/nns/governance/src/governance.rs @@ -1057,7 +1057,7 @@ impl Proposal { fn allowed_when_resources_are_low(&self) -> bool { self.action .as_ref() - .is_some_and(|a| a.allowed_when_resources_are_low()) + .map_or(false, |a| a.allowed_when_resources_are_low()) } fn omit_large_fields(self) -> Self { @@ -1177,7 +1177,7 @@ impl ProposalData { pub fn is_manage_neuron(&self) -> bool { self.proposal .as_ref() - .is_some_and(Proposal::is_manage_neuron) + .map_or(false, Proposal::is_manage_neuron) } pub fn reward_status( @@ -1938,10 +1938,6 @@ fn spawn_in_canister_env(future: impl Future + Sized + 'static) { } } -fn error_string_to_governance_error(error: String) -> GovernanceError { - GovernanceError::new_with_message(ErrorType::InvalidProposal, error) -} - impl Governance { /// Creates a new Governance instance with uninitialized fields. The canister should only have /// such state before the state is recovered from the stable memory in post_upgrade or @@ -5312,6 +5308,12 @@ impl Governance { } fn validate_proposal(&self, proposal: &Proposal) -> Result { + impl From for GovernanceError { + fn from(message: String) -> Self { + Self::new_with_message(ErrorType::InvalidProposal, message) + } + } + if proposal.topic() == Topic::Unspecified { Err(format!("Topic not specified. proposal: {:#?}", proposal))?; } diff --git a/rs/rust_canisters/pmap/BUILD.bazel b/rs/rust_canisters/pmap/BUILD.bazel new file mode 100644 index 00000000000..e4639a57082 --- /dev/null +++ b/rs/rust_canisters/pmap/BUILD.bazel @@ -0,0 +1,55 @@ +load("@rules_rust//rust:defs.bzl", "rust_binary") +load("//bazel:canisters.bzl", "rust_canister") +load("//bazel:defs.bzl", "rust_ic_test") + +package(default_visibility = ["//visibility:public"]) + +DEPENDENCIES = [ + # Keep sorted. + "//rs/rust_canisters/dfn_core", + "//rs/rust_canisters/dfn_json", +] + +DEV_DEPENDENCIES = [ + # Keep sorted. + "//rs/rust_canisters/canister_test", + "//rs/utils", +] + +MACRO_DEPENDENCIES = [ + # Keep sorted. + "//rs/rust_canisters/dfn_macro", +] + +ALIASES = {} + +rust_binary( + name = "pmap", + srcs = ["src/main.rs"], + aliases = ALIASES, + proc_macro_deps = MACRO_DEPENDENCIES, + deps = DEPENDENCIES, +) + +rust_canister( + name = "pmap_canister", + srcs = ["canister/main.rs"], + aliases = ALIASES, + proc_macro_deps = MACRO_DEPENDENCIES, + service_file = ":canister/pmap.did", + deps = DEPENDENCIES, +) + +rust_ic_test( + name = "pmap_test", + srcs = ["test/main.rs"], + data = [ + ":pmap_canister", + ], + env = { + "CARGO_MANIFEST_DIR": "rs/rust_canisters/pmap", + "PMAP_CANISTER_WASM_PATH": "$(rootpath :pmap_canister)", + }, + proc_macro_deps = MACRO_DEPENDENCIES, + deps = DEPENDENCIES + DEV_DEPENDENCIES, +) diff --git a/rs/rust_canisters/pmap/Cargo.toml b/rs/rust_canisters/pmap/Cargo.toml new file mode 100644 index 00000000000..cd5a6a4c7d6 --- /dev/null +++ b/rs/rust_canisters/pmap/Cargo.toml @@ -0,0 +1,31 @@ +[package] +name = "pmap" +version.workspace = true +authors.workspace = true +edition.workspace = true +description.workspace = true +documentation.workspace = true + +[dependencies] +# add dependencies that only canister uses here +dfn_core = { path = "../dfn_core" } +dfn_json = { path = "../dfn_json" } +dfn_macro = { path = "../dfn_macro" } + +[target.'cfg(not(target_os = "unknown"))'.dev-dependencies] +# add dependencies that only test driver uses +canister-test = { path = "../../rust_canisters/canister_test" } +ic-utils = { path = "../../utils" } + + +[[bin]] +name = "pmap" +path = "src/main.rs" + +[[bin]] +name = "pmap_canister" +path = "canister/main.rs" + +[[test]] +name = "test" +path = "test/main.rs" diff --git a/rs/rust_canisters/pmap/Readme.md b/rs/rust_canisters/pmap/Readme.md new file mode 100644 index 00000000000..3f5a9a3ed78 --- /dev/null +++ b/rs/rust_canisters/pmap/Readme.md @@ -0,0 +1,3 @@ +to run the test do : + +cargo test \ No newline at end of file diff --git a/rs/rust_canisters/pmap/canister/main.rs b/rs/rust_canisters/pmap/canister/main.rs new file mode 100644 index 00000000000..9bf061382c9 --- /dev/null +++ b/rs/rust_canisters/pmap/canister/main.rs @@ -0,0 +1,85 @@ +use dfn_core::api::print; +use dfn_macro::{query, update}; +use std::ptr::{addr_of, addr_of_mut}; + +static mut MYVEC: Vec = Vec::new(); +const ARRAYSIZE: usize = 10; +static mut TRAP: bool = false; + +#[update] +async fn create_array() -> Result { + unsafe { + MYVEC = vec![0; ARRAYSIZE]; + } + + print("Array created"); + Ok("Array created".into()) +} + +#[update] +async fn increment_array() -> Result { + unsafe { + if MYVEC.is_empty() { + return Err("Array not initialized".into()); + } else { + let hi = MYVEC[ARRAYSIZE - 1]; + let lo = MYVEC[0]; + + print(format!("Before increment hi {} lo {}", hi, lo)); + + for v in &mut *addr_of_mut!(MYVEC) { + *v += 1; + } + + let hi = MYVEC[ARRAYSIZE - 1]; + let lo = MYVEC[0]; + + print(format!("After increment hi {} lo {}", hi, lo)); + + if TRAP { + unreachable!() + } + } + } + print("Done !!! "); + Ok("Done !!! ".into()) +} + +#[query] +async fn compute_sum() -> Result { + unsafe { + if MYVEC.is_empty() { + Err("Array not initialized".into()) + } else { + let hi = MYVEC[ARRAYSIZE - 1]; + let lo = MYVEC[0]; + + print(format!("Compute sum hi {} lo {}", hi, lo)); + + let mut sum: u32 = 0; + + for v in &*addr_of!(MYVEC) { + sum += *v as u32; + } + + print(format!("Computed sum {}", sum)); + Ok(sum) + } + } +} + +#[update] +async fn toggle_trap() -> Result<(), String> { + unsafe { + TRAP = !TRAP; + } + Ok(()) +} + +#[query] +async fn test() -> Result { + print("hello world"); + Ok("Hello World".into()) +} + +fn main() {} diff --git a/rs/rust_canisters/pmap/canister/pmap.did b/rs/rust_canisters/pmap/canister/pmap.did new file mode 100644 index 00000000000..fdfb9b1af78 --- /dev/null +++ b/rs/rust_canisters/pmap/canister/pmap.did @@ -0,0 +1,7 @@ +service : { + create_array : () -> (variant { Ok : text; Err : text }); + increment_array : () -> (variant { Ok : text; Err : text }); + compute_sum : () -> (variant { Ok : nat32; Err : text }) query; + toggle_trap : () -> (variant { Ok : null; Err : text }); + test : () -> (variant { Ok : text; Err : text }) query; +} \ No newline at end of file diff --git a/rs/rust_canisters/pmap/src/main.rs b/rs/rust_canisters/pmap/src/main.rs new file mode 100644 index 00000000000..f328e4d9d04 --- /dev/null +++ b/rs/rust_canisters/pmap/src/main.rs @@ -0,0 +1 @@ +fn main() {} diff --git a/rs/rust_canisters/pmap/test/main.rs b/rs/rust_canisters/pmap/test/main.rs new file mode 100644 index 00000000000..cfc7fe10340 --- /dev/null +++ b/rs/rust_canisters/pmap/test/main.rs @@ -0,0 +1,37 @@ +use canister_test::*; +use dfn_json::json; + +#[test] +fn test() { + local_test_e(|runtime| async move { + /////////////////////////////////////////////////////// + // Create a new instance of pmap + /////////////////////////////////////////////////////// + let proj = Project::new(); + + let create_canister = |c| proj.cargo_bin(c, &[]).install(&runtime).bytes(Vec::new()); + + let canister = create_canister("pmap_canister").await?; + + let res: Result = canister.query_("test", json, ()).await?; + assert!(res.is_ok()); + + let res: Result = canister.update_("create_array", json, ()).await?; + assert!(res.is_ok()); + + let res: Result = canister.update_("increment_array", json, ()).await?; + assert!(res.is_ok()); + + let res: Result = canister.update_("increment_array", json, ()).await?; + assert!(res.is_ok()); + + let res: Result = canister.update_("compute_sum", json, ()).await?; + assert_eq!(res, Ok(20)); + + let res: Result = canister.query_("test", json, ()).await?; + assert!(res.is_ok()); + Ok(()) + }); +} + +fn main() {} From cbc5cf142efe99d9d039a73c621f9b75a5f0bc72 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 08:20:54 +0000 Subject: [PATCH 16/34] . --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a46bff8ba76..b00c6193c75 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -320,6 +320,7 @@ members = [ "rs/rust_canisters/load_simulator", "rs/rust_canisters/memory_test", "rs/rust_canisters/on_wire", + "rs/rust_canisters/pmap", "rs/rust_canisters/proxy_canister", "rs/rust_canisters/response_payload_test", "rs/rust_canisters/stable_reader", @@ -610,7 +611,7 @@ minicbor-derive = "0.13.0" mockall = "0.13.0" mockito = "1.2.0" nftables = "0.4" -nix = "0.24.3" +nix = { version = "0.24.3", features = ["ptrace"] } num_cpus = "1.16.0" num-bigint = "0.4.6" num-traits = { version = "0.2.12", features = ["libm"] } From 6af444266aaae43e4e10a0358d0723d2dbcd3aae Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 08:20:59 +0000 Subject: [PATCH 17/34] . --- Cargo.lock | 11 +++++++++++ rs/backup/BUILD.bazel | 2 +- rs/ledger_suite/icrc1/ledger/src/lib.rs | 4 ++-- rs/nns/governance/src/governance.rs | 1 + rs/recovery/BUILD.bazel | 4 ++-- rs/recovery/subnet_splitting/BUILD.bazel | 2 +- rs/rust_canisters/pmap/canister/main.rs | 4 ++++ rs/sns/cli/src/lib.rs | 3 +++ rs/sns/swap/canister/canister.rs | 4 ++++ .../orchestrator/rotate_ecdsa_idkg_key_test.rs | 2 +- .../consensus/orchestrator/unstuck_subnet_test.rs | 2 +- rs/tests/consensus/subnet_recovery/common.rs | 4 ++-- 12 files changed, 33 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 364d3919585..44d9c32910a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -17137,6 +17137,17 @@ dependencies = [ "plotters-backend", ] +[[package]] +name = "pmap" +version = "0.9.0" +dependencies = [ + "canister-test", + "dfn_core", + "dfn_json", + "dfn_macro", + "ic-utils 0.9.0", +] + [[package]] name = "pocket-ic" version = "6.0.0" diff --git a/rs/backup/BUILD.bazel b/rs/backup/BUILD.bazel index a792b7b5e34..a3fa70bc6a1 100644 --- a/rs/backup/BUILD.bazel +++ b/rs/backup/BUILD.bazel @@ -62,6 +62,6 @@ rust_binary( rust_test( name = "backup_test", crate = ":backup", - data = ["test_data/fake_input_config.json.template"], + compile_data = ["test_data/fake_input_config.json.template"], deps = DEPENDENCIES + DEV_DEPENDENCIES, ) diff --git a/rs/ledger_suite/icrc1/ledger/src/lib.rs b/rs/ledger_suite/icrc1/ledger/src/lib.rs index b7f98fc2718..7961f708bea 100644 --- a/rs/ledger_suite/icrc1/ledger/src/lib.rs +++ b/rs/ledger_suite/icrc1/ledger/src/lib.rs @@ -947,13 +947,13 @@ impl Ledger { let mut last_block_index_encoded = Vec::with_capacity(MAX_U64_ENCODING_BYTES); leb128::write::unsigned(&mut last_block_index_encoded, last_block_index) .expect("Failed to write LEB128"); - return fork( + fork( label( last_block_hash_label, leaf(last_block_hash.as_slice().to_vec()), ), label(last_block_index_label, leaf(last_block_index_encoded)), - ); + ) } #[cfg(not(feature = "icrc3-compatible-data-certificate"))] { diff --git a/rs/nns/governance/src/governance.rs b/rs/nns/governance/src/governance.rs index a4add42fe8a..5f95722860c 100644 --- a/rs/nns/governance/src/governance.rs +++ b/rs/nns/governance/src/governance.rs @@ -5308,6 +5308,7 @@ impl Governance { } fn validate_proposal(&self, proposal: &Proposal) -> Result { + #[allow(non_local_definitions)] impl From for GovernanceError { fn from(message: String) -> Self { Self::new_with_message(ErrorType::InvalidProposal, message) diff --git a/rs/recovery/BUILD.bazel b/rs/recovery/BUILD.bazel index 1364ceed55c..a2392d65836 100644 --- a/rs/recovery/BUILD.bazel +++ b/rs/recovery/BUILD.bazel @@ -61,7 +61,7 @@ rust_library( srcs = glob(["src/**/*.rs"]), aliases = ALIASES, crate_name = "ic_recovery", - data = ["ic_public_key.pem"], + compile_data = ["ic_public_key.pem"], proc_macro_deps = MACRO_DEPENDENCIES, version = "0.1.0", visibility = [ @@ -89,6 +89,6 @@ rust_binary( rust_test( name = "recovery_test", crate = ":recovery", - data = ["ic_public_key.pem"], + compile_data = ["ic_public_key.pem"], deps = DEPENDENCIES + DEV_DEPENDENCIES, ) diff --git a/rs/recovery/subnet_splitting/BUILD.bazel b/rs/recovery/subnet_splitting/BUILD.bazel index 7250b6d7f43..2c71f71d9c6 100644 --- a/rs/recovery/subnet_splitting/BUILD.bazel +++ b/rs/recovery/subnet_splitting/BUILD.bazel @@ -65,6 +65,6 @@ rust_binary( rust_test( name = "subnet_splitting_tool_test", crate = "subnet_splitting", - data = ["test_data/fake_expected_manifests.data"], + compile_data = ["test_data/fake_expected_manifests.data"], deps = DEPENDENCIES + DEV_DEPENDENCIES, ) diff --git a/rs/rust_canisters/pmap/canister/main.rs b/rs/rust_canisters/pmap/canister/main.rs index 9bf061382c9..174e7ca7cf8 100644 --- a/rs/rust_canisters/pmap/canister/main.rs +++ b/rs/rust_canisters/pmap/canister/main.rs @@ -1,3 +1,7 @@ +// TODO: Static mutable refs will become a hard error in 2024 edition of rust. +// https://doc.rust-lang.org/nightly/edition-guide/rust-2024/static-mut-references.html#disallow-references-to-static-mut +#![allow(static_mut_refs)] + use dfn_core::api::print; use dfn_macro::{query, update}; use std::ptr::{addr_of, addr_of_mut}; diff --git a/rs/sns/cli/src/lib.rs b/rs/sns/cli/src/lib.rs index 12552020b26..6138e98d5e9 100644 --- a/rs/sns/cli/src/lib.rs +++ b/rs/sns/cli/src/lib.rs @@ -509,6 +509,9 @@ impl NnsGovernanceCanister { proposer: &NeuronIdOrSubaccount, proposal: &Proposal, ) -> Result { + // TODO: Local implementations can become hard error in 2024. + // See https://doc.rust-lang.org/nightly/nightly-rustc/rustc_lint/non_local_def/static.NON_LOCAL_DEFINITIONS.html + #[allow(non_local_definitions)] impl Request for ManageNeuron { type Response = ManageNeuronResponse; const METHOD_NAME: &'static str = "manage_neuron"; diff --git a/rs/sns/swap/canister/canister.rs b/rs/sns/swap/canister/canister.rs index 1e9b1484caf..87c02c822a4 100644 --- a/rs/sns/swap/canister/canister.rs +++ b/rs/sns/swap/canister/canister.rs @@ -1,3 +1,7 @@ +// TODO: Static mutable refs will become a hard error in 2024 edition of rust. +// https://doc.rust-lang.org/nightly/edition-guide/rust-2024/static-mut-references.html#disallow-references-to-static-mut +#![allow(static_mut_refs)] + use ic_base_types::{CanisterId, PrincipalId}; use ic_canister_log::log; use ic_canisters_http_types::{HttpRequest, HttpResponse, HttpResponseBuilder}; diff --git a/rs/tests/consensus/orchestrator/rotate_ecdsa_idkg_key_test.rs b/rs/tests/consensus/orchestrator/rotate_ecdsa_idkg_key_test.rs index 9698ce6611a..86a5eb0aa8c 100644 --- a/rs/tests/consensus/orchestrator/rotate_ecdsa_idkg_key_test.rs +++ b/rs/tests/consensus/orchestrator/rotate_ecdsa_idkg_key_test.rs @@ -242,7 +242,7 @@ fn test(env: TestEnv) { assert!(last_rotation .duration_since(first_rotation) - .is_some_and(|d| d + gamma <= delta)); + .is_ok_and(|d| d + gamma <= delta)); // Ensure signing still works for (key_id, public_key) in public_keys { diff --git a/rs/tests/consensus/orchestrator/unstuck_subnet_test.rs b/rs/tests/consensus/orchestrator/unstuck_subnet_test.rs index 9f8f5f76692..6759722b0c9 100644 --- a/rs/tests/consensus/orchestrator/unstuck_subnet_test.rs +++ b/rs/tests/consensus/orchestrator/unstuck_subnet_test.rs @@ -205,7 +205,7 @@ fn test(test_env: TestEnv) { fn have_sha_errors(session: &Session) -> bool { let cmd = "journalctl | grep -c 'FileHashMismatchError'".to_string(); - execute_bash_command(session, cmd).is_some_and(|res| res.trim().parse::().unwrap() > 0) + execute_bash_command(session, cmd).is_ok_and(|res| res.trim().parse::().unwrap() > 0) } fn main() -> Result<()> { diff --git a/rs/tests/consensus/subnet_recovery/common.rs b/rs/tests/consensus/subnet_recovery/common.rs index 77c960d9aec..4d824815b05 100644 --- a/rs/tests/consensus/subnet_recovery/common.rs +++ b/rs/tests/consensus/subnet_recovery/common.rs @@ -573,7 +573,7 @@ fn halt_subnet( message.cursor ), ); - if res.is_some_and(|r| r.trim().parse::().unwrap() > 0) { + if res.is_ok_and(|r| r.trim().parse::().unwrap() > 0) { Ok(()) } else { bail!("Did not find log entry that consensus is halted.") @@ -660,7 +660,7 @@ fn corrupt_latest_cup(subnet: &SubnetSnapshot, recovery: &Recovery, logger: &Log message.cursor ), ); - if resis_some_and( |r| r.trim().parse::().unwrap() > 0) { + if res.is_ok_and( |r| r.trim().parse::().unwrap() > 0) { Ok(()) } else { bail!("Did not find log entry that cup is corrupted.") From 4e628c0ba82bfbd517cb861b0184157e767ca690 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 08:34:14 +0000 Subject: [PATCH 18/34] run rust formatter --- rs/execution_environment/src/scheduler.rs | 4 ++-- rs/execution_environment/tests/hypervisor.rs | 4 +--- rs/state_manager/src/manifest/tests/computation.rs | 3 +-- .../boundary_nodes/api_bn_decentralization_test.rs | 11 ++++------- 4 files changed, 8 insertions(+), 14 deletions(-) diff --git a/rs/execution_environment/src/scheduler.rs b/rs/execution_environment/src/scheduler.rs index da4c57b5cdd..1622f7af25e 100644 --- a/rs/execution_environment/src/scheduler.rs +++ b/rs/execution_environment/src/scheduler.rs @@ -1825,7 +1825,7 @@ fn execute_canisters_on_thread( &mut round_limits, subnet_size, ); - if instructions_used.is_some_and( |instructions| instructions.get() > 0) { + if instructions_used.is_some_and(|instructions| instructions.get() > 0) { // We only want to count the canister as executed if it used instructions. executed_canister_ids.insert(new_canister.canister_id()); } @@ -2319,7 +2319,7 @@ fn is_next_method_chosen( .system_state .task_queue .front() - .is_some_and( |task| task.is_hook()) + .is_some_and(|task| task.is_hook()) { return true; } diff --git a/rs/execution_environment/tests/hypervisor.rs b/rs/execution_environment/tests/hypervisor.rs index a7a27426517..7458daebcf0 100644 --- a/rs/execution_environment/tests/hypervisor.rs +++ b/rs/execution_environment/tests/hypervisor.rs @@ -7586,9 +7586,7 @@ fn declaring_too_many_tables_fails() { // produces a reply from `bytes`. fn use_wasm_memory_and_reply(bytes: u64) -> Vec { wasm() - .stable64_grow( - bytes.div_ceil(WASM_PAGE_SIZE_IN_BYTES as u64), - ) + .stable64_grow(bytes.div_ceil(WASM_PAGE_SIZE_IN_BYTES as u64)) .stable64_read(0, bytes) .blob_length() .reply_int() diff --git a/rs/state_manager/src/manifest/tests/computation.rs b/rs/state_manager/src/manifest/tests/computation.rs index 6ae1413da2b..ab706b8c9fe 100644 --- a/rs/state_manager/src/manifest/tests/computation.rs +++ b/rs/state_manager/src/manifest/tests/computation.rs @@ -401,8 +401,7 @@ fn test_validate_sub_manifest() { let meta_manifest = build_meta_manifest(&manifest); let encoded_manifest = encode_manifest(&manifest); - let num = - encoded_manifest.len().div_ceil(DEFAULT_CHUNK_SIZE as usize); + let num = encoded_manifest.len().div_ceil(DEFAULT_CHUNK_SIZE as usize); assert!( num > 1, "This test does not cover the case where the encoded manifest is divided into multiple pieces." diff --git a/rs/tests/boundary_nodes/api_bn_decentralization_test.rs b/rs/tests/boundary_nodes/api_bn_decentralization_test.rs index 9bd913ce12b..4b98b9d8fdb 100644 --- a/rs/tests/boundary_nodes/api_bn_decentralization_test.rs +++ b/rs/tests/boundary_nodes/api_bn_decentralization_test.rs @@ -511,13 +511,10 @@ async fn assert_api_bns_present_in_state_tree( .sorted_by(|a, b| Ord::cmp(&a.domain, &b.domain)) .collect::>(); - let are_expected_bns = api_bns_sorted - .iter() - .enumerate() - .all(|(idx, bn)| { - bn.domain == expected_api_bns[idx].domain - && bn.ipv6_address == expected_api_bns[idx].ipv6_address - }); + let are_expected_bns = api_bns_sorted.iter().enumerate().all(|(idx, bn)| { + bn.domain == expected_api_bns[idx].domain + && bn.ipv6_address == expected_api_bns[idx].ipv6_address + }); if !are_expected_bns { bail!("Expected API BNs haven't yet appeared in the state tree ..."); From e9604dd0639949fa221812237d0d5bb5a21b9c1a Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 08:54:24 +0000 Subject: [PATCH 19/34] . --- packages/pocket-ic/src/lib.rs | 3 ++- rs/execution_environment/benches/lib/src/wat_builder.rs | 4 +--- rs/nns/governance/src/governance.rs | 2 +- rs/sns/governance/canister/canister.rs | 4 ++++ .../test_canisters/sns_governance_mem_test_canister.rs | 4 ++++ rs/sns/swap/src/swap.rs | 2 +- 6 files changed, 13 insertions(+), 6 deletions(-) diff --git a/packages/pocket-ic/src/lib.rs b/packages/pocket-ic/src/lib.rs index 690f8fe532f..c5ecf50bfbe 100644 --- a/packages/pocket-ic/src/lib.rs +++ b/packages/pocket-ic/src/lib.rs @@ -1686,8 +1686,9 @@ To download the binary, please visit https://github.com/dfinity/pocketic." } } - // TODO: This process must be killed at some point + // TODO: This spawned process must be killed at some point // to avoid it becoming a zombie. + #[allow(clippy::clippy::zombie_processes)] cmd.spawn() .unwrap_or_else(|_| panic!("Failed to start PocketIC binary ({:?})", bin_path)); diff --git a/rs/execution_environment/benches/lib/src/wat_builder.rs b/rs/execution_environment/benches/lib/src/wat_builder.rs index 779002c6a09..d75e95fd512 100644 --- a/rs/execution_environment/benches/lib/src/wat_builder.rs +++ b/rs/execution_environment/benches/lib/src/wat_builder.rs @@ -1,6 +1,4 @@ -/// -/// The new WAT builder. -// +// The new WAT builder. /// Default number of loop iterations. pub const DEFAULT_LOOP_ITERATIONS: usize = 1_000; diff --git a/rs/nns/governance/src/governance.rs b/rs/nns/governance/src/governance.rs index 5f95722860c..1910de33f0d 100644 --- a/rs/nns/governance/src/governance.rs +++ b/rs/nns/governance/src/governance.rs @@ -1057,7 +1057,7 @@ impl Proposal { fn allowed_when_resources_are_low(&self) -> bool { self.action .as_ref() - .map_or(false, |a| a.allowed_when_resources_are_low()) + .is_some_and(|a| a.allowed_when_resources_are_low()) } fn omit_large_fields(self) -> Self { diff --git a/rs/sns/governance/canister/canister.rs b/rs/sns/governance/canister/canister.rs index f29c9e353b0..083d2e92b53 100644 --- a/rs/sns/governance/canister/canister.rs +++ b/rs/sns/governance/canister/canister.rs @@ -1,3 +1,7 @@ +// TODO: Static mutable refs will become a hard error in 2024 edition of rust. +// https://doc.rust-lang.org/nightly/edition-guide/rust-2024/static-mut-references.html#disallow-references-to-static-mut +#![allow(static_mut_refs)] + use async_trait::async_trait; use ic_base_types::{CanisterId, PrincipalId}; use ic_canister_log::log; diff --git a/rs/sns/integration_tests/test_canisters/sns_governance_mem_test_canister.rs b/rs/sns/integration_tests/test_canisters/sns_governance_mem_test_canister.rs index bce4a43db4b..236b1ecb9a1 100644 --- a/rs/sns/integration_tests/test_canisters/sns_governance_mem_test_canister.rs +++ b/rs/sns/integration_tests/test_canisters/sns_governance_mem_test_canister.rs @@ -1,3 +1,7 @@ +// TODO: Static mutable refs will become a hard error in 2024 edition of rust. +// https://doc.rust-lang.org/nightly/edition-guide/rust-2024/static-mut-references.html#disallow-references-to-static-mut +#![allow(static_mut_refs)] + //! This is a special-purpose canister to create a large Governance proto and //! serialize it to stable memory in a format that is compatible with the real //! governance canister. diff --git a/rs/sns/swap/src/swap.rs b/rs/sns/swap/src/swap.rs index e687df08ce2..324424faa2e 100644 --- a/rs/sns/swap/src/swap.rs +++ b/rs/sns/swap/src/swap.rs @@ -2535,7 +2535,7 @@ impl Swap { if request .subaccount .as_ref() - .map_or(false, |subaccount| subaccount.len() != 32) + .is_some_and(|subaccount| subaccount.len() != 32) { return NewSaleTicketResponse::err_invalid_subaccount(); } From da0a5be69e69f3f796a3243450081752cc4ee1a5 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 08:56:05 +0000 Subject: [PATCH 20/34] . --- rs/nns/governance/src/governance.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rs/nns/governance/src/governance.rs b/rs/nns/governance/src/governance.rs index 1910de33f0d..3919557f97d 100644 --- a/rs/nns/governance/src/governance.rs +++ b/rs/nns/governance/src/governance.rs @@ -1177,7 +1177,7 @@ impl ProposalData { pub fn is_manage_neuron(&self) -> bool { self.proposal .as_ref() - .map_or(false, Proposal::is_manage_neuron) + .is_some_and(Proposal::is_manage_neuron) } pub fn reward_status( From 2313e80dc26113deded586ce8f67be54117ac65c Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 09:03:53 +0000 Subject: [PATCH 21/34] . --- packages/pocket-ic/src/lib.rs | 2 +- rs/nns/test_utils/src/itest_helpers.rs | 4 ++-- rs/tests/ckbtc/src/lib.rs | 2 +- rs/tests/ckbtc/src/utils.rs | 10 +++++----- rs/tests/consensus/catch_up_test_common/src/lib.rs | 2 +- rs/tests/nns/sns/lib/src/sns_aggregator.rs | 8 ++++---- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/packages/pocket-ic/src/lib.rs b/packages/pocket-ic/src/lib.rs index c5ecf50bfbe..3be4bae3695 100644 --- a/packages/pocket-ic/src/lib.rs +++ b/packages/pocket-ic/src/lib.rs @@ -1688,7 +1688,7 @@ To download the binary, please visit https://github.com/dfinity/pocketic." // TODO: This spawned process must be killed at some point // to avoid it becoming a zombie. - #[allow(clippy::clippy::zombie_processes)] + #[allow(clippy::zombie_processes)] cmd.spawn() .unwrap_or_else(|_| panic!("Failed to start PocketIC binary ({:?})", bin_path)); diff --git a/rs/nns/test_utils/src/itest_helpers.rs b/rs/nns/test_utils/src/itest_helpers.rs index 7d84cf9cb1c..a04f398f848 100644 --- a/rs/nns/test_utils/src/itest_helpers.rs +++ b/rs/nns/test_utils/src/itest_helpers.rs @@ -505,8 +505,8 @@ pub async fn set_up_genesis_token_canister( } /// Compiles the ledger canister, builds it's initial payload and installs it -pub async fn install_ledger_canister<'runtime, 'a>( - canister: &mut Canister<'runtime>, +pub async fn install_ledger_canister( + canister: &mut Canister<'_>, args: LedgerCanisterInitPayload, ) { install_rust_canister( diff --git a/rs/tests/ckbtc/src/lib.rs b/rs/tests/ckbtc/src/lib.rs index 93746c04726..896e5920f6f 100644 --- a/rs/tests/ckbtc/src/lib.rs +++ b/rs/tests/ckbtc/src/lib.rs @@ -524,7 +524,7 @@ pub async fn install_bitcoin_canister_with_network( bitcoin_canister.canister_id() } -pub async fn install_icrc1_ledger<'a>(canister: &mut Canister<'a>, args: &LedgerArgument) { +pub async fn install_icrc1_ledger(canister: &mut Canister<'_>, args: &LedgerArgument) { install_rust_canister_from_path( canister, get_dependency_path(env::var("LEDGER_WASM_PATH").expect("LEDGER_WASM_PATH not set")), diff --git a/rs/tests/ckbtc/src/utils.rs b/rs/tests/ckbtc/src/utils.rs index 25b2674f871..4e7afd1323c 100644 --- a/rs/tests/ckbtc/src/utils.rs +++ b/rs/tests/ckbtc/src/utils.rs @@ -85,8 +85,8 @@ pub fn generate_blocks(btc_client: &Client, logger: &Logger, nb_blocks: u64, add /// Wait for the expected balance to be available at the given btc address. /// Timeout after SHORT_TIMEOUT if the expected balance is not reached. -pub async fn wait_for_bitcoin_balance<'a>( - canister: &UniversalCanister<'a>, +pub async fn wait_for_bitcoin_balance( + canister: &UniversalCanister<'_>, logger: &Logger, expected_balance_in_satoshis: u64, btc_address: &Address, @@ -107,7 +107,7 @@ pub async fn wait_for_bitcoin_balance<'a>( /// Wait for the expected balance to be available at the given account. /// Timeout after SHORT_TIMEOUT if the expected balance is not reached. -pub async fn wait_for_ledger_balance<'a>( +pub async fn wait_for_ledger_balance( ledger_agent: &Icrc1Agent, logger: &Logger, expected_balance: Nat, @@ -422,8 +422,8 @@ pub fn get_btc_client(env: &TestEnv) -> Client { .unwrap() } -pub async fn get_bitcoin_balance<'a>( - canister: &UniversalCanister<'a>, +pub async fn get_bitcoin_balance( + canister: &UniversalCanister<'_>, btc_address: &Address, ) -> u64 { canister diff --git a/rs/tests/consensus/catch_up_test_common/src/lib.rs b/rs/tests/consensus/catch_up_test_common/src/lib.rs index 8470db27b08..542973eec00 100644 --- a/rs/tests/consensus/catch_up_test_common/src/lib.rs +++ b/rs/tests/consensus/catch_up_test_common/src/lib.rs @@ -1,4 +1,4 @@ -/// Common test function for a couple of catch up tests. +///! Common test function for a couple of catch up tests. const DKG_INTERVAL: u64 = 150; const CATCH_UP_RETRIES: u64 = 40; diff --git a/rs/tests/nns/sns/lib/src/sns_aggregator.rs b/rs/tests/nns/sns/lib/src/sns_aggregator.rs index 8e1e1bd5397..037d0f426c0 100644 --- a/rs/tests/nns/sns/lib/src/sns_aggregator.rs +++ b/rs/tests/nns/sns/lib/src/sns_aggregator.rs @@ -143,9 +143,9 @@ impl AggregatorClient { format!("/{AGGREGATOR_CANISTER_VERSION}{AGGREGATOR_CANISTER_PATH}") } - async fn http_get_request<'agent>( + async fn http_get_request( log: &Logger, - canister: &HttpRequestCanister<'agent>, + canister: &HttpRequestCanister<'_>, relative_url: String, ) -> Result { let (response,) = canister @@ -171,9 +171,9 @@ impl AggregatorClient { } } - pub async fn http_get_favicon<'agent>( + pub async fn http_get_favicon( log: &Logger, - canister: &HttpRequestCanister<'agent>, + canister: &HttpRequestCanister<'_>, ) -> Result> { let url = "/favicon.ico".to_string(); Self::http_get_request(log, canister, url) From 3a38b95125de4f7c788fdd698eb56217debd3c10 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 09:10:02 +0000 Subject: [PATCH 22/34] . --- .../integration_tests/tests/sns_release_qualification.rs | 2 +- .../test_canisters/governance_mem_test_canister.rs | 4 ++++ rs/pocket_ic_server/tests/spec_test.rs | 5 ++++- rs/tests/cross_chain/ic_xc_ledger_suite_orchestrator_test.rs | 4 ++-- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/rs/nervous_system/integration_tests/tests/sns_release_qualification.rs b/rs/nervous_system/integration_tests/tests/sns_release_qualification.rs index c6900c233af..e1505bcfc79 100644 --- a/rs/nervous_system/integration_tests/tests/sns_release_qualification.rs +++ b/rs/nervous_system/integration_tests/tests/sns_release_qualification.rs @@ -31,7 +31,7 @@ use sns_upgrade_test_utils::test_sns_upgrade; /// since there is sometimes a dependency between them, so we test them in both orders. /// /// Note: FI canisters are considered fully tested elsewhere, and have stable APIs. - +/// /// Deployment tests #[tokio::test] diff --git a/rs/nns/integration_tests/test_canisters/governance_mem_test_canister.rs b/rs/nns/integration_tests/test_canisters/governance_mem_test_canister.rs index e5563e66753..e437a9a9d67 100644 --- a/rs/nns/integration_tests/test_canisters/governance_mem_test_canister.rs +++ b/rs/nns/integration_tests/test_canisters/governance_mem_test_canister.rs @@ -1,3 +1,7 @@ +// TODO: Static mutable refs will become a hard error in 2024 edition of rust. +// https://doc.rust-lang.org/nightly/edition-guide/rust-2024/static-mut-references.html#disallow-references-to-static-mut +#![allow(static_mut_refs)] + //! This is a special-purpose canister to create a large Governance proto and //! serialize it to stable memory in a format that is compatible with the real //! governance canister. diff --git a/rs/pocket_ic_server/tests/spec_test.rs b/rs/pocket_ic_server/tests/spec_test.rs index 037013ecb23..58ca986e6ae 100644 --- a/rs/pocket_ic_server/tests/spec_test.rs +++ b/rs/pocket_ic_server/tests/spec_test.rs @@ -90,7 +90,7 @@ fn setup_and_run_ic_ref_test( cmd.arg("--key-file").arg(key_path); } - cmd.stdout(Stdio::inherit()) + let mut process = cmd.stdout(Stdio::inherit()) .stderr(Stdio::inherit()) .spawn() .expect("httpbin binary crashed"); @@ -196,6 +196,9 @@ fn setup_and_run_ic_ref_test( included_tests, 32, ); + + process.kill().unwrap(); + process.wait(); } #[test] diff --git a/rs/tests/cross_chain/ic_xc_ledger_suite_orchestrator_test.rs b/rs/tests/cross_chain/ic_xc_ledger_suite_orchestrator_test.rs index 7153a932e98..29031a79058 100644 --- a/rs/tests/cross_chain/ic_xc_ledger_suite_orchestrator_test.rs +++ b/rs/tests/cross_chain/ic_xc_ledger_suite_orchestrator_test.rs @@ -251,12 +251,12 @@ async fn install_nns_controlled_canister<'a>( canister } -async fn upgrade_ledger_suite_orchestrator_by_nns_proposal<'a>( +async fn upgrade_ledger_suite_orchestrator_by_nns_proposal( logger: &slog::Logger, governance_canister: &Canister<'_>, root_canister: &Canister<'_>, canister_wasm: CanisterModule, - orchestrator: &LedgerOrchestratorCanister<'a>, + orchestrator: &LedgerOrchestratorCanister<'_>, upgrade_arg: OrchestratorArg, ) { use ic_canister_client::Sender; From a6ab7676a0f7b42610cd44c0be76aad25cb92d1f Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 09:21:53 +0000 Subject: [PATCH 23/34] . --- rs/pocket_ic_server/tests/spec_test.rs | 2 +- rs/sns/test_utils/src/icrc1.rs | 6 +++--- rs/sns/test_utils/src/itest_helpers.rs | 8 ++++---- rs/tests/consensus/backup/common.rs | 2 ++ .../consensus/catch_up_test_common/src/lib.rs | 2 +- .../icrc1_agent_test.rs | 2 +- rs/tests/nns/sns/lib/src/sns_aggregator.rs | 20 +++++++++---------- 7 files changed, 22 insertions(+), 20 deletions(-) diff --git a/rs/pocket_ic_server/tests/spec_test.rs b/rs/pocket_ic_server/tests/spec_test.rs index 58ca986e6ae..06dbb831519 100644 --- a/rs/pocket_ic_server/tests/spec_test.rs +++ b/rs/pocket_ic_server/tests/spec_test.rs @@ -198,7 +198,7 @@ fn setup_and_run_ic_ref_test( ); process.kill().unwrap(); - process.wait(); + process.wait().unwrap(); } #[test] diff --git a/rs/sns/test_utils/src/icrc1.rs b/rs/sns/test_utils/src/icrc1.rs index 5076c3d8f5c..e50faeb55f4 100644 --- a/rs/sns/test_utils/src/icrc1.rs +++ b/rs/sns/test_utils/src/icrc1.rs @@ -9,15 +9,15 @@ use icrc_ledger_types::icrc1::{ }; use num_traits::ToPrimitive; -pub async fn balance_of<'a>(canister: &Canister<'a>, account: Account) -> Result { +pub async fn balance_of(canister: &Canister<'_>, account: Account) -> Result { canister .query_("icrc1_balance_of", candid_one, account) .await .map(|n: Nat| n.0.to_u64().unwrap()) } -pub async fn transfer<'a>( - canister: &Canister<'a>, +pub async fn transfer( + canister: &Canister<'_>, sender: &Sender, args: TransferArg, ) -> Result { diff --git a/rs/sns/test_utils/src/itest_helpers.rs b/rs/sns/test_utils/src/itest_helpers.rs index db114b9d9be..8d483c9996a 100644 --- a/rs/sns/test_utils/src/itest_helpers.rs +++ b/rs/sns/test_utils/src/itest_helpers.rs @@ -1395,8 +1395,8 @@ pub async fn set_up_governance_canister( } /// Compiles the ledger canister, builds it's initial payload and installs it -pub async fn install_ledger_canister<'runtime, 'a>( - canister: &mut Canister<'runtime>, +pub async fn install_ledger_canister( + canister: &mut Canister<'_>, args: LedgerArgument, ) { install_rust_canister_with_memory_allocation( @@ -1417,8 +1417,8 @@ pub async fn set_up_ledger_canister(runtime: &'_ Runtime, args: LedgerInitArgs) } /// Compiles the ledger index canister, builds it's initial payload and installs it -pub async fn install_index_ng_canister<'runtime, 'a>( - canister: &mut Canister<'runtime>, +pub async fn install_index_ng_canister( + canister: &mut Canister<'_>, args: Option, ) { install_rust_canister_with_memory_allocation( diff --git a/rs/tests/consensus/backup/common.rs b/rs/tests/consensus/backup/common.rs index 14269ae7650..5ad31158aef 100644 --- a/rs/tests/consensus/backup/common.rs +++ b/rs/tests/consensus/backup/common.rs @@ -383,6 +383,7 @@ fn test(env: TestEnv, binary_version: String, target_version: String) { "Restart and wait for cold storage and divergence to happen" ); child.kill().expect("Error killing backup process"); + child.wait().expect("Error waiting for backup process"); let checkpoint = some_checkpoint_dir(&backup_dir, &subnet_id).expect("Checkpoint doesn't exist"); @@ -453,6 +454,7 @@ fn test(env: TestEnv, binary_version: String, target_version: String) { info!(log, "Kill child process"); child.kill().expect("Error killing backup process"); + child.wait().expect("Error waiting for backup process"); assert!(hash_mismatch); info!(log, "There was a divergence of the state"); diff --git a/rs/tests/consensus/catch_up_test_common/src/lib.rs b/rs/tests/consensus/catch_up_test_common/src/lib.rs index 542973eec00..55e0dfb101f 100644 --- a/rs/tests/consensus/catch_up_test_common/src/lib.rs +++ b/rs/tests/consensus/catch_up_test_common/src/lib.rs @@ -1,4 +1,4 @@ -///! Common test function for a couple of catch up tests. +//! Common test function for a couple of catch up tests. const DKG_INTERVAL: u64 = 150; const CATCH_UP_RETRIES: u64 = 40; diff --git a/rs/tests/financial_integrations/icrc1_agent_test.rs b/rs/tests/financial_integrations/icrc1_agent_test.rs index 8eda3c764e4..7dc06bb5aaf 100644 --- a/rs/tests/financial_integrations/icrc1_agent_test.rs +++ b/rs/tests/financial_integrations/icrc1_agent_test.rs @@ -400,7 +400,7 @@ fn mleaf>(blob: B) -> MixedHashTree { MixedHashTree::Leaf(blob.as_ref().to_vec()) } -pub async fn install_icrc1_ledger<'a>(canister: &mut Canister<'a>, args: &LedgerArgument) { +pub async fn install_icrc1_ledger(canister: &mut Canister<'_>, args: &LedgerArgument) { install_rust_canister_from_path( canister, get_dependency_path(env::var("LEDGER_WASM_PATH").expect("LEDGER_WASM_PATH not set")), diff --git a/rs/tests/nns/sns/lib/src/sns_aggregator.rs b/rs/tests/nns/sns/lib/src/sns_aggregator.rs index 037d0f426c0..bafb8e76c3b 100644 --- a/rs/tests/nns/sns/lib/src/sns_aggregator.rs +++ b/rs/tests/nns/sns/lib/src/sns_aggregator.rs @@ -181,9 +181,9 @@ impl AggregatorClient { .map(|res| res.body) } - pub async fn http_get_asset<'agent>( + pub async fn http_get_asset( log: &Logger, - canister: &HttpRequestCanister<'agent>, + canister: &HttpRequestCanister<'_>, ) -> Result> { let url = Self::aggregator_http_endpoint(); Self::http_get_request(log, canister, url) @@ -191,9 +191,9 @@ impl AggregatorClient { .map(|res| res.body) } - pub async fn extract_first_sns_sale_config<'agent>( + pub async fn extract_first_sns_sale_config( log: &Logger, - canister: &HttpRequestCanister<'agent>, + canister: &HttpRequestCanister<'_>, ) -> Result { let asset_bytes = Self::http_get_asset(log, canister).await.unwrap(); let asset: Value = serde_json::from_slice(asset_bytes.as_slice())?; @@ -219,9 +219,9 @@ impl AggregatorClient { } } - async fn sub_asset<'agent, P>( + async fn sub_asset

( log: &Logger, - canister: &HttpRequestCanister<'agent>, + canister: &HttpRequestCanister<'_>, extract_sub_asset: &P, timeout: Duration, ) -> RequestOutcome @@ -263,9 +263,9 @@ impl AggregatorClient { ) } - pub async fn first_sns_asset<'agent>( + pub async fn first_sns_asset( log: &Logger, - canister: &HttpRequestCanister<'agent>, + canister: &HttpRequestCanister<'_>, timeout: Duration, ) -> RequestOutcome { let extract_sub_asset = move |asset| { @@ -275,9 +275,9 @@ impl AggregatorClient { Self::sub_asset(log, canister, &extract_sub_asset, timeout).await } - pub async fn first_swap_params<'agent>( + pub async fn first_swap_params( log: &Logger, - canister: &HttpRequestCanister<'agent>, + canister: &HttpRequestCanister<'_>, timeout: Duration, ) -> RequestOutcome { let extract_sub_asset = move |asset| { From 3ec73abd185019abbfdbb643c3175ba8a8e1487f Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 09:23:31 +0000 Subject: [PATCH 24/34] bazel fmt --- .../tests/sns_release_qualification.rs | 2 +- rs/nns/test_utils/src/itest_helpers.rs | 5 +---- rs/pocket_ic_server/tests/spec_test.rs | 3 ++- rs/sns/test_utils/src/itest_helpers.rs | 10 ++-------- rs/tests/ckbtc/src/utils.rs | 5 +---- 5 files changed, 7 insertions(+), 18 deletions(-) diff --git a/rs/nervous_system/integration_tests/tests/sns_release_qualification.rs b/rs/nervous_system/integration_tests/tests/sns_release_qualification.rs index e1505bcfc79..5a771b2cd16 100644 --- a/rs/nervous_system/integration_tests/tests/sns_release_qualification.rs +++ b/rs/nervous_system/integration_tests/tests/sns_release_qualification.rs @@ -31,7 +31,7 @@ use sns_upgrade_test_utils::test_sns_upgrade; /// since there is sometimes a dependency between them, so we test them in both orders. /// /// Note: FI canisters are considered fully tested elsewhere, and have stable APIs. -/// +/// /// Deployment tests #[tokio::test] diff --git a/rs/nns/test_utils/src/itest_helpers.rs b/rs/nns/test_utils/src/itest_helpers.rs index a04f398f848..e4e08e82c4c 100644 --- a/rs/nns/test_utils/src/itest_helpers.rs +++ b/rs/nns/test_utils/src/itest_helpers.rs @@ -505,10 +505,7 @@ pub async fn set_up_genesis_token_canister( } /// Compiles the ledger canister, builds it's initial payload and installs it -pub async fn install_ledger_canister( - canister: &mut Canister<'_>, - args: LedgerCanisterInitPayload, -) { +pub async fn install_ledger_canister(canister: &mut Canister<'_>, args: LedgerCanisterInitPayload) { install_rust_canister( canister, "ledger-canister", diff --git a/rs/pocket_ic_server/tests/spec_test.rs b/rs/pocket_ic_server/tests/spec_test.rs index 06dbb831519..567c79cf324 100644 --- a/rs/pocket_ic_server/tests/spec_test.rs +++ b/rs/pocket_ic_server/tests/spec_test.rs @@ -90,7 +90,8 @@ fn setup_and_run_ic_ref_test( cmd.arg("--key-file").arg(key_path); } - let mut process = cmd.stdout(Stdio::inherit()) + let mut process = cmd + .stdout(Stdio::inherit()) .stderr(Stdio::inherit()) .spawn() .expect("httpbin binary crashed"); diff --git a/rs/sns/test_utils/src/itest_helpers.rs b/rs/sns/test_utils/src/itest_helpers.rs index 8d483c9996a..f21aee316ac 100644 --- a/rs/sns/test_utils/src/itest_helpers.rs +++ b/rs/sns/test_utils/src/itest_helpers.rs @@ -1395,10 +1395,7 @@ pub async fn set_up_governance_canister( } /// Compiles the ledger canister, builds it's initial payload and installs it -pub async fn install_ledger_canister( - canister: &mut Canister<'_>, - args: LedgerArgument, -) { +pub async fn install_ledger_canister(canister: &mut Canister<'_>, args: LedgerArgument) { install_rust_canister_with_memory_allocation( canister, "ic-icrc1-ledger", @@ -1417,10 +1414,7 @@ pub async fn set_up_ledger_canister(runtime: &'_ Runtime, args: LedgerInitArgs) } /// Compiles the ledger index canister, builds it's initial payload and installs it -pub async fn install_index_ng_canister( - canister: &mut Canister<'_>, - args: Option, -) { +pub async fn install_index_ng_canister(canister: &mut Canister<'_>, args: Option) { install_rust_canister_with_memory_allocation( canister, "ic-icrc1-index-ng", diff --git a/rs/tests/ckbtc/src/utils.rs b/rs/tests/ckbtc/src/utils.rs index 4e7afd1323c..9d5c1ed9f69 100644 --- a/rs/tests/ckbtc/src/utils.rs +++ b/rs/tests/ckbtc/src/utils.rs @@ -422,10 +422,7 @@ pub fn get_btc_client(env: &TestEnv) -> Client { .unwrap() } -pub async fn get_bitcoin_balance( - canister: &UniversalCanister<'_>, - btc_address: &Address, -) -> u64 { +pub async fn get_bitcoin_balance(canister: &UniversalCanister<'_>, btc_address: &Address) -> u64 { canister .update(wasm().call(management::bitcoin_get_balance( btc_address.to_string(), From 1f9311fb9e1998ae1cd43eb26d1506fb1d9f294f Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 09:51:51 +0000 Subject: [PATCH 25/34] add jira tickets --- rs/memory_tracker/src/tests.rs | 3 +++ rs/nns/governance/src/governance.rs | 1 + .../test_canisters/governance_mem_test_canister.rs | 3 +-- rs/rust_canisters/pmap/canister/main.rs | 3 +-- rs/sns/cli/src/lib.rs | 3 +-- rs/sns/governance/canister/canister.rs | 3 +-- .../test_canisters/sns_governance_mem_test_canister.rs | 3 +-- rs/sns/swap/canister/canister.rs | 3 +-- 8 files changed, 10 insertions(+), 12 deletions(-) diff --git a/rs/memory_tracker/src/tests.rs b/rs/memory_tracker/src/tests.rs index b927c21cc36..25fb64fd9e3 100644 --- a/rs/memory_tracker/src/tests.rs +++ b/rs/memory_tracker/src/tests.rs @@ -798,6 +798,7 @@ mod random_ops { if libc::sigaction( libc::SIGSEGV, &handler, + // TODO: EXC-1841 #[allow(static_mut_refs)] PREV_SIGSEGV.as_mut_ptr(), ) != 0 @@ -817,6 +818,7 @@ mod random_ops { unsafe { if libc::sigaction( libc::SIGSEGV, + // TODO: EXC-1841 #[allow(static_mut_refs)] PREV_SIGSEGV.as_ptr(), std::ptr::null_mut(), @@ -856,6 +858,7 @@ mod random_ops { unsafe { if !handled { + // TODO: EXC-1841 #[allow(static_mut_refs)] let previous = *PREV_SIGSEGV.as_ptr(); if previous.sa_flags & libc::SA_SIGINFO != 0 { diff --git a/rs/nns/governance/src/governance.rs b/rs/nns/governance/src/governance.rs index 3919557f97d..52c74392d00 100644 --- a/rs/nns/governance/src/governance.rs +++ b/rs/nns/governance/src/governance.rs @@ -5308,6 +5308,7 @@ impl Governance { } fn validate_proposal(&self, proposal: &Proposal) -> Result { + // TODO: Jira ticket NNS1-3555 #[allow(non_local_definitions)] impl From for GovernanceError { fn from(message: String) -> Self { diff --git a/rs/nns/integration_tests/test_canisters/governance_mem_test_canister.rs b/rs/nns/integration_tests/test_canisters/governance_mem_test_canister.rs index e437a9a9d67..f2029ba9131 100644 --- a/rs/nns/integration_tests/test_canisters/governance_mem_test_canister.rs +++ b/rs/nns/integration_tests/test_canisters/governance_mem_test_canister.rs @@ -1,5 +1,4 @@ -// TODO: Static mutable refs will become a hard error in 2024 edition of rust. -// https://doc.rust-lang.org/nightly/edition-guide/rust-2024/static-mut-references.html#disallow-references-to-static-mut +// TODO: Jira ticket NNS1-3556 #![allow(static_mut_refs)] //! This is a special-purpose canister to create a large Governance proto and diff --git a/rs/rust_canisters/pmap/canister/main.rs b/rs/rust_canisters/pmap/canister/main.rs index 174e7ca7cf8..fbfbe9a8784 100644 --- a/rs/rust_canisters/pmap/canister/main.rs +++ b/rs/rust_canisters/pmap/canister/main.rs @@ -1,5 +1,4 @@ -// TODO: Static mutable refs will become a hard error in 2024 edition of rust. -// https://doc.rust-lang.org/nightly/edition-guide/rust-2024/static-mut-references.html#disallow-references-to-static-mut +// TODO: EXC-1841 #![allow(static_mut_refs)] use dfn_core::api::print; diff --git a/rs/sns/cli/src/lib.rs b/rs/sns/cli/src/lib.rs index 6138e98d5e9..76e6e001616 100644 --- a/rs/sns/cli/src/lib.rs +++ b/rs/sns/cli/src/lib.rs @@ -509,8 +509,7 @@ impl NnsGovernanceCanister { proposer: &NeuronIdOrSubaccount, proposal: &Proposal, ) -> Result { - // TODO: Local implementations can become hard error in 2024. - // See https://doc.rust-lang.org/nightly/nightly-rustc/rustc_lint/non_local_def/static.NON_LOCAL_DEFINITIONS.html + // TODO: Jira ticket NNS1-3555 #[allow(non_local_definitions)] impl Request for ManageNeuron { type Response = ManageNeuronResponse; diff --git a/rs/sns/governance/canister/canister.rs b/rs/sns/governance/canister/canister.rs index 083d2e92b53..6c883c86b6e 100644 --- a/rs/sns/governance/canister/canister.rs +++ b/rs/sns/governance/canister/canister.rs @@ -1,5 +1,4 @@ -// TODO: Static mutable refs will become a hard error in 2024 edition of rust. -// https://doc.rust-lang.org/nightly/edition-guide/rust-2024/static-mut-references.html#disallow-references-to-static-mut +// TODO: Jira ticket NNS1-3556 #![allow(static_mut_refs)] use async_trait::async_trait; diff --git a/rs/sns/integration_tests/test_canisters/sns_governance_mem_test_canister.rs b/rs/sns/integration_tests/test_canisters/sns_governance_mem_test_canister.rs index 236b1ecb9a1..26f7306e4a9 100644 --- a/rs/sns/integration_tests/test_canisters/sns_governance_mem_test_canister.rs +++ b/rs/sns/integration_tests/test_canisters/sns_governance_mem_test_canister.rs @@ -1,5 +1,4 @@ -// TODO: Static mutable refs will become a hard error in 2024 edition of rust. -// https://doc.rust-lang.org/nightly/edition-guide/rust-2024/static-mut-references.html#disallow-references-to-static-mut +// TODO: Jira ticket NNS1-3556 #![allow(static_mut_refs)] //! This is a special-purpose canister to create a large Governance proto and diff --git a/rs/sns/swap/canister/canister.rs b/rs/sns/swap/canister/canister.rs index 87c02c822a4..4c047678fc6 100644 --- a/rs/sns/swap/canister/canister.rs +++ b/rs/sns/swap/canister/canister.rs @@ -1,5 +1,4 @@ -// TODO: Static mutable refs will become a hard error in 2024 edition of rust. -// https://doc.rust-lang.org/nightly/edition-guide/rust-2024/static-mut-references.html#disallow-references-to-static-mut +// TODO: Jira ticket NNS1-3556 #![allow(static_mut_refs)] use ic_base_types::{CanisterId, PrincipalId}; From 770ecdda21b958a12e10a0db87b4952ede933c56 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 09:52:17 +0000 Subject: [PATCH 26/34] buildifier --- rs/backup/BUILD.bazel | 2 +- rs/bitcoin/adapter/BUILD.bazel | 2 +- rs/recovery/BUILD.bazel | 4 ++-- rs/recovery/subnet_splitting/BUILD.bazel | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/rs/backup/BUILD.bazel b/rs/backup/BUILD.bazel index a3fa70bc6a1..32709db022a 100644 --- a/rs/backup/BUILD.bazel +++ b/rs/backup/BUILD.bazel @@ -61,7 +61,7 @@ rust_binary( rust_test( name = "backup_test", - crate = ":backup", compile_data = ["test_data/fake_input_config.json.template"], + crate = ":backup", deps = DEPENDENCIES + DEV_DEPENDENCIES, ) diff --git a/rs/bitcoin/adapter/BUILD.bazel b/rs/bitcoin/adapter/BUILD.bazel index 711bc489f77..bf093511e2d 100644 --- a/rs/bitcoin/adapter/BUILD.bazel +++ b/rs/bitcoin/adapter/BUILD.bazel @@ -89,11 +89,11 @@ rust_binary( rust_test( name = "adapter_test", - crate = ":adapter", compile_data = [ "test_data/first_2500_mainnet_headers.json", "test_data/first_2500_testnet_headers.json", ], + crate = ":adapter", tags = ["requires-network"], deps = DEV_DEPENDENCIES, ) diff --git a/rs/recovery/BUILD.bazel b/rs/recovery/BUILD.bazel index a2392d65836..e135f4024a3 100644 --- a/rs/recovery/BUILD.bazel +++ b/rs/recovery/BUILD.bazel @@ -60,8 +60,8 @@ rust_library( name = "recovery", srcs = glob(["src/**/*.rs"]), aliases = ALIASES, - crate_name = "ic_recovery", compile_data = ["ic_public_key.pem"], + crate_name = "ic_recovery", proc_macro_deps = MACRO_DEPENDENCIES, version = "0.1.0", visibility = [ @@ -88,7 +88,7 @@ rust_binary( rust_test( name = "recovery_test", - crate = ":recovery", compile_data = ["ic_public_key.pem"], + crate = ":recovery", deps = DEPENDENCIES + DEV_DEPENDENCIES, ) diff --git a/rs/recovery/subnet_splitting/BUILD.bazel b/rs/recovery/subnet_splitting/BUILD.bazel index 2c71f71d9c6..60a21945820 100644 --- a/rs/recovery/subnet_splitting/BUILD.bazel +++ b/rs/recovery/subnet_splitting/BUILD.bazel @@ -64,7 +64,7 @@ rust_binary( rust_test( name = "subnet_splitting_tool_test", - crate = "subnet_splitting", compile_data = ["test_data/fake_expected_manifests.data"], + crate = "subnet_splitting", deps = DEPENDENCIES + DEV_DEPENDENCIES, ) From af0799e4879dce25c5a4539cc58b6235a172524f Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 10:10:25 +0000 Subject: [PATCH 27/34] . --- rs/artifact_pool/src/rocksdb_iterator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rs/artifact_pool/src/rocksdb_iterator.rs b/rs/artifact_pool/src/rocksdb_iterator.rs index b61483cb1d0..55936a2e0ec 100644 --- a/rs/artifact_pool/src/rocksdb_iterator.rs +++ b/rs/artifact_pool/src/rocksdb_iterator.rs @@ -68,7 +68,7 @@ enum Status { Stopped, } -impl<'a, F> StandaloneIterator<'a, F> { +impl StandaloneIterator<'_, F> { /// Create an iterator for the given column family 'name' of the given 'db' /// starting from 'start_key' pub fn new( From 62bef59543050f25f33337511d77e011aea7838f Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 10:29:30 +0000 Subject: [PATCH 28/34] add sdk ticket for zombie process --- packages/pocket-ic/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/pocket-ic/src/lib.rs b/packages/pocket-ic/src/lib.rs index 3be4bae3695..947e057e3aa 100644 --- a/packages/pocket-ic/src/lib.rs +++ b/packages/pocket-ic/src/lib.rs @@ -1686,8 +1686,7 @@ To download the binary, please visit https://github.com/dfinity/pocketic." } } - // TODO: This spawned process must be killed at some point - // to avoid it becoming a zombie. + // TODO: SDK-1936 #[allow(clippy::zombie_processes)] cmd.spawn() .unwrap_or_else(|_| panic!("Failed to start PocketIC binary ({:?})", bin_path)); From 2a09ed940e567efd1e890f27cd400d47f6adcf17 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 10:44:00 +0000 Subject: [PATCH 29/34] update error message for cycles --- rs/execution_environment/tests/storage_reservation.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rs/execution_environment/tests/storage_reservation.rs b/rs/execution_environment/tests/storage_reservation.rs index d60bbc77211..6a4e5e451b4 100644 --- a/rs/execution_environment/tests/storage_reservation.rs +++ b/rs/execution_environment/tests/storage_reservation.rs @@ -205,7 +205,9 @@ fn test_storage_reservation_triggered_in_canister_snapshot_without_enough_cycles // a non-zero amount. assert!(err .description() - .contains("due to insufficient cycles. At least 339_603_")); + .contains("due to insufficient cycles. At least 339_559_"), + "Error message: {}", + err.description()); } } } From 20a77f62afb18143ae9ba57dde6814f3f237a44b Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 10:44:29 +0000 Subject: [PATCH 30/34] update results file for canbench --- .../governance/canbench/canbench_results.yml | 52 +++++++++---------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/rs/nns/governance/canbench/canbench_results.yml b/rs/nns/governance/canbench/canbench_results.yml index 98282e4d781..34b92de91ce 100644 --- a/rs/nns/governance/canbench/canbench_results.yml +++ b/rs/nns/governance/canbench/canbench_results.yml @@ -1,109 +1,109 @@ benches: add_neuron_active_maximum: total: - instructions: 42559874 + instructions: 42470580 heap_increase: 1 stable_memory_increase: 0 scopes: {} add_neuron_active_typical: total: - instructions: 2160611 + instructions: 2156095 heap_increase: 0 stable_memory_increase: 0 scopes: {} add_neuron_inactive_maximum: total: - instructions: 112126649 + instructions: 111969854 heap_increase: 1 stable_memory_increase: 0 scopes: {} add_neuron_inactive_typical: total: - instructions: 8465215 + instructions: 8450397 heap_increase: 0 stable_memory_increase: 0 scopes: {} cascading_vote_all_heap: total: - instructions: 35565672 + instructions: 34764213 heap_increase: 0 stable_memory_increase: 128 scopes: {} cascading_vote_heap_neurons_stable_index: total: - instructions: 61721390 + instructions: 60897882 heap_increase: 0 stable_memory_increase: 128 scopes: {} cascading_vote_stable_everything: total: - instructions: 188861073 + instructions: 188426120 heap_increase: 0 stable_memory_increase: 128 scopes: {} cascading_vote_stable_neurons_with_heap_index: total: - instructions: 162571959 + instructions: 162159055 heap_increase: 0 stable_memory_increase: 128 scopes: {} centralized_following_all_stable: total: - instructions: 78285442 + instructions: 78085489 heap_increase: 0 stable_memory_increase: 128 scopes: {} compute_ballots_for_new_proposal_with_stable_neurons: total: - instructions: 2197226 + instructions: 2152483 heap_increase: 0 stable_memory_increase: 0 scopes: {} draw_maturity_from_neurons_fund_heap: total: - instructions: 7549569 + instructions: 7455504 heap_increase: 0 stable_memory_increase: 0 scopes: {} draw_maturity_from_neurons_fund_stable: total: - instructions: 12303773 + instructions: 12275909 heap_increase: 0 stable_memory_increase: 0 scopes: {} list_active_neurons_fund_neurons_heap: total: - instructions: 436248 + instructions: 424238 heap_increase: 0 stable_memory_increase: 0 scopes: {} list_active_neurons_fund_neurons_stable: total: - instructions: 2755320 + instructions: 2742494 heap_increase: 0 stable_memory_increase: 0 scopes: {} list_neurons_heap: total: - instructions: 4700995 + instructions: 4717287 heap_increase: 9 stable_memory_increase: 0 scopes: {} list_neurons_ready_to_unstake_maturity_heap: total: - instructions: 158257 + instructions: 158253 heap_increase: 0 stable_memory_increase: 0 scopes: {} list_neurons_ready_to_unstake_maturity_stable: total: - instructions: 41326673 + instructions: 41328019 heap_increase: 0 stable_memory_increase: 0 scopes: {} list_neurons_stable: total: - instructions: 113166221 + instructions: 113419930 heap_increase: 5 stable_memory_increase: 0 scopes: {} @@ -115,49 +115,49 @@ benches: scopes: {} list_ready_to_spawn_neuron_ids_stable: total: - instructions: 41298569 + instructions: 41299922 heap_increase: 0 stable_memory_increase: 0 scopes: {} neuron_data_validation_heap: total: - instructions: 407871691 + instructions: 406681837 heap_increase: 0 stable_memory_increase: 0 scopes: {} neuron_data_validation_stable: total: - instructions: 363603468 + instructions: 362505461 heap_increase: 0 stable_memory_increase: 0 scopes: {} neuron_metrics_calculation_heap: total: - instructions: 1457674 + instructions: 1471252 heap_increase: 0 stable_memory_increase: 0 scopes: {} neuron_metrics_calculation_stable: total: - instructions: 2982336 + instructions: 2994858 heap_increase: 0 stable_memory_increase: 0 scopes: {} range_neurons_performance: total: - instructions: 56494134 + instructions: 56426715 heap_increase: 0 stable_memory_increase: 0 scopes: {} single_vote_all_stable: total: - instructions: 2802680 + instructions: 2801395 heap_increase: 0 stable_memory_increase: 128 scopes: {} update_recent_ballots_stable_memory: total: - instructions: 273777 + instructions: 273152 heap_increase: 0 stable_memory_increase: 0 scopes: {} From 677ea9aa78f9ce5e01fbffe0a0bf96a35c3870e5 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 10:47:54 +0000 Subject: [PATCH 31/34] . --- packages/ic-sha3/BUILD.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ic-sha3/BUILD.bazel b/packages/ic-sha3/BUILD.bazel index 65f411d555a..641d0acc48d 100644 --- a/packages/ic-sha3/BUILD.bazel +++ b/packages/ic-sha3/BUILD.bazel @@ -28,7 +28,7 @@ rust_test_suite( srcs = glob( ["tests/*.rs"], ), - data = [ + compile_data = [ "test_resources/SHAKE256ShortMsg_subset.rsp", "test_resources/SHAKE256VariableOut_subset.rsp", ], From ae074046ea7149e2a125b84238c1f75607f77f18 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 11:58:35 +0000 Subject: [PATCH 32/34] . --- publish/canisters/BUILD.bazel | 2 +- rs/execution_environment/tests/storage_reservation.rs | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/publish/canisters/BUILD.bazel b/publish/canisters/BUILD.bazel index 1955eff350f..2a60c2b8033 100644 --- a/publish/canisters/BUILD.bazel +++ b/publish/canisters/BUILD.bazel @@ -79,7 +79,7 @@ CANISTERS_MAX_SIZE_COMPRESSED_E5_BYTES = { # (ICRC1 index, ICRC1 ledger, and ICRC1 archive) and size is # therefore strictly controlled. # Size when constraint addded: 1_655_752 bytes - "ic-ledger-suite-orchestrator-canister.wasm.gz": "17", + "ic-ledger-suite-orchestrator-canister.wasm.gz": "18", # -- BN team -- # Size when constraint addded: 540_349 bytes diff --git a/rs/execution_environment/tests/storage_reservation.rs b/rs/execution_environment/tests/storage_reservation.rs index 6a4e5e451b4..083d3662360 100644 --- a/rs/execution_environment/tests/storage_reservation.rs +++ b/rs/execution_environment/tests/storage_reservation.rs @@ -203,11 +203,12 @@ fn test_storage_reservation_triggered_in_canister_snapshot_without_enough_cycles // Match on a substring of the error message. Due to a difference in instructions consumed on // Mac vs Linux, we cannot match on the exact number of cycles but we only need to verify it's // a non-zero amount. - assert!(err - .description() - .contains("due to insufficient cycles. At least 339_559_"), + assert!( + err.description() + .contains("due to insufficient cycles. At least 339_559_"), "Error message: {}", - err.description()); + err.description() + ); } } } From 58d69721bef4146adec914197fb0f8dbded63be2 Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 12:18:08 +0000 Subject: [PATCH 33/34] add size constraint --- publish/canisters/BUILD.bazel | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/publish/canisters/BUILD.bazel b/publish/canisters/BUILD.bazel index 2a60c2b8033..0612cb26372 100644 --- a/publish/canisters/BUILD.bazel +++ b/publish/canisters/BUILD.bazel @@ -78,8 +78,8 @@ CANISTERS_MAX_SIZE_COMPRESSED_E5_BYTES = { # The orchestrator needs to embed 3 wasms at compile time # (ICRC1 index, ICRC1 ledger, and ICRC1 archive) and size is # therefore strictly controlled. - # Size when constraint addded: 1_655_752 bytes - "ic-ledger-suite-orchestrator-canister.wasm.gz": "18", + # Size when constraint addded: 1_704_979 bytes + "ic-ledger-suite-orchestrator-canister.wasm.gz": "17", # -- BN team -- # Size when constraint addded: 540_349 bytes From 6c51bad6178869043f5c37937ceff61bb4550e6f Mon Sep 17 00:00:00 2001 From: Daniel Sharifi Date: Mon, 20 Jan 2025 12:18:24 +0000 Subject: [PATCH 34/34] add size constraint --- publish/canisters/BUILD.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/publish/canisters/BUILD.bazel b/publish/canisters/BUILD.bazel index 0612cb26372..d2c64d9e258 100644 --- a/publish/canisters/BUILD.bazel +++ b/publish/canisters/BUILD.bazel @@ -79,7 +79,7 @@ CANISTERS_MAX_SIZE_COMPRESSED_E5_BYTES = { # (ICRC1 index, ICRC1 ledger, and ICRC1 archive) and size is # therefore strictly controlled. # Size when constraint addded: 1_704_979 bytes - "ic-ledger-suite-orchestrator-canister.wasm.gz": "17", + "ic-ledger-suite-orchestrator-canister.wasm.gz": "18", # -- BN team -- # Size when constraint addded: 540_349 bytes