mirror of
https://github.com/mozilla-services/syncstorage-rs.git
synced 2026-05-06 04:36:28 +02:00
Some checks failed
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-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-mysql (push) Has been cancelled
MySQL Build and Test / build-and-test-mysql (push) Has been cancelled
Postgres Build and Test / build-and-test-postgres (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
Spanner Build, Test, and Push / build-and-test-spanner (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-postgres-image (push) Has been cancelled
Postgres Build and Test / postgres-e2e-tests (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-spanner-image (push) Has been cancelled
Spanner Build, Test, and Push / spanner-e2e-tests (push) Has been cancelled
* feat: log when Sentry is not configured * Update syncserver-common/src/middleware/sentry.rs Co-authored-by: Philip Jenvey <pjenvey@underboss.org> * warn and optionally print backtrace * Use error! * panic! * Cleanup and comment * Cargo.lock --------- Co-authored-by: Philip Jenvey <pjenvey@underboss.org>
21 lines
574 B
TOML
21 lines
574 B
TOML
[package]
|
|
name = "syncserver-settings"
|
|
version.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
serde.workspace = true
|
|
slog-scope.workspace = true
|
|
|
|
config = "0.11" # pin to 11, 12+ introduces a breaking change for env vars.
|
|
num_cpus = "1"
|
|
syncserver-common = { path = "../syncserver-common" }
|
|
syncstorage-settings = { path = "../syncstorage-settings" }
|
|
tokenserver-settings = { path = "../tokenserver-settings" }
|
|
url = "2.5"
|
|
|
|
[dev-dependencies]
|
|
temp-env.workspace = true
|