Philip Jenvey 5c022c04df
Some checks failed
Glean probe-scraper / glean-probe-scraper (push) Has been cancelled
feat: switch to TIMESTAMPTZ (#1932)
- make SyncTimestamp::from_datetime generic over timezones
- compare expiry to CURRENT_TIMESTAMP now that they're TIMESTAMPTZ
- fix get_collection_timestamps not ignoring tombstones
- fix the gcs upload breaking due to failing tests

Closes STOR-420
2025-12-16 13:50:21 -08:00

29 lines
883 B
TOML

[package]
name = "syncstorage-postgres"
version.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
[dependencies]
async-trait.workspace = true
backtrace.workspace = true
base64.workspace = true
chrono.workspace = true
deadpool.workspace = true
diesel = { workspace = true, features = ["chrono", "postgres", "uuid"] }
diesel-async = { workspace = true, features = ["postgres"] }
diesel_migrations.workspace = true
futures.workspace = true
http.workspace = true
slog-scope.workspace = true
thiserror.workspace = true
uuid.workspace = true
url = "2.1"
syncserver-common = { path = "../syncserver-common" }
syncserver-db-common = { path = "../syncserver-db-common" }
syncstorage-db-common = { path = "../syncstorage-db-common", features = ["postgres"] }
syncstorage-settings = { path = "../syncstorage-settings" }