From ac3d1f2c927121c008d130095ff8b1bcc1b89dc4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 06:07:08 +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 4f31bf5..061dec2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -86,7 +86,7 @@ dependencies = [ "sqlx", "thiserror", "tokio", - "ulid", + "ulid 2.0.1", ] [[package]] @@ -116,7 +116,7 @@ dependencies = [ "thiserror", "tower", "tracing", - "ulid", + "ulid 1.2.1", ] [[package]] @@ -2198,6 +2198,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 9d9a668..1f1f3a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ tokio = { version = "1", features = [ "net", ], optional = true, default-features = false } async-std = { version = "1.13.0", optional = true, default-features = false } -ulid = { version = "1", features = ["serde"] } +ulid = { version = "2", features = ["serde"] } [dependencies.sqlx]