mirror of
https://github.com/mozilla-services/syncstorage-rs.git
synced 2026-04-01 19:51:42 +02:00
Some checks failed
Checks / python-checks (push) Has been cancelled
Checks / rust-checks (push) Has been cancelled
Glean probe-scraper / glean-probe-scraper (push) Has been cancelled
Build, Tag and Push Container Images to GAR Repository / build-and-push-syncstorage-rs (push) Has been cancelled
Build, Tag and Push Container Images to GAR Repository / build-and-push-syncserver-postgres (push) Has been cancelled
Build, Tag and Push Container Images to GAR Repository / build-and-push-syncserver-postgres-enterprise-gar (push) Has been cancelled
Build, Tag and Push Container Images to GAR Repository / build-and-push-syncstorage-rs-spanner-python-utils (push) Has been cancelled
Build, Tag and Push Container Images to GAR Repository / build-and-push-syncserver-postgres-python-utils (push) Has been cancelled
Build, Tag and Push Container Images to GAR Repository / build-and-push-syncserver-postgres-python-utils-enterprise-gar (push) Has been cancelled
Build, Tag and Push Container Images to GAR Repository / build-and-push-syncserver-mysql (push) Has been cancelled
MySQL Build and Test / build-and-test-mysql (push) Has been cancelled
MySQL Build and Test / build-mysql-image (push) Has been cancelled
MySQL Build and Test / mysql-e2e-tests (push) Has been cancelled
Postgres Build and Test / build-and-test-postgres (push) Has been cancelled
Postgres Build and Test / build-postgres-image (push) Has been cancelled
Postgres Build and Test / postgres-e2e-tests (push) Has been cancelled
Publish Sync docs to pages / build-mdbook (push) Has been cancelled
Publish Sync docs to pages / build-openapi (push) Has been cancelled
Publish Sync docs to pages / combine-and-prepare (push) Has been cancelled
Publish Sync docs to pages / deploy (push) Has been cancelled
Spanner Build, Test, and Push / build-and-test-spanner (push) Has been cancelled
Spanner Build, Test, and Push / build-spanner-image (push) Has been cancelled
Spanner Build, Test, and Push / spanner-e2e-tests (push) Has been cancelled
feat: normalize use of `chrono` for time and datetime operations
36 lines
1.1 KiB
TOML
36 lines
1.1 KiB
TOML
[package]
|
|
name = "syncstorage-spanner"
|
|
version.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
actix-web.workspace = true
|
|
async-trait.workspace = true
|
|
backtrace.workspace = true
|
|
chrono.workspace = true
|
|
deadpool.workspace = true
|
|
futures.workspace = true
|
|
http.workspace = true
|
|
slog-scope.workspace = true
|
|
thiserror.workspace = true
|
|
uuid.workspace = true
|
|
|
|
google-cloud-rust-raw = { version = "0.16.1", features = ["spanner"] }
|
|
form_urlencoded = "1.2"
|
|
# Some versions of OpenSSL 1.1.1 conflict with grpcio's built-in boringssl which can cause
|
|
# syncserver to either fail to either compile, or start. In those cases, try
|
|
# `cargo build --features grpcio/openssl ...`
|
|
grpcio = { version = "0.13.0", features = ["openssl"] }
|
|
protobuf = { version = "=2.28.0" } # must match what's used by google-cloud-rust-raw
|
|
syncserver-common = { path = "../syncserver-common" }
|
|
syncserver-db-common = { path = "../syncserver-db-common" }
|
|
syncstorage-db-common = { path = "../syncstorage-db-common" }
|
|
syncstorage-settings = { path = "../syncstorage-settings" }
|
|
tokio = { workspace = true, features = [
|
|
"macros",
|
|
"sync",
|
|
] }
|
|
|