Generate and parse UUIDs.
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-04-17 10:39:14 +02:00
.cargo update rust toolchain before building 2025-01-10 11:52:37 +10:00
benches Fix most clippy warnings 2025-11-27 18:13:11 +01:00
examples chore: sync dependencies (monorepo) 2026-04-01 19:28:44 +02:00
fuzz chore: sync dependencies (monorepo) 2026-04-17 10:39:14 +02:00
rng chore: sync dependencies (monorepo) 2026-04-01 19:28:44 +02:00
src prepare for 1.23.0 release 2026-03-27 08:06:41 +10:00
tests chore: sync dependencies (monorepo) 2026-04-01 19:28:44 +02:00
.gitignore ignore vim files 2019-03-01 01:14:27 -08:00
Cargo.toml chore: sync dependencies (monorepo) 2026-04-06 15:20:12 +02:00
COPYRIGHT Add COPYRIGHT file and add license headers to all rs files 2018-05-11 16:51:06 -07:00
LICENSE-APACHE Organise code and add Travis CI config 2014-07-30 23:14:56 +01:00
LICENSE-MIT copyright added to licence 2018-02-16 17:06:17 +05:30
README.md prepare for 1.23.0 release 2026-03-27 08:06:41 +10:00

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.23.0"
# Lets you generate random UUIDs
features = [
    "v4",
]

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.

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.