Bug 1869358 - reference rusqlite via a workspace dependency. r=glandium

Differential Revision: https://phabricator.services.mozilla.com/D196071
This commit is contained in:
Mark Hammond 2023-12-13 14:28:12 +00:00
Родитель 03a6769c9c
Коммит 73cdd3b7d9
2 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -52,6 +52,8 @@ resolver = "2"
[workspace.dependencies]
# Shared across multiple UniFFI consumers.
uniffi = "0.25.3"
# Shared across multiple application-services consumers.
rusqlite = "0.29.0"
# Explicitly specify what our profiles use. The opt-level setting here is
# a total fiction; see the setup of MOZ_RUST_DEFAULT_FLAGS for what the

Просмотреть файл

@ -87,7 +87,7 @@ uniffi_core = { version = "0.25.2", features = ["extern-rustbuffer"] }
# version less than or equal to what we link to. This isn't a problem because we
# tend to keep this up to date, but it needs to be taken into consideration when
# changing this version.
rusqlite = { version = "0.29.0", features = ["modern_sqlite", "in_gecko"] }
rusqlite = { workspace = true, features = ["modern_sqlite", "in_gecko"] }
fluent = { version = "0.16.0", features = ["fluent-pseudo"] }
fluent-ffi = { path = "../../../../intl/l10n/rust/fluent-ffi" }