65 releases (18 stable)

new 1.8.0 Mar 19, 2024
1.6.1 Nov 20, 2023
1.4.1 Jul 17, 2023
1.3.0 Feb 1, 2023
0.1.0 Nov 27, 2014

#3 in Parser implementations

Download history 1445188/week @ 2023-11-27 1492225/week @ 2023-12-04 1451894/week @ 2023-12-11 1298106/week @ 2023-12-18 686011/week @ 2023-12-25 1184181/week @ 2024-01-01 1502822/week @ 2024-01-08 1557855/week @ 2024-01-15 1653990/week @ 2024-01-22 1713486/week @ 2024-01-29 1681493/week @ 2024-02-05 1683209/week @ 2024-02-12 1711432/week @ 2024-02-19 1872417/week @ 2024-02-26 1847715/week @ 2024-03-04 710170/week @ 2024-03-11

6,230,526 downloads per month
Used in 11,866 crates (4,028 directly)

Apache-2.0 OR MIT

225KB
4K SLoC

uuid

Latest Version Continuous integration

Here's an example of a UUID:

67e55044-10b1-426f-9247-bb680e5fe0c8

A UUID is a unique 128-bit value, stored as 16 octets, and regularly formatted as a hex string in five groups. UUIDs are used to assign unique identifiers to entities without requiring a central allocating authority.

They are particularly useful in distributed systems, though can be used in disparate areas, such as databases and network protocols. Typically a UUID is displayed in a readable string form as a sequence of hexadecimal digits, separated into groups by hyphens.

The uniqueness property is not strictly guaranteed, however for all practical purposes, it can be assumed that an unintentional collision would be extremely unlikely.

Getting started

Add the following to your Cargo.toml:

[dependencies.uuid]
version = "1.8.0"
features = [
    "v4",                # Lets you generate random UUIDs
    "fast-rng",          # Use a faster (but still sufficiently random) RNG
    "macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]

When you want a UUID, you can generate one:

use uuid::Uuid;

let id = Uuid::new_v4();

If you have a UUID value, you can use its string literal form inline:

use uuid::{uuid, Uuid};

const ID: Uuid = uuid!("67e55044-10b1-426f-9247-bb680e5fe0c8");

You can also parse UUIDs without needing any crate features:

use uuid::{Uuid, Version};

let my_uuid = Uuid::parse_str("67e55044-10b1-426f-9247-bb680e5fe0c8")?;

assert_eq!(Some(Version::Random), my_uuid.get_version());

If you'd like to parse UUIDs really fast, check out the uuid-simd library.

For more details on using uuid, see the library documentation.

References


License

Licensed under either of

at your option.

FOSSA Status

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0–1.1MB
~20K SLoC