From c63a69616143bc8018b0bb1ad36f507c5fb94122 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 06:07:45 +0000 Subject: [PATCH] deps(deps): bump ulid from 1.2.1 to 3.0.0 Bumps [ulid](https://github.com/dylanhart/ulid-rs) from 1.2.1 to 3.0.0. - [Commits](https://github.com/dylanhart/ulid-rs/compare/v1.2.1...v3.0.0) --- updated-dependencies: - dependency-name: ulid dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 ++++++++++++-- Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4146f52..fd87041 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -102,7 +102,7 @@ dependencies = [ "sqlx", "thiserror", "tokio", - "ulid", + "ulid 3.0.0", ] [[package]] @@ -118,7 +118,7 @@ dependencies = [ "thiserror", "tower", "tracing", - "ulid", + "ulid 1.2.1", ] [[package]] @@ -2169,6 +2169,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "470dbf6591da1b39d43c14523b2b469c86879a53e8b758c8e090a470fe7b1fbe" dependencies = [ "rand 0.9.4", + "web-time", +] + +[[package]] +name = "ulid" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "947dde63b6d514cc5e044edad4e0ca7261afd1099d16c83d942cb2b2f348689c" +dependencies = [ + "rand 0.10.1", "serde", "web-time", ] diff --git a/Cargo.toml b/Cargo.toml index 6da01a0..c42754c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ tokio = { version = "1", features = ["rt", "net"], optional = true } async-std = { version = "1.13.0", optional = true } thiserror = "2.0.0" pin-project = "1.1.10" -ulid = { version = "1", features = ["serde"] } +ulid = { version = "3", features = ["serde"] } [dev-dependencies] tokio = { version = "1", features = ["macros", "rt-multi-thread"] }