Use workspace dependencies instead of paths

This commit is contained in:
Jazz Turner-Baggs 2026-03-24 15:25:38 -07:00
parent 547458ab0a
commit aaefa3ad4e
No known key found for this signature in database
2 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@ members = [
[workspace.dependencies] [workspace.dependencies]
blake2 = "0.10" blake2 = "0.10"
libchat = { path = "core/conversations" }
storage = { path = "core/storage" } storage = { path = "core/storage" }
# Panicking across FFI boundaries is UB; abort is the correct strategy for a # Panicking across FFI boundaries is UB; abort is the correct strategy for a

View File

@ -7,4 +7,4 @@ edition = "2024"
crate-type = ["rlib"] crate-type = ["rlib"]
[dependencies] [dependencies]
libchat = { path = "../../core/conversations" } libchat = { workspace = true }