You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

yoke

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yoke - cargo Package Compare versions

Comparing version
0.7.0
to
0.7.1
+1
-1
.cargo_vcs_info.json
{
"git": {
"sha1": "196823aa3a859324cca61b61e7aafa4c98988f1a"
"sha1": "cd80fbfd24ecc6e499fb5fc6bb8fcce6b14416f4"
},
"path_in_vcs": "utils/yoke"
}

@@ -13,5 +13,5 @@ # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO

[package]
edition = "2018"
edition = "2021"
name = "yoke"
version = "0.7.0"
version = "0.7.1"
authors = ["Manish Goregaokar <manishsmail@gmail.com>"]

@@ -27,2 +27,3 @@ include = [

description = "Abstraction allowing borrowed data to be carried along with the backing data it borrows from"
readme = "README.md"
keywords = [

@@ -43,3 +44,2 @@ "zerocopy",

repository = "https://github.com/unicode-org/icu4x"
resolver = "2"

@@ -46,0 +46,0 @@ [package.metadata.workspaces]

@@ -49,3 +49,3 @@ // This file is part of ICU4X. For terms of use, please see the file

/// ```
#[derive(Clone, PartialEq, Eq)]
#[derive(Clone, PartialEq, Eq, Debug)]
#[allow(clippy::exhaustive_enums)] // stable

@@ -52,0 +52,0 @@ pub enum EitherCart<C0, C1> {

@@ -38,3 +38,3 @@ // This file is part of ICU4X. For terms of use, please see the file

clippy::exhaustive_enums,
// TODO(#2266): enable missing_debug_implementations,
missing_debug_implementations,
)

@@ -41,0 +41,0 @@ )]

@@ -288,3 +288,3 @@ // This file is part of ICU4X. For terms of use, please see the file

#[repr(transparent)]
#[derive(Clone, PartialEq, Eq)]
#[derive(Clone, PartialEq, Eq, Debug)]
#[allow(clippy::exhaustive_structs)] // newtype

@@ -291,0 +291,0 @@ pub struct YokeTraitHack<T>(pub T);

@@ -77,2 +77,3 @@ // This file is part of ICU4X. For terms of use, please see the file

/// ```
#[derive(Debug)]
pub struct Yoke<Y: for<'a> Yokeable<'a>, C> {

@@ -1313,4 +1314,3 @@ // must be the first field for drop order

/// println!("post-drop: {reference}");
///
/// ```
const _: () = ();

Sorry, the diff of this file is not supported yet