From 581afbbbbab038b4df29b82eaa5d4387e6496b4a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Aug 2022 01:13:32 +0200 Subject: [PATCH] Bump ulid from 0.6.0 to 1.0.0 in /backend (#366) Bumps [ulid](https://github.com/dylanhart/ulid-rs) from 0.6.0 to 1.0.0. - [Release notes](https://github.com/dylanhart/ulid-rs/releases) - [Commits](https://github.com/dylanhart/ulid-rs/compare/v0.6.0...v1.0.0) --- updated-dependencies: - dependency-name: ulid dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- backend/Cargo.lock | 5 ++--- backend/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 9902894959..6b774eef15 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -3996,12 +3996,11 @@ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" [[package]] name = "ulid" -version = "0.6.0" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3be932d774bfad49722da2c4915ac7cc77b77dd223890739a0240de2b2a15957" +checksum = "13a3aaa69b04e5b66cc27309710a569ea23593612387d67daaf102e73aa974fd" dependencies = [ "rand 0.8.5", - "time 0.3.12", "uuid", ] diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 14617aa2a6..642b416226 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -61,5 +61,5 @@ swc_ecma_ast = "^0" sqlx = { version = "^0", features = ["macros", "offline", "migrate", "uuid", "json", "chrono", "postgres", "runtime-tokio-rustls"]} dotenv = "^0" -ulid = { version = "^0", features = ["uuid"] } +ulid = { version = "^1", features = ["uuid"] } futures = "^0"