Package: rust-guid-create / 0.5.0-1

Metadata

Package Version Patches format
rust-guid-create 0.5.0-1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
relax deps.patch | (download)

Cargo.toml | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 relax dependency versions
disable benches.patch | (download)

Cargo.toml | 6 3 + 3 - 0 !
1 file changed, 3 insertions(+), 3 deletions(-)

 drop benches
fix no default features tests.patch | (download)

src/lib.rs | 10 8 + 2 - 0 !
1 file changed, 8 insertions(+), 2 deletions(-)

 add feature gates to tests for no-default-features compatibility
 The crate fails to build when tested with --no-default-features despite
 advertising no_std support. This patch adds conditional compilation to
 tests that require std and rand features, allowing minimal feature builds
 to succeed by skipping incompatible tests rather than failing compilation
fix bytemuck derive feature.patch | (download)

Cargo.toml | 1 1 + 0 - 0 !
1 file changed, 1 insertion(+)

 enable bytemuck derive feature
 The bytemuck feature fails to compile because it uses derive(bytemuck::Pod,
 bytemuck::Zeroable) without enabling the required "derive" feature in the
 bytemuck dependency. This updates the dependency to include the derive
 feature when bytemuck is enabled, fixing compilation with --features bytemuck