Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/vegify-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ serde = { version = "1.0", features = ["derive"] }
# Pinned to match the desktop's ttipc/specta so the `Type` impls are the SAME trait the
# `#[procedures]` macro consumes (a version skew would make them distinct traits and fail to compile).
specta = { version = "=2.0.0-rc.25", features = ["derive"] }
ulid = "1"
ulid = "2"

[lints]
workspace = true
2 changes: 1 addition & 1 deletion crates/vegify-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use ulid::Ulid;
/// A fresh client-side ULID (text id). Minted on insert when no id is supplied; a supplied id is
/// honored, so offline creates and sync re-applies stay authoritative.
pub fn new_id() -> String {
Ulid::new().to_string()
Ulid::gen().to_string()
}

/// The crate error. `Db` = a SQLite/data failure (incl. the owner-guard messages); `Auth` is
Expand Down
Loading