uuid icon indicating copy to clipboard operation
uuid copied to clipboard

Generate and parse UUIDs.

Results 39 uuid issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi @KodrAus Although fault tolerance requires that each microservice writes to its own database tables, in practice this requirement is often violated. The implementation of UUIDv7 for PostgreSQL had to...

Is there a `NonZeroUuid` type, or has one been considered, similar to the other [`NonZero`](https://doc.rust-lang.org/std/num/struct.NonZero.html) types, such that the following is true? ```rust assert_eq!(std::mem::size_of::(), std::mem::size_of::()); ```

@KodrAus The authors of [RFC 9562](https://datatracker.ietf.org/doc/html/rfc9562) [have resumed discussion](https://github.com/uuid6/new-uuid-encoding-techniques-ietf-draft) about a better UUID binary-to-text encoding

I opened a discussion on the `serde_with` repo to ask, if this feature could be implemented directly with `serde_with`: [Discussion](https://github.com/jonasbb/serde_with/discussions/856). But since my original issue is with using Uuid, I...

Hi, When i am trying to build my project containing the following uuid dependency : `uuid = {version = "1.16.0", features = ["v4", "js"]}` The .wat file contains these imports...

When I try to build with a target of `wasm32-unknown-unknown`, I get compile errors from the `getrandom` dependency. This occurs because `getrandom` needs the `wasm_js` feature enabled to work on...

It looks like `getrandom`'s `0.3.x` release treats wasm targets a bit differently than `0.2.x`. In `uuid`, we just require a `js` feature to support RNG in `wasm32-unknown-unknown` via `getrandom`, which...

Following the latest major release of Bincode, the crate now relies on its own traits (Encode/Decode) it switched away from serde's De/Serialize. This PR is to add a feature flag...

See: https://github.com/uuid-rs/uuid/pull/809#issuecomment-2704835750 In PostgreSQL, UUID V7 generation uses the `rand_a` field for an extra 12 bits of sub-millisecond timestamp precision. Some platforms don't generate timestamps with enough precision to fill...