mirror of
https://github.com/mozilla-services/syncstorage-rs.git
synced 2026-04-03 12:42:28 +02:00
Some checks failed
Glean probe-scraper / glean-probe-scraper (push) Has been cancelled
- 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
29 lines
883 B
TOML
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" }
|