From 3348259720d6907bd639163e9e0fe3fcf3a9bcb4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 06:07:19 +0000 Subject: [PATCH] deps(deps): bump ulid from 1.2.1 to 2.0.1 Bumps [ulid](https://github.com/dylanhart/ulid-rs) from 1.2.1 to 2.0.1. - [Commits](https://github.com/dylanhart/ulid-rs/compare/v1.2.1...v2.0.1) --- updated-dependencies: - dependency-name: ulid dependency-version: 2.0.1 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..88b73ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -102,7 +102,7 @@ dependencies = [ "sqlx", "thiserror", "tokio", - "ulid", + "ulid 2.0.1", ] [[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 = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39493d572b98fe1d142e132e7a726c50c68121bce84429216a5ec20e1ad7fec5" +dependencies = [ + "rand 0.10.1", "serde", "web-time", ] diff --git a/Cargo.toml b/Cargo.toml index 6da01a0..c9c1be5 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 = "2", features = ["serde"] } [dev-dependencies] tokio = { version = "1", features = ["macros", "rt-multi-thread"] }