diff --git a/lib/global-error/Cargo.toml b/lib/global-error/Cargo.toml index b620f9f146..e11f2ef4f6 100644 --- a/lib/global-error/Cargo.toml +++ b/lib/global-error/Cargo.toml @@ -10,9 +10,11 @@ protobuf-src = ["types/protobuf-src"] chirp = ["types"] [dependencies] +async-trait = "0.1" formatted-error = { path = "../formatted-error" } types = { path = "../types/core", optional = true } http = "0.2" +reqwest = "0.11" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "1.0" diff --git a/lib/global-error/src/ext.rs b/lib/global-error/src/ext.rs index e1b46cd4be..70944ff4d7 100644 --- a/lib/global-error/src/ext.rs +++ b/lib/global-error/src/ext.rs @@ -1,4 +1,5 @@ -use crate::Location; +use crate::{bail, GlobalResult, Location}; +use async_trait::async_trait; #[derive(Debug, thiserror::Error)] pub enum AssertionError { @@ -122,3 +123,23 @@ impl<'a, T> UnwrapOrAssertError for &'a &'a Option { } } } + +#[async_trait] +pub trait ToGlobalError: Sized { + async fn to_global_error(self) -> GlobalResult; +} + +#[async_trait] +impl ToGlobalError for reqwest::Response { + async fn to_global_error(self) -> GlobalResult { + if self.status().is_success() { + Ok(self) + } else { + let url = self.url().clone(); + let status = self.status(); + let body = self.text().await?; + + bail!(format!("{url} ({status}):\n{body}")); + } + } +} diff --git a/lib/util/core/Cargo.toml b/lib/util/core/Cargo.toml index b1e6837fe6..fe3948ada6 100644 --- a/lib/util/core/Cargo.toml +++ b/lib/util/core/Cargo.toml @@ -11,6 +11,7 @@ macros = [] serde = [] [dependencies] +async-trait = "0.1" bcrypt = "0.13.0" chrono = "0.4" formatted-error = { path = "../../formatted-error", optional = true } @@ -20,6 +21,7 @@ ipnet = { version = "2.7", features = ["serde"] } lazy_static = "1.4" rand = "0.8" regex = "1.4" +reqwest = "0.11" rivet-util-env = { path = "../env" } rivet-util-macros = { path = "../macros" } serde = { version = "1.0", features = ["derive"] } diff --git a/lib/util/core/src/lib.rs b/lib/util/core/src/lib.rs index 0884772c27..28cb9cf522 100644 --- a/lib/util/core/src/lib.rs +++ b/lib/util/core/src/lib.rs @@ -16,6 +16,7 @@ pub mod geo; pub mod glob; pub mod math; pub mod net; +pub mod req; pub mod route; pub mod sort; pub mod timestamp; diff --git a/lib/util/core/src/req.rs b/lib/util/core/src/req.rs new file mode 100644 index 0000000000..fe85c56f0a --- /dev/null +++ b/lib/util/core/src/req.rs @@ -0,0 +1,41 @@ +use std::time::Duration; + +use async_trait::async_trait; +use global_error::prelude::*; + +#[async_trait] +pub trait SendRetry { + /// Retries the request upon receiving a 429 response. + async fn send_retry(self, mut retries: usize) -> GlobalResult; +} + +#[async_trait] +impl SendRetry for reqwest::RequestBuilder { + async fn send_retry(self, mut retries: usize) -> GlobalResult { + loop { + let req = unwrap!(self.try_clone()); + let res = req.send().await?; + + if let reqwest::StatusCode::TOO_MANY_REQUESTS = res.status() { + if retries != 0 { + retries -= 1; + + // TODO: Parse all valid Retry-After formats. Currently only parses duration + let retry_time = res + .headers() + .get("Retry-After") + .map(|x| x.to_str()) + .transpose()? + .map(|x| x.parse::()) + .transpose()? + .unwrap_or(5); + tokio::time::sleep(Duration::from_secs(retry_time)).await; + + continue; + } + } + + break Ok(res); + } + } +} \ No newline at end of file diff --git a/svc/Cargo.lock b/svc/Cargo.lock new file mode 100644 index 0000000000..13bd0bfcdf --- /dev/null +++ b/svc/Cargo.lock @@ -0,0 +1,10556 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "acme-lib" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6bcfe879d8669cfe09f2dd1bef4dc8cb232ca7b9ce46f4621cda9e7cc729cf73" +dependencies = [ + "base64 0.21.7", + "lazy_static", + "log", + "openssl", + "serde", + "serde_json", + "time 0.1.45", + "ureq", +] + +[[package]] +name = "addr2line" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + +[[package]] +name = "ahash" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" +dependencies = [ + "getrandom", + "once_cell", + "version_check", +] + +[[package]] +name = "ahash" +version = "0.8.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" +dependencies = [ + "cfg-if", + "getrandom", + "once_cell", + "version_check", + "zerocopy", +] + +[[package]] +name = "aho-corasick" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +dependencies = [ + "memchr", +] + +[[package]] +name = "allocator-api2" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" + +[[package]] +name = "android-tzdata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anyhow" +version = "1.0.81" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247" + +[[package]] +name = "api-admin" +version = "0.0.1" +dependencies = [ + "api-helper", + "async-trait", + "async_once", + "chirp-client", + "chrono", + "cluster-server-get", + "cluster-server-list", + "http 0.2.12", + "hyper", + "lazy_static", + "prost 0.10.4", + "reqwest", + "rivet-api", + "rivet-cache", + "rivet-claims", + "rivet-connection", + "rivet-convert", + "rivet-health-checks", + "rivet-matchmaker", + "rivet-operation", + "rivet-pools", + "rivet-util-cluster", + "rivet-util-mm", + "s3-util", + "serde", + "serde_json", + "thiserror", + "token-create", + "tokio", + "tracing", + "tracing-futures", + "tracing-subscriber", + "url", + "uuid", +] + +[[package]] +name = "api-auth" +version = "0.0.1" +dependencies = [ + "api-helper", + "async-trait", + "captcha-verify", + "chirp-client", + "chrono", + "debug-email-res", + "email-verification-complete", + "email-verification-create", + "faker-user", + "headers", + "http 0.2.12", + "hyper", + "lazy_static", + "prost 0.10.4", + "rivet-api", + "rivet-auth", + "rivet-auth-server", + "rivet-cache", + "rivet-claims", + "rivet-connection", + "rivet-convert", + "rivet-health-checks", + "rivet-operation", + "rivet-pools", + "serde", + "serde_json", + "thiserror", + "token-create", + "token-revoke", + "tokio", + "tracing", + "tracing-subscriber", + "url", + "user-get", + "user-identity-create", + "user-identity-get", + "user-presence-touch", + "user-resolve-access-token", + "user-resolve-email", + "user-token-create", + "uuid", +] + +[[package]] +name = "api-cf-verification" +version = "0.0.1" +dependencies = [ + "api-helper", + "async-trait", + "bytes", + "cf-custom-hostname-get", + "chirp-client", + "chrono", + "faker-game", + "http 0.2.12", + "hyper", + "lazy_static", + "prost 0.10.4", + "rivet-cache", + "rivet-cf-verification", + "rivet-cf-verification-server", + "rivet-claims", + "rivet-connection", + "rivet-health-checks", + "rivet-operation", + "rivet-pools", + "serde", + "serde_json", + "thiserror", + "tokio", + "tracing", + "tracing-subscriber", + "url", + "uuid", +] + +[[package]] +name = "api-cloud" +version = "0.0.1" +dependencies = [ + "api-helper", + "async-trait", + "base64 0.13.1", + "build-create", + "build-get", + "build-list-for-game", + "bytes", + "cdn-namespace-auth-user-remove", + "cdn-namespace-auth-user-update", + "cdn-namespace-domain-create", + "cdn-namespace-domain-remove", + "cdn-ns-auth-type-set", + "cdn-ns-enable-domain-public-auth-set", + "cdn-site-create", + "cdn-site-get", + "cdn-site-list-for-game", + "cf-custom-hostname-list-for-namespace-id", + "chirp-client", + "chrono", + "cloud-device-link-create", + "cloud-game-config-create", + "cloud-game-config-get", + "cloud-game-token-create", + "cloud-namespace-create", + "cloud-namespace-get", + "cloud-namespace-token-development-create", + "cloud-namespace-token-public-create", + "cloud-version-get", + "cloud-version-publish", + "cluster-datacenter-list", + "custom-user-avatar-list-for-game", + "custom-user-avatar-upload-complete", + "faker-region", + "faker-team", + "futures-util", + "game-banner-upload-complete", + "game-create", + "game-get", + "game-list-for-team", + "game-logo-upload-complete", + "game-namespace-create", + "game-namespace-get", + "game-namespace-list", + "game-namespace-validate", + "game-namespace-version-history-list", + "game-namespace-version-set", + "game-resolve-namespace-id", + "game-token-development-validate", + "game-validate", + "game-version-get", + "game-version-list", + "game-version-validate", + "http 0.2.12", + "hyper", + "job-log-read", + "job-run-get", + "job-run-metrics-log", + "lazy_static", + "mm-config-lobby-group-get", + "mm-config-lobby-group-resolve-version", + "mm-config-namespace-config-set", + "mm-config-namespace-config-validate", + "mm-config-version-get", + "mm-lobby-get", + "mm-lobby-history", + "mm-lobby-list-for-namespace", + "mm-lobby-player-count", + "mm-lobby-runtime-aggregate", + "mm-player-count-for-namespace", + "perf-log-get", + "prost 0.10.4", + "rand", + "region-get", + "region-list-for-game", + "reqwest", + "rivet-api", + "rivet-cache", + "rivet-claims", + "rivet-connection", + "rivet-convert", + "rivet-health-checks", + "rivet-operation", + "rivet-pools", + "rivet-util-cluster", + "rivet-util-job", + "rivet-util-mm", + "rivet-util-nsfw", + "rivet-util-team", + "s3-util", + "serde", + "serde_json", + "team-get", + "team-member-count", + "team-validate", + "thiserror", + "tier-list", + "token-create", + "token-revoke", + "tokio", + "tracing", + "tracing-subscriber", + "upload-complete", + "upload-file-list", + "upload-get", + "upload-prepare", + "url", + "user-get", + "user-identity-create", + "user-identity-get", + "user-team-list", + "uuid", +] + +[[package]] +name = "api-group" +version = "0.0.1" +dependencies = [ + "api-helper", + "async-trait", + "chirp-client", + "chrono", + "faker-user", + "futures-util", + "game-get", + "game-resolve-namespace-id", + "http 0.2.12", + "hyper", + "lazy_static", + "prost 0.10.4", + "rand", + "rivet-api", + "rivet-cache", + "rivet-claims", + "rivet-connection", + "rivet-convert", + "rivet-group", + "rivet-group-server", + "rivet-health-checks", + "rivet-operation", + "rivet-pools", + "rivet-util-nsfw", + "serde", + "serde_json", + "team-avatar-upload-complete", + "team-get", + "team-invite-get", + "team-join-request-list", + "team-member-count", + "team-member-list", + "team-profile-validate", + "team-recommend", + "team-search", + "team-user-ban-get", + "team-user-ban-list", + "thiserror", + "token-revoke", + "tokio", + "tracing", + "tracing-subscriber", + "upload-prepare", + "url", + "user-follow-get", + "user-get", + "user-identity-get", + "user-presence-get", + "user-team-list", + "user-token-create", + "uuid", +] + +[[package]] +name = "api-helper" +version = "0.1.0" +dependencies = [ + "api-helper-macros", + "async-trait", + "chirp-client", + "chrono", + "formatted-error", + "futures-util", + "global-error", + "headers", + "http 0.2.12", + "hyper", + "lazy_static", + "prost 0.10.4", + "regex", + "rivet-api", + "rivet-cache", + "rivet-claims", + "rivet-connection", + "rivet-health-checks", + "rivet-metrics", + "rivet-operation", + "rivet-pools", + "rivet-runtime", + "rivet-util", + "serde", + "serde_array_query", + "serde_json", + "thiserror", + "tokio", + "tracing", + "tracing-subscriber", + "types", + "url", + "uuid", +] + +[[package]] +name = "api-helper-macros" +version = "0.1.0" +dependencies = [ + "proc-macro-error", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "api-identity" +version = "0.0.1" +dependencies = [ + "api-helper", + "async-trait", + "cdn-namespace-domain-create", + "cdn-namespace-get", + "chirp-client", + "cloud-namespace-token-development-create", + "faker-build", + "faker-game", + "faker-game-namespace", + "faker-game-version", + "faker-region", + "faker-user", + "futures-util", + "game-get", + "game-namespace-get", + "game-namespace-resolve-url", + "game-resolve-namespace-id", + "game-user-create", + "game-user-get", + "game-user-link-create", + "game-user-link-get", + "game-user-recent-session-list", + "game-user-recommend", + "http 0.2.12", + "hyper", + "identity-config-version-get", + "job-run-get", + "lazy_static", + "mm-config-lobby-group-resolve-version", + "mm-config-version-get", + "mm-lobby-get", + "prost 0.10.4", + "rand", + "regex", + "region-get", + "rivet-api", + "rivet-cache", + "rivet-claims", + "rivet-connection", + "rivet-convert", + "rivet-health-checks", + "rivet-identity", + "rivet-operation", + "rivet-pools", + "rivet-util-game-user", + "rivet-util-mm", + "rivet-util-nsfw", + "serde", + "serde_json", + "team-recommend", + "thiserror", + "token-create", + "token-get", + "token-revoke", + "tokio", + "tracing", + "tracing-subscriber", + "upload-prepare", + "url", + "user-avatar-upload-complete", + "user-follow-list", + "user-follow-request-list", + "user-follow-toggle", + "user-get", + "user-identity-get", + "user-mutual-friend-list", + "user-pending-delete-toggle", + "user-presence-touch", + "user-profile-validate", + "user-search", + "uuid", +] + +[[package]] +name = "api-internal-monolith" +version = "0.0.1" +dependencies = [ + "api-helper", + "api-provision", + "api-traefik-provider", + "async-trait", + "chirp-client", + "http 0.2.12", + "hyper", + "rivet-operation", + "tokio", + "tracing", + "tracing-subscriber", + "url", +] + +[[package]] +name = "api-job" +version = "0.0.1" +dependencies = [ + "api-helper", + "async-trait", + "chirp-client", + "chrono", + "faker-job-run", + "http 0.2.12", + "hyper", + "job-run-get", + "lazy_static", + "nomad-client", + "nomad-util", + "prost 0.10.4", + "reqwest", + "rivet-cache", + "rivet-claims", + "rivet-connection", + "rivet-health-checks", + "rivet-job", + "rivet-job-server", + "rivet-operation", + "rivet-pools", + "serde", + "serde_json", + "thiserror", + "token-create", + "tokio", + "tracing", + "tracing-subscriber", + "url", + "uuid", +] + +[[package]] +name = "api-kv" +version = "0.0.1" +dependencies = [ + "api-helper", + "async-trait", + "chirp-client", + "chrono", + "cloud-game-token-create", + "faker-build", + "faker-game", + "faker-game-namespace", + "faker-game-version", + "faker-region", + "futures-util", + "game-get", + "game-namespace-get", + "game-user-get", + "http 0.2.12", + "hyper", + "kv-config-version-get", + "kv-get", + "kv-list", + "lazy_static", + "mm-lobby-get", + "prost 0.10.4", + "rand", + "regex", + "region-get", + "reqwest", + "rivet-api", + "rivet-cache", + "rivet-claims", + "rivet-connection", + "rivet-convert", + "rivet-health-checks", + "rivet-kv", + "rivet-operation", + "rivet-pools", + "rivet-util-kv", + "rivet-util-mm", + "serde", + "serde_json", + "thiserror", + "token-create", + "token-revoke", + "tokio", + "tracing", + "tracing-subscriber", + "url", + "urlencoding", + "user-get", + "user-identity-get", + "user-team-list", + "uuid", +] + +[[package]] +name = "api-matchmaker" +version = "0.0.1" +dependencies = [ + "api-helper", + "async-trait", + "bytes", + "captcha-hcaptcha-config-get", + "captcha-request", + "captcha-turnstile-config-get", + "captcha-verify", + "cdn-namespace-domain-create", + "cdn-namespace-get", + "chirp-client", + "chrono", + "cloud-namespace-token-development-create", + "cloud-namespace-token-public-create", + "faker-build", + "faker-game", + "faker-game-namespace", + "faker-game-version", + "faker-region", + "game-get", + "game-namespace-get", + "game-namespace-resolve-url", + "game-resolve-namespace-id", + "game-user-get", + "http 0.2.12", + "hyper", + "job-run-get", + "lazy_static", + "mm-config-lobby-group-resolve-version", + "mm-config-version-get", + "mm-dev-player-token-create", + "mm-lobby-get", + "mm-lobby-list-for-namespace", + "mm-lobby-player-count", + "mm-lobby-state-get", + "prost 0.10.4", + "region-get", + "region-recommend", + "region-resolve-for-game", + "reqwest", + "rivet-api", + "rivet-cache", + "rivet-claims", + "rivet-connection", + "rivet-convert", + "rivet-health-checks", + "rivet-matchmaker-server", + "rivet-operation", + "rivet-pools", + "rivet-util-job", + "rivet-util-mm", + "serde", + "serde_json", + "thiserror", + "token-create", + "token-revoke", + "tokio", + "tracing", + "tracing-subscriber", + "url", + "user-identity-get", + "uuid", +] + +[[package]] +name = "api-module" +version = "0.0.1" +dependencies = [ + "api-helper", + "async-trait", + "chirp-client", + "chrono", + "cloud-game-token-create", + "cloud-namespace-token-public-create", + "faker-build", + "faker-game", + "faker-game-namespace", + "faker-game-version", + "faker-region", + "futures-util", + "game-get", + "game-namespace-get", + "game-user-get", + "http 0.2.12", + "hyper", + "lazy_static", + "mm-lobby-get", + "module-game-version-get", + "module-instance-call", + "module-ns-instance-get", + "prost 0.10.4", + "rand", + "regex", + "region-get", + "reqwest", + "rivet-api", + "rivet-cache", + "rivet-claims", + "rivet-connection", + "rivet-convert", + "rivet-health-checks", + "rivet-operation", + "rivet-pools", + "rivet-util-mm", + "serde", + "serde_json", + "thiserror", + "token-create", + "token-revoke", + "tokio", + "tracing", + "tracing-subscriber", + "url", + "urlencoding", + "user-get", + "user-identity-get", + "user-team-list", + "uuid", +] + +[[package]] +name = "api-monolith" +version = "0.0.1" +dependencies = [ + "api-admin", + "api-auth", + "api-cf-verification", + "api-cloud", + "api-group", + "api-helper", + "api-identity", + "api-job", + "api-kv", + "api-matchmaker", + "api-module", + "api-portal", + "api-status", + "async-trait", + "chirp-client", + "http 0.2.12", + "hyper", + "rivet-operation", + "tokio", + "tracing", + "tracing-subscriber", + "url", +] + +[[package]] +name = "api-portal" +version = "0.0.1" +dependencies = [ + "api-helper", + "async-trait", + "chirp-client", + "chrono", + "faker-user", + "futures-util", + "game-get", + "game-resolve-name-id", + "http 0.2.12", + "hyper", + "lazy_static", + "prost 0.10.4", + "rand", + "regex", + "rivet-cache", + "rivet-claims", + "rivet-connection", + "rivet-convert", + "rivet-health-checks", + "rivet-operation", + "rivet-pools", + "rivet-portal", + "rivet-portal-server", + "serde", + "serde_json", + "team-get", + "team-member-count", + "thiserror", + "token-revoke", + "tokio", + "tracing", + "tracing-subscriber", + "url", + "user-get", + "user-notification-auth-register", + "user-notification-auth-unregister", + "user-team-list", + "user-token-create", + "uuid", +] + +[[package]] +name = "api-provision" +version = "0.0.1" +dependencies = [ + "api-helper", + "async-trait", + "chirp-client", + "chrono", + "cluster-datacenter-get", + "cluster-datacenter-tls-get", + "cluster-server-get", + "cluster-server-resolve-for-ip", + "http 0.2.12", + "hyper", + "lazy_static", + "prost 0.10.4", + "rivet-api", + "rivet-cache", + "rivet-claims", + "rivet-health-checks", + "rivet-operation", + "rivet-pools", + "rivet-util-cluster", + "serde", + "serde_json", + "thiserror", + "tokio", + "tracing", + "tracing-subscriber", + "url", + "uuid", +] + +[[package]] +name = "api-status" +version = "0.0.1" +dependencies = [ + "api-helper", + "async-trait", + "async_once", + "chirp-client", + "chrono", + "faker-region", + "futures-util", + "game-namespace-resolve-name-id", + "game-resolve-name-id", + "http 0.2.12", + "hyper", + "lazy_static", + "prost 0.10.4", + "regex", + "reqwest", + "rivet-api", + "rivet-cache", + "rivet-claims", + "rivet-connection", + "rivet-health-checks", + "rivet-matchmaker", + "rivet-operation", + "rivet-pools", + "rivet-status", + "rivet-status-server", + "rivet-util-kv", + "s3-util", + "serde", + "serde_json", + "thiserror", + "token-create", + "tokio", + "tokio-tungstenite", + "tracing", + "tracing-subscriber", + "trust-dns-resolver", + "url", + "urlencoding", + "uuid", +] + +[[package]] +name = "api-traefik-provider" +version = "0.0.1" +dependencies = [ + "api-helper", + "async-trait", + "async_once", + "base64 0.13.1", + "cdn-namespace-auth-user-update", + "cdn-namespace-domain-create", + "chirp-client", + "chrono", + "faker-cdn-site", + "faker-game", + "faker-game-namespace", + "faker-game-version", + "faker-job-run", + "faker-region", + "game-get", + "http 0.2.12", + "hyper", + "lazy_static", + "prost 0.10.4", + "reqwest", + "rivet-cache", + "rivet-claims", + "rivet-connection", + "rivet-convert", + "rivet-health-checks", + "rivet-operation", + "rivet-pools", + "rivet-route", + "rivet-util-cdn", + "rivet-util-job", + "s3-util", + "serde", + "serde_json", + "thiserror", + "tokio", + "tracing", + "tracing-subscriber", + "url", + "uuid", +] + +[[package]] +name = "arc-swap" +version = "1.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" + +[[package]] +name = "async-nats" +version = "0.33.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbc1f1a75fd07f0f517322d103211f12d757658e91676def9a2e688774656c60" +dependencies = [ + "base64 0.21.7", + "bytes", + "futures", + "http 0.2.12", + "memchr", + "nkeys", + "nuid", + "once_cell", + "rand", + "regex", + "ring 0.17.8", + "rustls 0.21.10", + "rustls-native-certs 0.6.3", + "rustls-pemfile", + "rustls-webpki 0.101.7", + "serde", + "serde_json", + "serde_nanos", + "serde_repr", + "thiserror", + "time 0.3.34", + "tokio", + "tokio-retry", + "tokio-rustls 0.24.1", + "tracing", + "url", +] + +[[package]] +name = "async-posthog" +version = "0.2.3" +source = "git+https://github.com/rivet-gg/posthog-rs.git?rev=ef4e80e#ef4e80e57747ea7204794bce9a103bfeccefabf1" +dependencies = [ + "posthog-core", + "reqwest", + "serde", + "serde_json", + "thiserror", + "tokio", +] + +[[package]] +name = "async-trait" +version = "0.1.79" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a507401cad91ec6a857ed5513a2073c82a9b9048762b885bb98655b306964681" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.58", +] + +[[package]] +name = "async_once" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ce4f10ea3abcd6617873bae9f91d1c5332b4a778bd9ce34d0cd517474c1de82" + +[[package]] +name = "atoi" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" +dependencies = [ + "num-traits", +] + +[[package]] +name = "autocfg" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" + +[[package]] +name = "aws-endpoint" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "253d7cd480bfa59a5323390e9e91885a8f06a275e0517d81eeb1070b6aa7d271" +dependencies = [ + "aws-smithy-http 0.52.0", + "aws-smithy-types 0.52.0", + "aws-types", + "http 0.2.12", + "regex", + "tracing", +] + +[[package]] +name = "aws-http" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd1b83859383e46ea8fda633378f9f3f02e6e3a446fd89f0240b5c3662716c9" +dependencies = [ + "aws-smithy-http 0.52.0", + "aws-smithy-types 0.52.0", + "aws-types", + "bytes", + "http 0.2.12", + "http-body", + "lazy_static", + "percent-encoding", + "pin-project-lite", + "tracing", +] + +[[package]] +name = "aws-sdk-s3" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4d240ff751efc65099d18f6b0fb80360b31a298cec7b392c511692bec4a6e21" +dependencies = [ + "aws-endpoint", + "aws-http", + "aws-sig-auth", + "aws-sigv4", + "aws-smithy-async 0.52.0", + "aws-smithy-checksums", + "aws-smithy-client 0.52.0", + "aws-smithy-eventstream", + "aws-smithy-http 0.52.0", + "aws-smithy-http-tower 0.52.0", + "aws-smithy-types 0.52.0", + "aws-smithy-xml", + "aws-types", + "bytes", + "bytes-utils", + "fastrand 1.9.0", + "http 0.2.12", + "http-body", + "tokio-stream", + "tower", + "tracing", +] + +[[package]] +name = "aws-sig-auth" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6126c4ff918e35fb9ae1bf2de71157fad36f0cc6a2b1d0f7197ee711713700fc" +dependencies = [ + "aws-sigv4", + "aws-smithy-eventstream", + "aws-smithy-http 0.52.0", + "aws-types", + "http 0.2.12", + "tracing", +] + +[[package]] +name = "aws-sigv4" +version = "0.52.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd1ee2d9e6e268a77bdf3a0dc2cc8767401627e60abaa32883aaa3d8b47428e9" +dependencies = [ + "aws-smithy-eventstream", + "aws-smithy-http 0.52.0", + "bytes", + "form_urlencoded", + "hex", + "hmac", + "http 0.2.12", + "once_cell", + "percent-encoding", + "regex", + "sha2", + "time 0.3.34", + "tracing", +] + +[[package]] +name = "aws-smithy-async" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23dcbf7d119f514a627d236412626645c4378b126e30dc61db9de3e069fa1676" +dependencies = [ + "futures-util", + "pin-project-lite", + "tokio", + "tokio-stream", +] + +[[package]] +name = "aws-smithy-async" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e6a895d68852dd1564328e63ef1583e5eb307dd2a5ebf35d862a5c402957d5e" +dependencies = [ + "futures-util", + "pin-project-lite", + "tokio", + "tokio-stream", +] + +[[package]] +name = "aws-smithy-checksums" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b847d960abc993319d77b52e82971e2bbdce94f6192df42142e14ed5c9c917" +dependencies = [ + "aws-smithy-http 0.52.0", + "aws-smithy-types 0.52.0", + "bytes", + "crc32c", + "crc32fast", + "hex", + "http 0.2.12", + "http-body", + "md-5", + "pin-project-lite", + "sha1", + "sha2", + "tracing", +] + +[[package]] +name = "aws-smithy-client" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "511ac6c65f2a89cfcd74fe78aa6d07216095a53cbaeab493b17f6df82cd65b86" +dependencies = [ + "aws-smithy-async 0.41.0", + "aws-smithy-http 0.41.0", + "aws-smithy-http-tower 0.41.0", + "aws-smithy-types 0.41.0", + "bytes", + "fastrand 1.9.0", + "http 0.2.12", + "http-body", + "hyper", + "hyper-rustls 0.22.1", + "lazy_static", + "pin-project", + "pin-project-lite", + "tokio", + "tower", + "tracing", +] + +[[package]] +name = "aws-smithy-client" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f505bf793eb3e6d7c166ef1275c27b4b2cd5361173fe950ac8e2cfc08c29a7ef" +dependencies = [ + "aws-smithy-async 0.52.0", + "aws-smithy-http 0.52.0", + "aws-smithy-http-tower 0.52.0", + "aws-smithy-types 0.52.0", + "bytes", + "fastrand 1.9.0", + "http 0.2.12", + "http-body", + "hyper", + "hyper-rustls 0.23.2", + "lazy_static", + "pin-project-lite", + "tokio", + "tower", + "tracing", +] + +[[package]] +name = "aws-smithy-eventstream" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d751c99da757aecc1408ab6b2d65e9493220a5e7a68bcafa4f07b6fd1bc473f1" +dependencies = [ + "aws-smithy-types 0.52.0", + "bytes", + "crc32fast", +] + +[[package]] +name = "aws-smithy-http" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d800c8684fa567cdf1abd9654c7997b2a887e7b06022938756193472ec7ec251" +dependencies = [ + "aws-smithy-types 0.41.0", + "bytes", + "bytes-utils", + "futures-core", + "http 0.2.12", + "http-body", + "hyper", + "once_cell", + "percent-encoding", + "pin-project", + "tokio", + "tokio-util 0.6.10", + "tracing", +] + +[[package]] +name = "aws-smithy-http" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37e4b4304b7ea4af1af3e08535100eb7b6459d5a6264b92078bf85176d04ab85" +dependencies = [ + "aws-smithy-eventstream", + "aws-smithy-types 0.52.0", + "bytes", + "bytes-utils", + "futures-core", + "http 0.2.12", + "http-body", + "hyper", + "once_cell", + "percent-encoding", + "pin-project-lite", + "pin-utils", + "tokio", + "tokio-util 0.7.10", + "tracing", +] + +[[package]] +name = "aws-smithy-http-tower" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8017959786cce64e690214d303d062c97fcd38a68df7cb444255e534c9bbce49" +dependencies = [ + "aws-smithy-http 0.41.0", + "bytes", + "http 0.2.12", + "http-body", + "pin-project", + "tower", + "tracing", +] + +[[package]] +name = "aws-smithy-http-tower" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e86072ecc4dc4faf3e2071144285cfd539263fe7102b701d54fb991eafb04af8" +dependencies = [ + "aws-smithy-http 0.52.0", + "aws-smithy-types 0.52.0", + "bytes", + "http 0.2.12", + "http-body", + "pin-project-lite", + "tower", + "tracing", +] + +[[package]] +name = "aws-smithy-json" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3796e2a4a3b7d15db2fd5aec2de9220919332648f0a56a77b5c53caf4a9653fa" +dependencies = [ + "aws-smithy-types 0.41.0", +] + +[[package]] +name = "aws-smithy-types" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c7f957a2250cc0fa4ccf155e00aeac9a81f600df7cd4ecc910c75030e6534f5" +dependencies = [ + "itoa 1.0.11", + "num-integer", + "ryu", + "time 0.3.34", +] + +[[package]] +name = "aws-smithy-types" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "987b1e37febb9bd409ca0846e82d35299e572ad8279bc404778caeb5fc05ad56" +dependencies = [ + "base64-simd", + "itoa 1.0.11", + "num-integer", + "ryu", + "time 0.3.34", +] + +[[package]] +name = "aws-smithy-xml" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37ce3791e14eec75ffac851a5a559f1ce6b31843297f42cc8bfba82714a6a5d8" +dependencies = [ + "xmlparser", +] + +[[package]] +name = "aws-types" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c05adca3e2bcf686dd2c47836f216ab52ed7845c177d180c84b08522c1166a3" +dependencies = [ + "aws-smithy-async 0.52.0", + "aws-smithy-client 0.52.0", + "aws-smithy-http 0.52.0", + "aws-smithy-types 0.52.0", + "http 0.2.12", + "rustc_version", + "tracing", + "zeroize", +] + +[[package]] +name = "axum" +version = "0.6.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf" +dependencies = [ + "async-trait", + "axum-core", + "bitflags 1.3.2", + "bytes", + "futures-util", + "http 0.2.12", + "http-body", + "hyper", + "itoa 1.0.11", + "matchit", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "rustversion", + "serde", + "sync_wrapper", + "tower", + "tower-layer", + "tower-service", +] + +[[package]] +name = "axum-core" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c" +dependencies = [ + "async-trait", + "bytes", + "futures-util", + "http 0.2.12", + "http-body", + "mime", + "rustversion", + "tower-layer", + "tower-service", +] + +[[package]] +name = "backtrace" +version = "0.3.71" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d" +dependencies = [ + "addr2line", + "cc", + "cfg-if", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", +] + +[[package]] +name = "base16ct" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" + +[[package]] +name = "base64" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" + +[[package]] +name = "base64" +version = "0.21.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" + +[[package]] +name = "base64-simd" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "781dd20c3aff0bd194fe7d2a977dd92f21c173891f3a03b677359e5fa457e5d5" +dependencies = [ + "simd-abstraction", +] + +[[package]] +name = "base64ct" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" + +[[package]] +name = "bcrypt" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7e7c93a3fb23b2fdde989b2c9ec4dd153063ec81f408507f84c090cd91c6641" +dependencies = [ + "base64 0.13.1", + "blowfish", + "getrandom", + "zeroize", +] + +[[package]] +name = "bit-vec" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" +dependencies = [ + "serde", +] + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "blowfish" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7" +dependencies = [ + "byteorder", + "cipher", +] + +[[package]] +name = "bolt-config" +version = "0.1.0" +dependencies = [ + "heck 0.3.3", + "serde", + "serde_json", + "strum 0.25.0", + "strum_macros 0.25.3", + "toml 0.7.8", + "uuid", +] + +[[package]] +name = "bstr" +version = "1.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706" +dependencies = [ + "memchr", +] + +[[package]] +name = "build-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-build", + "faker-game", + "faker-user", + "game-get", + "prost 0.10.4", + "reqwest", + "rivet-operation", + "rivet-util-build", + "sqlx", + "upload-complete", + "upload-get", + "upload-prepare", +] + +[[package]] +name = "build-default-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "futures-util", + "indoc", + "prost 0.10.4", + "reqwest", + "rivet-connection", + "rivet-operation", + "rivet-pools", + "sqlx", + "tokio", + "tracing", + "tracing-subscriber", + "upload-complete", + "upload-prepare", + "uuid", +] + +[[package]] +name = "build-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-build", + "faker-game", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "build-list-for-game" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-build", + "faker-game", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "bumpalo" +version = "3.15.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "bytes" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" +dependencies = [ + "serde", +] + +[[package]] +name = "bytes-utils" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35" +dependencies = [ + "bytes", + "either", +] + +[[package]] +name = "captcha-hcaptcha-config-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "rivet-util-captcha", +] + +[[package]] +name = "captcha-hcaptcha-verify" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "reqwest", + "rivet-operation", + "serde", +] + +[[package]] +name = "captcha-request" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "prost 0.10.4", + "rivet-operation", + "rivet-util-captcha", + "sqlx", +] + +[[package]] +name = "captcha-turnstile-config-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "rivet-util-captcha", +] + +[[package]] +name = "captcha-turnstile-verify" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "reqwest", + "rivet-operation", + "serde", +] + +[[package]] +name = "captcha-verify" +version = "0.0.1" +dependencies = [ + "captcha-hcaptcha-config-get", + "captcha-hcaptcha-verify", + "captcha-request", + "captcha-turnstile-verify", + "chirp-client", + "chirp-worker", + "chrono", + "prost 0.10.4", + "reqwest", + "rivet-operation", + "rivet-util-captcha", + "serde_json", +] + +[[package]] +name = "cc" +version = "1.0.90" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5" + +[[package]] +name = "cdn-namespace-auth-user-remove" +version = "0.0.1" +dependencies = [ + "cdn-namespace-auth-user-update", + "cdn-namespace-create", + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cdn-namespace-auth-user-update" +version = "0.0.1" +dependencies = [ + "cdn-namespace-create", + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cdn-namespace-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cdn-namespace-domain-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "game-get", + "game-resolve-namespace-id", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cdn-namespace-domain-remove" +version = "0.0.1" +dependencies = [ + "cdn-namespace-domain-create", + "chirp-client", + "chirp-worker", + "faker-game", + "game-get", + "game-resolve-namespace-id", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cdn-namespace-get" +version = "0.0.1" +dependencies = [ + "cdn-namespace-create", + "cdn-namespace-domain-create", + "cdn-namespace-get", + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cdn-namespace-resolve-domain" +version = "0.0.1" +dependencies = [ + "cdn-namespace-domain-create", + "chirp-client", + "chirp-worker", + "faker-game", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cdn-ns-auth-type-set" +version = "0.0.1" +dependencies = [ + "cdn-namespace-create", + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cdn-ns-enable-domain-public-auth-set" +version = "0.0.1" +dependencies = [ + "cdn-namespace-create", + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cdn-site-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "game-get", + "prost 0.10.4", + "reqwest", + "rivet-operation", + "sqlx", + "upload-complete", + "upload-get", + "upload-prepare", +] + +[[package]] +name = "cdn-site-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-cdn-site", + "faker-game", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cdn-site-list-for-game" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-cdn-site", + "faker-game", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cdn-version-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "faker-game-version", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cdn-version-prepare" +version = "0.0.1" +dependencies = [ + "cdn-site-get", + "chirp-client", + "chirp-worker", + "faker-cdn-site", + "faker-game", + "prost 0.10.4", + "rivet-operation", + "upload-get", +] + +[[package]] +name = "cdn-version-publish" +version = "0.0.1" +dependencies = [ + "cdn-version-get", + "chirp-client", + "chirp-worker", + "faker-cdn-site", + "faker-game", + "itertools 0.10.5", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "unzip-n", +] + +[[package]] +name = "cdn-worker" +version = "0.0.1" +dependencies = [ + "cdn-namespace-get", + "cdn-site-get", + "cdn-version-get", + "chirp-client", + "chirp-worker", + "game-get", + "game-namespace-get", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", + "rivet-util-cdn", + "upload-get", +] + +[[package]] +name = "censor" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5563d2728feef9a6186acdd148bccbe850dad63c5ba55a3b3355abc9137cb3eb" +dependencies = [ + "once_cell", +] + +[[package]] +name = "cf-custom-hostname-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cf-custom-hostname-list-for-namespace-id" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cf-custom-hostname-resolve-hostname" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cf-custom-hostname-worker" +version = "0.0.1" +dependencies = [ + "cf-custom-hostname-get", + "cf-custom-hostname-list-for-namespace-id", + "cf-custom-hostname-resolve-hostname", + "chirp-client", + "chirp-worker", + "faker-game", + "game-get", + "game-list-for-team", + "game-namespace-list", + "game-resolve-namespace-id", + "reqwest", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", + "serde", +] + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "chirp-client" +version = "0.1.0" +dependencies = [ + "chirp-perf", + "chirp-types", + "chrono", + "futures-util", + "global-error", + "lazy_static", + "prost 0.10.4", + "rand", + "rivet-metrics", + "rivet-pools", + "rivet-util", + "serde", + "thiserror", + "tokio", + "tokio-util 0.7.10", + "tracing", + "types", + "urlencoding", + "uuid", +] + +[[package]] +name = "chirp-metrics" +version = "0.1.0" +dependencies = [ + "lazy_static", + "rivet-metrics", +] + +[[package]] +name = "chirp-perf" +version = "0.1.0" +dependencies = [ + "lazy_static", + "prost 0.10.4", + "redis", + "rivet-metrics", + "rivet-pools", + "thiserror", + "tokio", + "tracing", + "types", + "uuid", +] + +[[package]] +name = "chirp-types" +version = "0.1.0" +dependencies = [ + "prost 0.10.4", +] + +[[package]] +name = "chirp-worker" +version = "0.1.5" +dependencies = [ + "async-trait", + "chirp-client", + "chirp-metrics", + "chirp-perf", + "chirp-worker-attributes", + "formatted-error", + "futures-util", + "global-error", + "indoc", + "lazy_static", + "prost 0.10.4", + "rand", + "redis", + "rivet-cache", + "rivet-connection", + "rivet-metrics", + "rivet-operation", + "rivet-pools", + "rivet-runtime", + "rivet-util", + "serde_json", + "thiserror", + "tokio", + "tracing", + "tracing-subscriber", + "types", + "uuid", +] + +[[package]] +name = "chirp-worker-attributes" +version = "0.1.0" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.58", +] + +[[package]] +name = "chrono" +version = "0.4.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a0d04d43504c61aa6c7531f1871dd0d418d91130162063b789da00fd7057a5e" +dependencies = [ + "android-tzdata", + "iana-time-zone", + "js-sys", + "num-traits", + "serde", + "wasm-bindgen", + "windows-targets 0.52.4", +] + +[[package]] +name = "cipher" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" +dependencies = [ + "crypto-common", + "inout", +] + +[[package]] +name = "cjson" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91531b1d3fe15c6126decd9977dc823e1fde8e2501cf6ac780407f952a28f7ce" +dependencies = [ + "itoa 0.4.8", + "serde", + "serde_derive", + "serde_json", +] + +[[package]] +name = "clickhouse" +version = "0.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0875e527e299fc5f4faba42870bf199a39ab0bb2dbba1b8aef0a2151451130f" +dependencies = [ + "bstr", + "bytes", + "clickhouse-derive", + "clickhouse-rs-cityhash-sys", + "futures", + "hyper", + "hyper-tls", + "lz4", + "sealed", + "serde", + "static_assertions", + "thiserror", + "tokio", + "url", + "uuid", +] + +[[package]] +name = "clickhouse-derive" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18af5425854858c507eec70f7deb4d5d8cec4216fcb086283a78872387281ea5" +dependencies = [ + "proc-macro2", + "quote", + "serde_derive_internals", + "syn 1.0.109", +] + +[[package]] +name = "clickhouse-rs-cityhash-sys" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4baf9d4700a28d6cb600e17ed6ae2b43298a5245f1f76b4eab63027ebfd592b9" +dependencies = [ + "cc", +] + +[[package]] +name = "cloud-device-link-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-claims", + "rivet-operation", + "token-create", +] + +[[package]] +name = "cloud-game-config-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cloud-game-config-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "cloud-game-config-create", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cloud-game-token-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "token-create", +] + +[[package]] +name = "cloud-namespace-create" +version = "0.0.1" +dependencies = [ + "cdn-namespace-create", + "chirp-client", + "chirp-worker", + "faker-game", + "game-get", + "game-namespace-create", + "game-namespace-get", + "game-version-create", + "identity-config-namespace-create", + "kv-config-namespace-create", + "mm-config-namespace-create", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cloud-namespace-get" +version = "0.0.1" +dependencies = [ + "cdn-namespace-get", + "chirp-client", + "chirp-worker", + "cloud-namespace-create", + "faker-game", + "game-namespace-create", + "game-version-create", + "identity-config-namespace-get", + "kv-config-namespace-get", + "mm-config-namespace-get", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cloud-namespace-token-development-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "game-namespace-get", + "game-token-development-validate", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "token-create", +] + +[[package]] +name = "cloud-namespace-token-public-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "game-namespace-get", + "prost 0.10.4", + "rivet-claims", + "rivet-operation", + "sqlx", + "token-create", +] + +[[package]] +name = "cloud-version-get" +version = "0.0.1" +dependencies = [ + "cdn-version-get", + "chirp-client", + "chirp-worker", + "cloud-version-publish", + "faker-build", + "faker-game", + "faker-region", + "identity-config-version-get", + "kv-config-version-get", + "mm-config-version-get", + "module-game-version-get", + "prost 0.10.4", + "rivet-operation", + "rivet-util-mm", + "sqlx", +] + +[[package]] +name = "cloud-version-publish" +version = "0.0.1" +dependencies = [ + "cdn-version-prepare", + "cdn-version-publish", + "chirp-client", + "chirp-worker", + "faker-build", + "faker-game", + "game-get", + "game-version-create", + "game-version-validate", + "identity-config-version-prepare", + "identity-config-version-publish", + "kv-config-version-prepare", + "kv-config-version-publish", + "mm-config-version-prepare", + "mm-config-version-publish", + "module-game-version-prepare", + "module-game-version-publish", + "prost 0.10.4", + "region-list", + "rivet-operation", + "rivet-util-mm", + "sqlx", +] + +[[package]] +name = "cloud-worker" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "cloud-game-token-create", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", +] + +[[package]] +name = "cloudflare" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0778f99ea7ad39b49b758eb418da7117b93232a5f6a09f9b79a094b77ac88cc2" +dependencies = [ + "anyhow", + "async-trait", + "base64 0.13.1", + "cfg-if", + "chrono", + "http 0.2.12", + "percent-encoding", + "reqwest", + "serde", + "serde_json", + "serde_qs", + "serde_with", + "url", + "uuid", +] + +[[package]] +name = "cluster-datacenter-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cluster-datacenter-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cluster-datacenter-location-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "ip-info", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cluster-datacenter-resolve-for-name-id" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cluster-datacenter-tls-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cluster-datacenter-tls-renew" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "cluster-datacenter-get", + "rivet-connection", + "rivet-health-checks", + "rivet-metrics", + "rivet-operation", + "rivet-runtime", + "sqlx", + "tokio", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "cluster-datacenter-topology-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "lazy_static", + "nomad-util", + "nomad_client", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cluster-default-update" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "cluster-datacenter-get", + "cluster-datacenter-list", + "cluster-get", + "prost 0.10.4", + "reqwest", + "rivet-connection", + "rivet-operation", + "rivet-pools", + "rivet-util-cluster", + "serde", + "serde_json", + "tokio", + "tracing", + "tracing-subscriber", + "uuid", +] + +[[package]] +name = "cluster-gc" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "cluster-datacenter-get", + "rivet-connection", + "rivet-health-checks", + "rivet-metrics", + "rivet-operation", + "rivet-runtime", + "rivet-util-cluster", + "sqlx", + "tokio", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "cluster-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cluster-get-for-game" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "rivet-util-cluster", + "sqlx", +] + +[[package]] +name = "cluster-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cluster-server-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cluster-server-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cluster-server-resolve-for-ip" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "cluster-worker" +version = "0.0.1" +dependencies = [ + "acme-lib", + "anyhow", + "chirp-client", + "chirp-worker", + "chrono", + "cloudflare", + "cluster-datacenter-get", + "cluster-datacenter-list", + "cluster-datacenter-topology-get", + "http 0.2.12", + "include_dir", + "indoc", + "lazy_static", + "linode-instance-type-get", + "linode-server-destroy", + "linode-server-provision", + "maplit", + "nomad-util", + "nomad_client", + "openssl", + "rivet-convert", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", + "rivet-util-cluster", + "s3-util", + "serde_yaml", + "sqlx", + "ssh2", + "thiserror", + "token-create", + "trust-dns-resolver", +] + +[[package]] +name = "combine" +version = "4.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" +dependencies = [ + "bytes", + "futures-core", + "memchr", + "pin-project-lite", + "tokio", + "tokio-util 0.7.10", +] + +[[package]] +name = "console-api" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2895653b4d9f1538a83970077cb01dfc77a4810524e51a110944688e916b18e" +dependencies = [ + "prost 0.11.9", + "prost-types 0.11.9", + "tonic", + "tracing-core", +] + +[[package]] +name = "console-subscriber" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4cf42660ac07fcebed809cfe561dd8730bcd35b075215e6479c516bcd0d11cb" +dependencies = [ + "console-api", + "crossbeam-channel", + "crossbeam-utils", + "futures", + "hdrhistogram", + "humantime", + "prost-types 0.11.9", + "serde", + "serde_json", + "thread_local", + "tokio", + "tokio-stream", + "tonic", + "tracing", + "tracing-core", + "tracing-subscriber", +] + +[[package]] +name = "console_error_panic_hook" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" +dependencies = [ + "cfg-if", + "wasm-bindgen", +] + +[[package]] +name = "const-oid" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" + +[[package]] +name = "core-foundation" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" + +[[package]] +name = "cpufeatures" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" +dependencies = [ + "libc", +] + +[[package]] +name = "crc" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe" +dependencies = [ + "crc-catalog", +] + +[[package]] +name = "crc-catalog" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" + +[[package]] +name = "crc32c" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89254598aa9b9fa608de44b3ae54c810f0f06d755e24c50177f1f8f31ff50ce2" +dependencies = [ + "rustc_version", +] + +[[package]] +name = "crc32fast" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-queue" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" + +[[package]] +name = "crypto-bigint" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" +dependencies = [ + "generic-array", + "rand_core", + "subtle", + "zeroize", +] + +[[package]] +name = "crypto-common" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "csv" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe" +dependencies = [ + "csv-core", + "itoa 1.0.11", + "ryu", + "serde", +] + +[[package]] +name = "csv-core" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" +dependencies = [ + "memchr", +] + +[[package]] +name = "ct-logs" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1a816186fa68d9e426e3cb4ae4dff1fcd8e4a2c34b781bf7a822574a0d0aac8" +dependencies = [ + "sct 0.6.1", +] + +[[package]] +name = "curve25519-dalek" +version = "4.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a677b8922c94e01bdbb12126b0bc852f00447528dee1782229af9c720c3f348" +dependencies = [ + "cfg-if", + "cpufeatures", + "curve25519-dalek-derive", + "digest", + "fiat-crypto", + "platforms", + "rustc_version", + "subtle", +] + +[[package]] +name = "curve25519-dalek-derive" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.58", +] + +[[package]] +name = "custom-user-avatar-list-for-game" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "custom-user-avatar-upload-complete", + "faker-game", + "prost 0.10.4", + "reqwest", + "rivet-operation", + "sqlx", + "upload-prepare", +] + +[[package]] +name = "custom-user-avatar-upload-complete" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "reqwest", + "rivet-operation", + "sqlx", + "upload-complete", + "upload-get", + "upload-prepare", +] + +[[package]] +name = "darling" +version = "0.20.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391" +dependencies = [ + "darling_core", + "darling_macro", +] + +[[package]] +name = "darling_core" +version = "0.20.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn 2.0.58", +] + +[[package]] +name = "darling_macro" +version = "0.20.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f" +dependencies = [ + "darling_core", + "quote", + "syn 2.0.58", +] + +[[package]] +name = "dashmap" +version = "5.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" +dependencies = [ + "cfg-if", + "hashbrown 0.14.3", + "lock_api", + "once_cell", + "parking_lot_core 0.9.9", +] + +[[package]] +name = "data-encoding" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" + +[[package]] +name = "debug-email-res" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "email-verification-create", + "prost 0.10.4", + "rand", + "rivet-operation", + "serde_json", + "sqlx", +] + +[[package]] +name = "der" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" +dependencies = [ + "const-oid", + "pem-rfc7468", + "zeroize", +] + +[[package]] +name = "deranged" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" +dependencies = [ + "powerfmt", + "serde", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "const-oid", + "crypto-common", + "subtle", +] + +[[package]] +name = "dotenvy" +version = "0.15.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" + +[[package]] +name = "ecdsa" +version = "0.16.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" +dependencies = [ + "der", + "digest", + "elliptic-curve", + "rfc6979", + "signature", + "spki", +] + +[[package]] +name = "ed25519" +version = "2.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" +dependencies = [ + "signature", +] + +[[package]] +name = "ed25519-dalek" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871" +dependencies = [ + "curve25519-dalek", + "ed25519", + "sha2", + "signature", + "subtle", +] + +[[package]] +name = "either" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" +dependencies = [ + "serde", +] + +[[package]] +name = "elliptic-curve" +version = "0.13.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" +dependencies = [ + "base16ct", + "crypto-bigint", + "digest", + "ff", + "generic-array", + "group", + "pkcs8", + "rand_core", + "sec1", + "subtle", + "zeroize", +] + +[[package]] +name = "email-address-parser" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1840503695adadbe314fe6cedd297fbc406d13f0fe06fd28d02e499a17c2a599" +dependencies = [ + "console_error_panic_hook", + "pest", + "pest_derive", + "quick-xml", + "wasm-bindgen", +] + +[[package]] +name = "email-send" +version = "0.0.1" +dependencies = [ + "base64 0.13.1", + "chirp-client", + "chirp-worker", + "lazy_static", + "prost 0.10.4", + "reqwest", + "rivet-operation", + "serde", + "serde_json", +] + +[[package]] +name = "email-verification-complete" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "debug-email-res", + "email-verification-create", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "email-verification-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "email-address-parser", + "email-send", + "faker-game", + "game-get", + "game-logo-upload-complete", + "prost 0.10.4", + "rand", + "reqwest", + "rivet-operation", + "serde_json", + "sqlx", + "upload-prepare", +] + +[[package]] +name = "encoding_rs" +version = "0.8.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "enum-as-inner" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" +dependencies = [ + "heck 0.4.1", + "proc-macro2", + "quote", + "syn 2.0.58", +] + +[[package]] +name = "equivalent" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" + +[[package]] +name = "erased-serde" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c" +dependencies = [ + "serde", +] + +[[package]] +name = "errno" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "etcetera" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" +dependencies = [ + "cfg-if", + "home", + "windows-sys 0.48.0", +] + +[[package]] +name = "event-listener" +version = "2.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" + +[[package]] +name = "external-request-validate" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "http 0.2.12", + "prost 0.10.4", + "reqwest", + "rivet-operation", + "serde", + "serde_json", + "sqlx", +] + +[[package]] +name = "external-worker" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "reqwest", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", +] + +[[package]] +name = "faker-build" +version = "0.0.1" +dependencies = [ + "build-create", + "chirp-client", + "chirp-worker", + "faker-game", + "prost 0.10.4", + "rivet-operation", + "uuid", +] + +[[package]] +name = "faker-cdn-site" +version = "0.0.1" +dependencies = [ + "cdn-site-create", + "chirp-client", + "chirp-worker", + "faker-game", + "prost 0.10.4", + "reqwest", + "rivet-operation", + "upload-complete", +] + +[[package]] +name = "faker-game" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "cloud-game-config-create", + "faker-game-namespace", + "faker-game-version", + "faker-team", + "game-create", + "game-get", + "mm-config-game-upsert", + "prost 0.10.4", + "rivet-operation", +] + +[[package]] +name = "faker-game-namespace" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "cloud-namespace-create", + "faker-game", + "game-namespace-create", + "prost 0.10.4", + "rivet-operation", +] + +[[package]] +name = "faker-game-version" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "cloud-version-publish", + "faker-build", + "faker-cdn-site", + "faker-game", + "faker-region", + "game-namespace-version-set", + "mm-config-version-get", + "prost 0.10.4", + "region-list", + "rivet-operation", + "rivet-util-mm", +] + +[[package]] +name = "faker-job-run" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-job-template", + "faker-region", + "job-run-get", + "prost 0.10.4", + "rivet-operation", +] + +[[package]] +name = "faker-job-template" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "nomad-client", + "prost 0.10.4", + "rivet-operation", + "rivet-util-job", +] + +[[package]] +name = "faker-mm-lobby" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-build", + "faker-game", + "faker-game-version", + "faker-region", + "game-namespace-version-set", + "game-resolve-namespace-id", + "mm-config-version-get", + "prost 0.10.4", + "rivet-operation", + "rivet-util-mm", +] + +[[package]] +name = "faker-mm-lobby-row" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "prost 0.10.4", + "rivet-operation", + "rivet-util-mm", +] + +[[package]] +name = "faker-mm-player" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "token-create", +] + +[[package]] +name = "faker-region" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "region-get", + "region-list", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "faker-team" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-user", + "prost 0.10.4", + "rivet-operation", + "team-get", +] + +[[package]] +name = "faker-user" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "user-get", +] + +[[package]] +name = "fastrand" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" +dependencies = [ + "instant", +] + +[[package]] +name = "fastrand" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984" + +[[package]] +name = "fcm" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d8d0da8a6bd63bdec888b6d7a87c5698230005c1800823d28ddd5adb6f2550f" +dependencies = [ + "chrono", + "erased-serde", + "log", + "reqwest", + "serde", + "serde_json", +] + +[[package]] +name = "ff" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" +dependencies = [ + "rand_core", + "subtle", +] + +[[package]] +name = "fiat-crypto" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c007b1ae3abe1cb6f85a16305acd418b7ca6343b953633fee2b76d8f108b830f" + +[[package]] +name = "finl_unicode" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6" + +[[package]] +name = "fixedbitset" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" + +[[package]] +name = "flate2" +version = "1.0.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" +dependencies = [ + "crc32fast", + "miniz_oxide", +] + +[[package]] +name = "flume" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" +dependencies = [ + "futures-core", + "futures-sink", + "spin 0.9.8", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + +[[package]] +name = "form_urlencoded" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "formatted-error" +version = "0.1.0" +dependencies = [ + "gray_matter", + "hashbrown 0.12.3", + "http 0.2.12", + "indoc", + "lazy_static", + "serde", +] + +[[package]] +name = "funty" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7" + +[[package]] +name = "futures" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" + +[[package]] +name = "futures-executor" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-intrusive" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" +dependencies = [ + "futures-core", + "lock_api", + "parking_lot 0.12.1", +] + +[[package]] +name = "futures-io" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" + +[[package]] +name = "futures-macro" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.58", +] + +[[package]] +name = "futures-sink" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" + +[[package]] +name = "futures-task" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" + +[[package]] +name = "futures-timer" +version = "3.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" + +[[package]] +name = "futures-util" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", +] + +[[package]] +name = "game-banner-upload-complete" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "prost 0.10.4", + "reqwest", + "rivet-operation", + "sqlx", + "upload-complete", + "upload-get", + "upload-prepare", +] + +[[package]] +name = "game-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-team", + "game-validate", + "prost 0.10.4", + "rivet-operation", + "rivet-util-team", + "sqlx", + "team-get", +] + +[[package]] +name = "game-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-team", + "game-create", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "upload-file-list", + "upload-get", +] + +[[package]] +name = "game-list-all" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-list-for-team" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "faker-team", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-logo-upload-complete" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "prost 0.10.4", + "reqwest", + "rivet-operation", + "sqlx", + "upload-complete", + "upload-get", + "upload-prepare", +] + +[[package]] +name = "game-namespace-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "game-namespace-validate", + "game-version-create", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-namespace-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "game-namespace-create", + "game-version-create", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-namespace-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "game-namespace-create", + "game-version-create", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-namespace-resolve-name-id" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "faker-game-namespace", + "game-namespace-get", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-namespace-resolve-url" +version = "0.0.1" +dependencies = [ + "cdn-namespace-domain-create", + "cdn-namespace-resolve-domain", + "chirp-client", + "chirp-worker", + "faker-game", + "game-get", + "game-namespace-get", + "game-namespace-list", + "game-namespace-resolve-name-id", + "game-resolve-name-id", + "prost 0.10.4", + "rivet-operation", + "url", +] + +[[package]] +name = "game-namespace-validate" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "game-namespace-resolve-name-id", + "prost 0.10.4", + "rivet-operation", +] + +[[package]] +name = "game-namespace-version-history-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-namespace-version-set" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "game-get", + "game-resolve-namespace-id", + "game-version-create", + "mm-lobby-idle-update", + "prost 0.10.4", + "region-list-for-game", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-recommend" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-resolve-name-id" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "game-get", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-resolve-namespace-id" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "game-namespace-create", + "game-version-create", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-token-development-validate" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", +] + +[[package]] +name = "game-user-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "game-user-get", + "prost 0.10.4", + "rivet-operation", + "rivet-util-game-user", + "sqlx", + "token-create", +] + +[[package]] +name = "game-user-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "game-user-create", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-user-link-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "game-user-create", + "game-user-get", + "game-user-link-get", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "token-create", +] + +[[package]] +name = "game-user-link-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "game-user-create", + "game-user-link-create", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-user-list-for-user" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "game-user-create", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-user-recent-session-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "faker-game", + "game-namespace-create", + "game-user-create", + "game-version-create", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-user-recommend" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", +] + +[[package]] +name = "game-user-worker" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "game-user-create", + "game-user-get", + "game-user-link-create", + "game-user-link-get", + "rivet-claims", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", + "rivet-util-game-user", + "sqlx", + "token-create", + "token-exchange", + "token-revoke", +] + +[[package]] +name = "game-validate" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "game-resolve-name-id", + "prost 0.10.4", + "rivet-operation", +] + +[[package]] +name = "game-version-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "game-version-get", + "game-version-list", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-version-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "game-version-create", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-version-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "game-version-create", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "game-version-validate" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "external-request-validate", + "faker-game", + "game-version-get", + "game-version-list", + "mm-config-game-get", + "module-version-get", + "prost 0.10.4", + "region-get", + "rivet-operation", + "rivet-util-mm", + "tier-list", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", + "zeroize", +] + +[[package]] +name = "geoutils" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e006f616a407d396ace1d2ebb3f43ed73189db8b098079bd129928d7645dd1e" + +[[package]] +name = "getrandom" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.11.0+wasi-snapshot-preview1", +] + +[[package]] +name = "gimli" +version = "0.28.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" + +[[package]] +name = "global-error" +version = "0.1.5" +dependencies = [ + "async-trait", + "formatted-error", + "http 0.2.12", + "reqwest", + "serde", + "serde_json", + "thiserror", + "types", +] + +[[package]] +name = "governor" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b" +dependencies = [ + "cfg-if", + "dashmap", + "futures", + "futures-timer", + "no-std-compat", + "nonzero_ext", + "parking_lot 0.12.1", + "portable-atomic", + "quanta", + "rand", + "smallvec", + "spinning_top", +] + +[[package]] +name = "gray_matter" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cf2fb99fac0b821a4e61c61abff076324bb0e5c3b4a83815bbc3518a38971ad" +dependencies = [ + "serde", + "serde_json", + "toml 0.5.11", + "yaml-rust", +] + +[[package]] +name = "group" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" +dependencies = [ + "ff", + "rand_core", + "subtle", +] + +[[package]] +name = "h2" +version = "0.3.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" +dependencies = [ + "bytes", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http 0.2.12", + "indexmap 2.2.6", + "slab", + "tokio", + "tokio-util 0.7.10", + "tracing", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" +dependencies = [ + "ahash 0.7.8", +] + +[[package]] +name = "hashbrown" +version = "0.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" +dependencies = [ + "ahash 0.8.11", + "allocator-api2", +] + +[[package]] +name = "hashlink" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" +dependencies = [ + "hashbrown 0.14.3", +] + +[[package]] +name = "hdrhistogram" +version = "7.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d" +dependencies = [ + "base64 0.21.7", + "byteorder", + "flate2", + "nom", + "num-traits", +] + +[[package]] +name = "headers" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" +dependencies = [ + "base64 0.21.7", + "bytes", + "headers-core", + "http 0.2.12", + "httpdate", + "mime", + "sha1", +] + +[[package]] +name = "headers-core" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" +dependencies = [ + "http 0.2.12", +] + +[[package]] +name = "heck" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" +dependencies = [ + "unicode-segmentation", +] + +[[package]] +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" +dependencies = [ + "unicode-segmentation", +] + +[[package]] +name = "hermit-abi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + +[[package]] +name = "hkdf" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" +dependencies = [ + "hmac", +] + +[[package]] +name = "hmac" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" +dependencies = [ + "digest", +] + +[[package]] +name = "home" +version = "0.5.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" +dependencies = [ + "windows-sys 0.52.0", +] + +[[package]] +name = "hostname" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" +dependencies = [ + "libc", + "match_cfg", + "winapi", +] + +[[package]] +name = "http" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" +dependencies = [ + "bytes", + "fnv", + "itoa 1.0.11", +] + +[[package]] +name = "http" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" +dependencies = [ + "bytes", + "fnv", + "itoa 1.0.11", +] + +[[package]] +name = "http-body" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" +dependencies = [ + "bytes", + "http 0.2.12", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" + +[[package]] +name = "httpdate" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + +[[package]] +name = "humantime" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" + +[[package]] +name = "hyper" +version = "0.14.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" +dependencies = [ + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "h2", + "http 0.2.12", + "http-body", + "httparse", + "httpdate", + "itoa 1.0.11", + "pin-project-lite", + "socket2 0.5.6", + "tokio", + "tower-service", + "tracing", + "want", +] + +[[package]] +name = "hyper-rustls" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f9f7a97316d44c0af9b0301e65010573a853a9fc97046d7331d7f6bc0fd5a64" +dependencies = [ + "ct-logs", + "futures-util", + "hyper", + "log", + "rustls 0.19.1", + "rustls-native-certs 0.5.0", + "tokio", + "tokio-rustls 0.22.0", + "webpki 0.21.4", +] + +[[package]] +name = "hyper-rustls" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" +dependencies = [ + "http 0.2.12", + "hyper", + "log", + "rustls 0.20.9", + "rustls-native-certs 0.6.3", + "tokio", + "tokio-rustls 0.23.4", + "webpki-roots 0.22.6", +] + +[[package]] +name = "hyper-rustls" +version = "0.24.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" +dependencies = [ + "futures-util", + "http 0.2.12", + "hyper", + "rustls 0.21.10", + "tokio", + "tokio-rustls 0.24.1", +] + +[[package]] +name = "hyper-timeout" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1" +dependencies = [ + "hyper", + "pin-project-lite", + "tokio", + "tokio-io-timeout", +] + +[[package]] +name = "hyper-tls" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" +dependencies = [ + "bytes", + "hyper", + "native-tls", + "tokio", + "tokio-native-tls", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "wasm-bindgen", + "windows-core", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "identity-config-namespace-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "identity-config-namespace-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "identity-config-namespace-create", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "identity-config-version-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "faker-game-version", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "identity-config-version-prepare" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "prost 0.10.4", + "rivet-operation", +] + +[[package]] +name = "identity-config-version-publish" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "identity-config-version-get", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "idna" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "idna" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "include_dir" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18762faeff7122e89e0857b02f7ce6fcc0d101d5e9ad2ad7846cc01d61b7f19e" +dependencies = [ + "include_dir_macros", +] + +[[package]] +name = "include_dir_macros" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b139284b5cf57ecfa712bcc66950bb635b31aff41c188e8a4cfc758eca374a3f" +dependencies = [ + "proc-macro2", + "quote", +] + +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown 0.12.3", + "serde", +] + +[[package]] +name = "indexmap" +version = "2.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" +dependencies = [ + "equivalent", + "hashbrown 0.14.3", +] + +[[package]] +name = "indoc" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" + +[[package]] +name = "inout" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" +dependencies = [ + "generic-array", +] + +[[package]] +name = "instant" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "ip-info" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "prost 0.10.4", + "reqwest", + "rivet-operation", + "serde", + "serde_json", + "sqlx", +] + +[[package]] +name = "ipconfig" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" +dependencies = [ + "socket2 0.5.6", + "widestring", + "windows-sys 0.48.0", + "winreg", +] + +[[package]] +name = "ipnet" +version = "2.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" +dependencies = [ + "serde", +] + +[[package]] +name = "ipnetwork" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf466541e9d546596ee94f9f69590f89473455f88372423e0008fc1a7daf100e" +dependencies = [ + "serde", +] + +[[package]] +name = "itertools" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" +dependencies = [ + "either", +] + +[[package]] +name = "itertools" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" + +[[package]] +name = "itoa" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" + +[[package]] +name = "job-gc" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "faker-job-run", + "futures-util", + "indoc", + "job-run-get", + "lazy_static", + "mm-lobby-for-run-id", + "mm-lobby-get", + "nomad-client", + "nomad-util", + "prost 0.10.4", + "rivet-connection", + "rivet-health-checks", + "rivet-metrics", + "rivet-operation", + "rivet-pools", + "rivet-runtime", + "serde_json", + "sqlx", + "tokio", + "tracing", + "tracing-subscriber", + "uuid", +] + +[[package]] +name = "job-log-read" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "clickhouse", + "prost 0.10.4", + "rivet-operation", + "serde", +] + +[[package]] +name = "job-log-worker" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "clickhouse", + "reqwest", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", + "s3-util", + "serde", + "upload-complete", + "upload-prepare", +] + +[[package]] +name = "job-run-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "faker-job-run", + "nomad-client", + "nomad-util", + "prost 0.10.4", + "rivet-operation", + "rivet-util-job", + "sqlx", +] + +[[package]] +name = "job-run-metrics-log" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-job-run", + "faker-job-template", + "indoc", + "job-run-get", + "lazy_static", + "reqwest", + "rivet-operation", + "rivet-util-job", + "serde", + "serde_urlencoded", +] + +[[package]] +name = "job-run-worker" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "cjson", + "faker-job-run", + "faker-job-template", + "faker-region", + "hex", + "job-run-get", + "lazy_static", + "nomad-client", + "nomad-util", + "nomad_client", + "rand", + "region-get", + "reqwest", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", + "rivet-util-job", + "rustls 0.20.9", + "serde", + "sha2", + "sqlx", + "token-create", + "webpki 0.22.4", + "webpki-roots 0.22.6", +] + +[[package]] +name = "js-sys" +version = "0.3.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" +dependencies = [ + "wasm-bindgen", +] + +[[package]] +name = "jsonwebtoken" +version = "8.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378" +dependencies = [ + "base64 0.21.7", + "pem", + "ring 0.16.20", + "serde", + "serde_json", + "simple_asn1", +] + +[[package]] +name = "kv-config-namespace-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "kv-config-namespace-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "kv-config-namespace-create", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "kv-config-version-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "faker-game-version", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "kv-config-version-prepare" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "prost 0.10.4", + "rivet-operation", +] + +[[package]] +name = "kv-config-version-publish" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "kv-config-version-get", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "kv-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "kv-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", +] + +[[package]] +name = "kv-worker" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "kv-get", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", + "rivet-util-kv", +] + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" +dependencies = [ + "spin 0.5.2", +] + +[[package]] +name = "libc" +version = "0.2.153" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" + +[[package]] +name = "libm" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" + +[[package]] +name = "libsqlite3-sys" +version = "0.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716" +dependencies = [ + "cc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "libssh2-sys" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dc8a030b787e2119a731f1951d6a773e2280c660f8ec4b0f5e1505a386e71ee" +dependencies = [ + "cc", + "libc", + "libz-sys", + "openssl-sys", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "libz-sys" +version = "1.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e143b5e666b2695d28f6bca6497720813f699c9602dd7f5cac91008b8ada7f9" +dependencies = [ + "cc", + "libc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "linked-hash-map" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" + +[[package]] +name = "linode-gc" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "reqwest", + "rivet-connection", + "rivet-health-checks", + "rivet-metrics", + "rivet-operation", + "rivet-runtime", + "rivet-util-cluster", + "rivet-util-linode", + "serde", + "serde_json", + "sqlx", + "tokio", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "linode-instance-type-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "rivet-operation", + "rivet-util-cluster", + "rivet-util-linode", + "sqlx", +] + +[[package]] +name = "linode-server-destroy" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "cluster-datacenter-get", + "linode-server-provision", + "reqwest", + "rivet-operation", + "rivet-util-cluster", + "rivet-util-linode", + "sqlx", +] + +[[package]] +name = "linode-server-provision" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "cluster-datacenter-get", + "linode-server-destroy", + "reqwest", + "rivet-operation", + "rivet-util-cluster", + "rivet-util-linode", + "sqlx", +] + +[[package]] +name = "linode-worker" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "cluster-datacenter-get", + "rivet-convert", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", + "rivet-util-cluster", + "rivet-util-linode", + "sqlx", +] + +[[package]] +name = "linux-raw-sys" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" + +[[package]] +name = "load-test-api-cloud" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "faker-team", + "reqwest", + "rivet-api", + "rivet-connection", + "rivet-operation", + "rivet-runtime", + "token-create", + "tokio", + "tracing", + "tracing-subscriber", + "user-identity-create", +] + +[[package]] +name = "load-test-mm" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "cloud-namespace-token-public-create", + "faker-build", + "faker-game", + "faker-game-namespace", + "faker-game-version", + "faker-region", + "mm-config-namespace-config-set", + "mm-lobby-list-for-namespace", + "mm-lobby-player-count", + "mm-player-count-for-namespace", + "region-get", + "reqwest", + "rivet-api", + "rivet-claims", + "rivet-connection", + "rivet-operation", + "rivet-runtime", + "token-create", + "tokio", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "load-test-mm-sustain" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-build", + "faker-game", + "faker-game-namespace", + "faker-game-version", + "faker-region", + "faker-team", + "game-namespace-version-set", + "job-run-get", + "mm-config-version-get", + "mm-lobby-get", + "rand", + "reqwest", + "rivet-api", + "rivet-connection", + "rivet-operation", + "rivet-runtime", + "rivet-util-mm", + "token-create", + "tokio", + "tracing", + "tracing-subscriber", + "user-identity-create", +] + +[[package]] +name = "load-test-sqlx" +version = "0.0.1" +dependencies = [ + "cdn-namespace-get", + "cdn-version-get", + "chirp-client", + "chirp-worker", + "mm-config-version-get", + "rivet-connection", + "rivet-health-checks", + "rivet-metrics", + "rivet-operation", + "rivet-runtime", + "sqlx", + "tokio", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "load-test-watch-requests" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "faker-team", + "reqwest", + "rivet-api", + "rivet-connection", + "rivet-operation", + "rivet-runtime", + "token-create", + "tokio", + "tracing", + "tracing-subscriber", + "user-identity-create", +] + +[[package]] +name = "lock_api" +version = "0.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" +dependencies = [ + "autocfg", + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" + +[[package]] +name = "lru-cache" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" +dependencies = [ + "linked-hash-map", +] + +[[package]] +name = "lz4" +version = "1.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e9e2dd86df36ce760a60f6ff6ad526f7ba1f14ba0356f8254fb6905e6494df1" +dependencies = [ + "libc", + "lz4-sys", +] + +[[package]] +name = "lz4-sys" +version = "1.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57d27b317e207b10f69f5e75494119e391a96f48861ae870d1da6edac98ca900" +dependencies = [ + "cc", + "libc", +] + +[[package]] +name = "maplit" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" + +[[package]] +name = "match_cfg" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" + +[[package]] +name = "matchers" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" +dependencies = [ + "regex-automata 0.1.10", +] + +[[package]] +name = "matchit" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" + +[[package]] +name = "md-5" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" +dependencies = [ + "cfg-if", + "digest", +] + +[[package]] +name = "memchr" +version = "2.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "mime_guess" +version = "2.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" +dependencies = [ + "mime", + "unicase", +] + +[[package]] +name = "minimal-lexical" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" + +[[package]] +name = "miniz_oxide" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" +dependencies = [ + "adler", +] + +[[package]] +name = "mio" +version = "0.8.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" +dependencies = [ + "libc", + "wasi 0.11.0+wasi-snapshot-preview1", + "windows-sys 0.48.0", +] + +[[package]] +name = "mm-config-game-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "mm-config-game-upsert" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "mm-config-lobby-group-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "faker-game-version", + "mm-config-version-get", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "mm-config-lobby-group-resolve-name-id" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-build", + "faker-game", + "faker-game-version", + "faker-region", + "prost 0.10.4", + "rivet-operation", + "rivet-util-mm", + "sqlx", +] + +[[package]] +name = "mm-config-lobby-group-resolve-version" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "faker-game-version", + "mm-config-version-get", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "mm-config-namespace-config-set" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "mm-config-namespace-config-validate", + "mm-config-namespace-get", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "mm-config-namespace-config-validate" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", +] + +[[package]] +name = "mm-config-namespace-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "mm-config-namespace-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "mm-config-namespace-create", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "mm-config-version-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-build", + "faker-game", + "faker-region", + "mm-config-version-prepare", + "mm-config-version-publish", + "prost 0.10.4", + "rivet-operation", + "rivet-util-mm", + "sqlx", +] + +[[package]] +name = "mm-config-version-prepare" +version = "0.0.1" +dependencies = [ + "build-get", + "chirp-client", + "chirp-worker", + "faker-build", + "faker-game", + "faker-region", + "heck 0.3.3", + "nomad-client", + "prost 0.10.4", + "region-get", + "reqwest", + "rivet-operation", + "rivet-util-build", + "rivet-util-job", + "rivet-util-mm", + "s3-util", + "sqlx", + "tier-list", + "upload-get", +] + +[[package]] +name = "mm-config-version-publish" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-build", + "faker-game", + "faker-region", + "mm-config-version-prepare", + "prost 0.10.4", + "rivet-operation", + "rivet-util-mm", + "sqlx", +] + +[[package]] +name = "mm-dev-player-token-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "token-create", +] + +[[package]] +name = "mm-gc" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "faker-mm-lobby", + "futures-util", + "indoc", + "lazy_static", + "mm-lobby-get", + "prost 0.10.4", + "region-list", + "rivet-connection", + "rivet-health-checks", + "rivet-metrics", + "rivet-operation", + "rivet-pools", + "rivet-runtime", + "rivet-util-mm", + "sqlx", + "tokio", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "mm-lobby-find-fail" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "rivet-util-mm", +] + +[[package]] +name = "mm-lobby-find-lobby-query-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "rivet-util-mm", +] + +[[package]] +name = "mm-lobby-find-try-complete" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "prost 0.10.4", + "rivet-operation", + "rivet-util-mm", +] + +[[package]] +name = "mm-lobby-for-run-id" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-mm-lobby", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "mm-lobby-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "faker-mm-lobby", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "mm-lobby-history" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "faker-mm-lobby-row", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "mm-lobby-idle-update" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "faker-build", + "faker-game", + "faker-game-version", + "faker-region", + "game-namespace-get", + "game-namespace-version-set", + "lazy_static", + "mm-config-version-get", + "mm-lobby-get", + "prost 0.10.4", + "rivet-operation", + "rivet-util-mm", + "sqlx", +] + +[[package]] +name = "mm-lobby-list-for-namespace" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-mm-lobby", + "prost 0.10.4", + "rivet-operation", + "rivet-util-mm", + "sqlx", +] + +[[package]] +name = "mm-lobby-list-for-user-id" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-mm-lobby", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "mm-lobby-player-count" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-mm-lobby", + "prost 0.10.4", + "rivet-operation", + "rivet-util-mm", + "sqlx", +] + +[[package]] +name = "mm-lobby-runtime-aggregate" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "faker-game", + "faker-game-version", + "faker-mm-lobby", + "faker-mm-lobby-row", + "faker-region", + "mm-config-lobby-group-resolve-version", + "mm-config-version-get", + "prost 0.10.4", + "rivet-operation", + "rivet-util-mm", + "sqlx", +] + +[[package]] +name = "mm-lobby-state-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-mm-lobby", + "prost 0.10.4", + "rivet-operation", + "rivet-util-mm", + "sqlx", +] + +[[package]] +name = "mm-player-count-for-namespace" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-mm-lobby", + "prost 0.10.4", + "rivet-operation", + "rivet-util-mm", + "sqlx", +] + +[[package]] +name = "mm-player-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-mm-lobby", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "mm-worker" +version = "0.0.1" +dependencies = [ + "build-get", + "chirp-client", + "chirp-worker", + "chrono", + "csv", + "faker-build", + "faker-game", + "faker-game-namespace", + "faker-game-version", + "faker-mm-lobby", + "faker-region", + "faker-user", + "game-get", + "game-namespace-get", + "game-namespace-version-set", + "game-version-get", + "heck 0.3.3", + "http 0.2.12", + "job-run-get", + "lazy_static", + "maplit", + "mm-config-game-get", + "mm-config-lobby-group-resolve-version", + "mm-config-namespace-config-set", + "mm-config-namespace-get", + "mm-config-version-get", + "mm-lobby-find-fail", + "mm-lobby-find-lobby-query-list", + "mm-lobby-find-try-complete", + "mm-lobby-get", + "mm-lobby-idle-update", + "mm-lobby-player-count", + "mm-lobby-state-get", + "mm-player-count-for-namespace", + "nomad-client", + "nomad-util", + "redis-util", + "regex", + "region-get", + "reqwest", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", + "rivet-util-build", + "rivet-util-job", + "rivet-util-mm", + "s3-util", + "serde", + "sqlx", + "team-get", + "tier-list", + "token-create", + "upload-complete", + "upload-get", + "upload-prepare", + "user-identity-create", +] + +[[package]] +name = "module-game-version-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "faker-game-version", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "module-game-version-prepare" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "prost 0.10.4", + "rivet-operation", +] + +[[package]] +name = "module-game-version-publish" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-game", + "itertools 0.10.5", + "module-game-version-get", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "module-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rand", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "module-instance-call" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "module-instance-get", + "module-version-get", + "prost 0.10.4", + "rand", + "reqwest", + "rivet-operation", + "serde", + "sqlx", +] + +[[package]] +name = "module-instance-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rand", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "module-ns-instance-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rand", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "module-version-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "module-get", + "prost 0.10.4", + "rand", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "module-worker" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "faker-game", + "faker-game-version", + "module-game-version-get", + "module-instance-get", + "module-version-get", + "reqwest", + "rivet-convert", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", + "rivet-util-module", + "serde", + "sqlx", + "upload-get", + "upload-prepare", +] + +[[package]] +name = "monolith-worker" +version = "0.0.1" +dependencies = [ + "cdn-worker", + "cf-custom-hostname-worker", + "chirp-client", + "cloud-worker", + "cluster-worker", + "external-worker", + "game-user-worker", + "job-log-worker", + "job-run-worker", + "kv-worker", + "linode-worker", + "mm-worker", + "module-worker", + "push-notification-worker", + "rivet-connection", + "rivet-health-checks", + "rivet-metrics", + "rivet-operation", + "rivet-runtime", + "team-invite-worker", + "team-worker", + "tokio", + "tracing", + "tracing-subscriber", + "upload-worker", + "user-dev-worker", + "user-follow-worker", + "user-presence-worker", + "user-report-worker", + "user-worker", +] + +[[package]] +name = "multimap" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" + +[[package]] +name = "native-tls" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" +dependencies = [ + "lazy_static", + "libc", + "log", + "openssl", + "openssl-probe", + "openssl-sys", + "schannel", + "security-framework", + "security-framework-sys", + "tempfile", +] + +[[package]] +name = "nkeys" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aad178aad32087b19042ee36dfd450b73f5f934fbfb058b59b198684dfec4c47" +dependencies = [ + "byteorder", + "data-encoding", + "ed25519", + "ed25519-dalek", + "getrandom", + "log", + "rand", + "signatory", +] + +[[package]] +name = "no-std-compat" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c" + +[[package]] +name = "nom" +version = "7.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" +dependencies = [ + "memchr", + "minimal-lexical", +] + +[[package]] +name = "nomad-client" +version = "0.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1548b7290f5a088b0e1069fb41e2d91a5c2c143b1a26bd9327c0fa4a17216bab" +dependencies = [ + "reqwest", + "serde", + "serde_derive", + "serde_json", + "url", +] + +[[package]] +name = "nomad-monitor" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "futures-util", + "indoc", + "lazy_static", + "nomad-util", + "nomad_client", + "prost 0.10.4", + "rivet-connection", + "rivet-health-checks", + "rivet-metrics", + "rivet-operation", + "rivet-pools", + "rivet-runtime", + "rivet-util-job", + "serde", + "serde_json", + "tokio", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "nomad-util" +version = "0.1.0" +dependencies = [ + "base64 0.13.1", + "bytes", + "futures-util", + "nomad-client", + "nomad_client", + "reqwest", + "rivet-pools", + "serde", + "serde_json", + "thiserror", + "tokio", + "tracing", +] + +[[package]] +name = "nomad_client" +version = "1.1.4" +source = "git+https://github.com/rivet-gg/nomad-client?rev=abb66bf0c30c7ff5b0c695dae952481c33e538b5#abb66bf0c30c7ff5b0c695dae952481c33e538b5" +dependencies = [ + "reqwest", + "serde", + "serde_derive", + "serde_json", + "url", +] + +[[package]] +name = "nonzero_ext" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" + +[[package]] +name = "nsfw-image-score" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "reqwest", + "rivet-operation", + "serde", +] + +[[package]] +name = "nu-ansi-term" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" +dependencies = [ + "overload", + "winapi", +] + +[[package]] +name = "nuid" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc895af95856f929163a0aa20c26a78d26bfdc839f51b9d5aa7a5b79e52b7e83" +dependencies = [ + "rand", +] + +[[package]] +name = "num-bigint" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-bigint-dig" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" +dependencies = [ + "byteorder", + "lazy_static", + "libm", + "num-integer", + "num-iter", + "num-traits", + "rand", + "smallvec", + "zeroize", +] + +[[package]] +name = "num-conv" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" + +[[package]] +name = "num-integer" +version = "0.1.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-iter" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" +dependencies = [ + "autocfg", + "libm", +] + +[[package]] +name = "num_cpus" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "object" +version = "0.32.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" +dependencies = [ + "memchr", +] + +[[package]] +name = "once_cell" +version = "1.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" + +[[package]] +name = "openssl" +version = "0.10.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" +dependencies = [ + "bitflags 2.5.0", + "cfg-if", + "foreign-types", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.58", +] + +[[package]] +name = "openssl-probe" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" + +[[package]] +name = "openssl-sys" +version = "0.9.102" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" +dependencies = [ + "cc", + "libc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "outref" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f222829ae9293e33a9f5e9f440c6760a3d450a64affe1846486b140db81c1f4" + +[[package]] +name = "overload" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" + +[[package]] +name = "p256" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" +dependencies = [ + "ecdsa", + "elliptic-curve", + "primeorder", + "sha2", +] + +[[package]] +name = "p384" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209" +dependencies = [ + "ecdsa", + "elliptic-curve", + "primeorder", + "sha2", +] + +[[package]] +name = "p521" +version = "0.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2" +dependencies = [ + "base16ct", + "ecdsa", + "elliptic-curve", + "primeorder", + "rand_core", + "sha2", +] + +[[package]] +name = "parking_lot" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" +dependencies = [ + "instant", + "lock_api", + "parking_lot_core 0.8.6", +] + +[[package]] +name = "parking_lot" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" +dependencies = [ + "lock_api", + "parking_lot_core 0.9.9", +] + +[[package]] +name = "parking_lot_core" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" +dependencies = [ + "cfg-if", + "instant", + "libc", + "redox_syscall 0.2.16", + "smallvec", + "winapi", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall 0.4.1", + "smallvec", + "windows-targets 0.48.5", +] + +[[package]] +name = "paste" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" + +[[package]] +name = "pem" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" +dependencies = [ + "base64 0.13.1", +] + +[[package]] +name = "pem-rfc7468" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" +dependencies = [ + "base64ct", +] + +[[package]] +name = "percent-encoding" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" + +[[package]] +name = "perf-log-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", +] + +[[package]] +name = "pest" +version = "2.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "311fb059dee1a7b802f036316d790138c613a4e8b180c822e3925a662e9f0c95" +dependencies = [ + "memchr", + "thiserror", + "ucd-trie", +] + +[[package]] +name = "pest_derive" +version = "2.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f73541b156d32197eecda1a4014d7f868fd2bcb3c550d5386087cfba442bf69c" +dependencies = [ + "pest", + "pest_generator", +] + +[[package]] +name = "pest_generator" +version = "2.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c35eeed0a3fab112f75165fdc026b3913f4183133f19b49be773ac9ea966e8bd" +dependencies = [ + "pest", + "pest_meta", + "proc-macro2", + "quote", + "syn 2.0.58", +] + +[[package]] +name = "pest_meta" +version = "2.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2adbf29bb9776f28caece835398781ab24435585fe0d4dc1374a61db5accedca" +dependencies = [ + "once_cell", + "pest", + "sha2", +] + +[[package]] +name = "petgraph" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" +dependencies = [ + "fixedbitset", + "indexmap 2.2.6", +] + +[[package]] +name = "pin-project" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" +dependencies = [ + "pin-project-internal", +] + +[[package]] +name = "pin-project-internal" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.58", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "pkcs1" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" +dependencies = [ + "der", + "pkcs8", + "spki", +] + +[[package]] +name = "pkcs8" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" +dependencies = [ + "der", + "spki", +] + +[[package]] +name = "pkg-config" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" + +[[package]] +name = "platforms" +version = "3.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db23d408679286588f4d4644f965003d056e3dd5abcaaa938116871d7ce2fee7" + +[[package]] +name = "portable-atomic" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" + +[[package]] +name = "posthog-core" +version = "0.1.0" +source = "git+https://github.com/rivet-gg/posthog-rs.git?rev=ef4e80e#ef4e80e57747ea7204794bce9a103bfeccefabf1" +dependencies = [ + "chrono", + "serde", + "serde_json", + "thiserror", +] + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "ppv-lite86" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" + +[[package]] +name = "prettyplease" +version = "0.1.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86" +dependencies = [ + "proc-macro2", + "syn 1.0.109", +] + +[[package]] +name = "primeorder" +version = "0.13.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" +dependencies = [ + "elliptic-curve", +] + +[[package]] +name = "proc-macro-error" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" +dependencies = [ + "proc-macro-error-attr", + "proc-macro2", + "quote", + "syn 1.0.109", + "version_check", +] + +[[package]] +name = "proc-macro-error-attr" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" +dependencies = [ + "proc-macro2", + "quote", + "version_check", +] + +[[package]] +name = "proc-macro2" +version = "1.0.79" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "profanity-check" +version = "0.0.1" +dependencies = [ + "censor", + "chirp-client", + "chirp-worker", + "lazy_static", + "prost 0.10.4", + "rivet-operation", +] + +[[package]] +name = "prometheus" +version = "0.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "449811d15fbdf5ceb5c1144416066429cf82316e2ec8ce0c1f6f8a02e7bbcf8c" +dependencies = [ + "cfg-if", + "fnv", + "lazy_static", + "memchr", + "parking_lot 0.12.1", + "protobuf", + "thiserror", +] + +[[package]] +name = "prost" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71adf41db68aa0daaefc69bb30bcd68ded9b9abaad5d1fbb6304c4fb390e083e" +dependencies = [ + "bytes", + "prost-derive 0.10.1", +] + +[[package]] +name = "prost" +version = "0.11.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" +dependencies = [ + "bytes", + "prost-derive 0.11.9", +] + +[[package]] +name = "prost-build" +version = "0.11.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270" +dependencies = [ + "bytes", + "heck 0.4.1", + "itertools 0.10.5", + "lazy_static", + "log", + "multimap", + "petgraph", + "prettyplease", + "prost 0.11.9", + "prost-types 0.11.9", + "regex", + "syn 1.0.109", + "tempfile", + "which", +] + +[[package]] +name = "prost-derive" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b670f45da57fb8542ebdbb6105a925fe571b67f9e7ed9f47a06a84e72b4e7cc" +dependencies = [ + "anyhow", + "itertools 0.10.5", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "prost-derive" +version = "0.11.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" +dependencies = [ + "anyhow", + "itertools 0.10.5", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "prost-types" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d0a014229361011dc8e69c8a1ec6c2e8d0f2af7c91e3ea3f5b2170298461e68" +dependencies = [ + "bytes", + "prost 0.10.4", +] + +[[package]] +name = "prost-types" +version = "0.11.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13" +dependencies = [ + "prost 0.11.9", +] + +[[package]] +name = "protobuf" +version = "2.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" + +[[package]] +name = "push-notification-worker" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "fcm", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", + "serde", + "user-get", +] + +[[package]] +name = "quanta" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5" +dependencies = [ + "crossbeam-utils", + "libc", + "once_cell", + "raw-cpuid", + "wasi 0.11.0+wasi-snapshot-preview1", + "web-sys", + "winapi", +] + +[[package]] +name = "quick-error" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" + +[[package]] +name = "quick-xml" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3cc440ee4802a86e357165021e3e255a9143724da31db1e2ea540214c96a0f82" +dependencies = [ + "memchr", +] + +[[package]] +name = "quote" +version = "1.0.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom", +] + +[[package]] +name = "raw-cpuid" +version = "11.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d86a7c4638d42c44551f4791a20e687dbb4c3de1f33c43dd71e355cd429def1" +dependencies = [ + "bitflags 2.5.0", +] + +[[package]] +name = "redis" +version = "0.23.3" +source = "git+https://github.com/rivet-gg/redis-rs.git?rev=ac3e27fa1d133847db54354493f4d25957ad3466#ac3e27fa1d133847db54354493f4d25957ad3466" +dependencies = [ + "arc-swap", + "async-trait", + "bytes", + "combine", + "futures", + "futures-util", + "itoa 1.0.11", + "native-tls", + "percent-encoding", + "pin-project-lite", + "ryu", + "sha1_smol", + "socket2 0.4.10", + "tokio", + "tokio-native-tls", + "tokio-retry", + "tokio-util 0.7.10", + "url", +] + +[[package]] +name = "redis-util" +version = "0.1.0" +dependencies = [ + "lazy_static", + "redis", + "regex", +] + +[[package]] +name = "redox_syscall" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" +dependencies = [ + "bitflags 1.3.2", +] + +[[package]] +name = "redox_syscall" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" +dependencies = [ + "bitflags 1.3.2", +] + +[[package]] +name = "regex" +version = "1.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata 0.4.6", + "regex-syntax 0.8.3", +] + +[[package]] +name = "regex-automata" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" +dependencies = [ + "regex-syntax 0.6.29", +] + +[[package]] +name = "regex-automata" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax 0.8.3", +] + +[[package]] +name = "regex-syntax" +version = "0.6.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" + +[[package]] +name = "regex-syntax" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" + +[[package]] +name = "region-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "cluster-datacenter-get", + "cluster-datacenter-location-get", + "faker-region", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "region-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "cluster-datacenter-list", + "faker-region", + "prost 0.10.4", + "rivet-operation", + "rivet-util-cluster", + "sqlx", +] + +[[package]] +name = "region-list-for-game" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "cluster-datacenter-list", + "cluster-get-for-game", + "faker-region", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "region-recommend" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "geoutils", + "ip-info", + "prost 0.10.4", + "region-get", + "region-list", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "region-resolve" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "cluster-datacenter-get", + "faker-region", + "prost 0.10.4", + "region-get", + "region-list", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "region-resolve-for-game" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "cluster-datacenter-get", + "faker-region", + "prost 0.10.4", + "region-get", + "region-list-for-game", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "reqwest" +version = "0.11.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" +dependencies = [ + "base64 0.21.7", + "bytes", + "encoding_rs", + "futures-core", + "futures-util", + "h2", + "http 0.2.12", + "http-body", + "hyper", + "hyper-rustls 0.24.2", + "hyper-tls", + "ipnet", + "js-sys", + "log", + "mime", + "mime_guess", + "native-tls", + "once_cell", + "percent-encoding", + "pin-project-lite", + "rustls 0.21.10", + "rustls-pemfile", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "system-configuration", + "tokio", + "tokio-native-tls", + "tokio-rustls 0.24.1", + "tokio-util 0.7.10", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", + "webpki-roots 0.25.4", + "winreg", +] + +[[package]] +name = "resolv-conf" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" +dependencies = [ + "hostname", + "quick-error", +] + +[[package]] +name = "rfc6979" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" +dependencies = [ + "hmac", + "subtle", +] + +[[package]] +name = "ring" +version = "0.16.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" +dependencies = [ + "cc", + "libc", + "once_cell", + "spin 0.5.2", + "untrusted 0.7.1", + "web-sys", + "winapi", +] + +[[package]] +name = "ring" +version = "0.17.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" +dependencies = [ + "cc", + "cfg-if", + "getrandom", + "libc", + "spin 0.9.8", + "untrusted 0.9.0", + "windows-sys 0.52.0", +] + +[[package]] +name = "rivet-api" +version = "0.0.1" +dependencies = [ + "reqwest", + "serde", + "serde_derive", + "serde_json", + "serde_with", + "url", + "uuid", +] + +[[package]] +name = "rivet-auth" +version = "0.0.1" +dependencies = [ + "aws-smithy-client 0.41.0", + "aws-smithy-http 0.41.0", + "aws-smithy-json", + "aws-smithy-types 0.41.0", + "bytes", + "http 0.2.12", + "tower", +] + +[[package]] +name = "rivet-auth-server" +version = "0.0.1" +dependencies = [ + "chrono", + "serde", + "serde_json", +] + +[[package]] +name = "rivet-cache" +version = "0.1.0" +dependencies = [ + "futures-util", + "global-error", + "lazy_static", + "prost 0.10.4", + "prost-types 0.10.1", + "redis", + "rivet-cache-result", + "rivet-metrics", + "rivet-pools", + "rivet-util", + "serde", + "thiserror", + "tokio", + "tracing", + "types", + "uuid", +] + +[[package]] +name = "rivet-cache-result" +version = "0.1.0" +dependencies = [ + "rivet-util", +] + +[[package]] +name = "rivet-cf-verification" +version = "0.0.1" +dependencies = [ + "aws-smithy-client 0.41.0", + "aws-smithy-http 0.41.0", + "aws-smithy-json", + "aws-smithy-types 0.41.0", + "bytes", + "http 0.2.12", + "tower", +] + +[[package]] +name = "rivet-cf-verification-server" +version = "0.0.1" +dependencies = [ + "chrono", + "serde", + "serde_json", +] + +[[package]] +name = "rivet-claims" +version = "0.1.0" +dependencies = [ + "base64 0.13.1", + "global-error", + "jsonwebtoken", + "lazy_static", + "prost 0.10.4", + "rivet-util", + "serde", + "serde_json", + "thiserror", + "types", + "uuid", +] + +[[package]] +name = "rivet-connection" +version = "0.1.0" +dependencies = [ + "chirp-client", + "chirp-perf", + "global-error", + "rivet-cache", + "rivet-pools", + "rivet-util", + "tracing", +] + +[[package]] +name = "rivet-convert" +version = "0.1.0" +dependencies = [ + "cdn-namespace-get", + "chirp-client", + "chrono", + "game-get", + "game-namespace-get", + "game-namespace-list", + "game-resolve-namespace-id", + "game-token-development-validate", + "game-user-get", + "game-user-link-get", + "game-validate", + "game-version-validate", + "job-run-metrics-log", + "kv-list", + "mm-lobby-player-count", + "mm-lobby-runtime-aggregate", + "mm-player-count-for-namespace", + "region-get", + "region-list-for-game", + "region-resolve", + "rivet-api", + "rivet-group-server", + "rivet-operation", + "rivet-portal-server", + "rivet-util-mm", + "serde", + "serde_json", + "team-get", + "team-member-count", + "team-profile-validate", + "team-validate", + "types", + "user-follow-count", + "user-follow-get", + "user-get", + "user-identity-get", + "user-presence-get", + "user-team-list", +] + +[[package]] +name = "rivet-group" +version = "0.0.7" +dependencies = [ + "aws-smithy-client 0.41.0", + "aws-smithy-http 0.41.0", + "aws-smithy-json", + "aws-smithy-types 0.41.0", + "bytes", + "http 0.2.12", + "tower", +] + +[[package]] +name = "rivet-group-server" +version = "0.0.7" +dependencies = [ + "chrono", + "serde", + "serde_json", +] + +[[package]] +name = "rivet-health-checks" +version = "0.1.0" +dependencies = [ + "chirp-client", + "hyper", + "rivet-pools", + "serde", + "serde_json", + "thiserror", + "tokio", + "tracing", + "uuid", +] + +[[package]] +name = "rivet-identity" +version = "0.0.14" +dependencies = [ + "aws-smithy-client 0.41.0", + "aws-smithy-http 0.41.0", + "aws-smithy-json", + "aws-smithy-types 0.41.0", + "bytes", + "http 0.2.12", + "tower", +] + +[[package]] +name = "rivet-job" +version = "0.0.1" +dependencies = [ + "aws-smithy-client 0.41.0", + "aws-smithy-http 0.41.0", + "aws-smithy-json", + "aws-smithy-types 0.41.0", + "bytes", + "http 0.2.12", + "tower", +] + +[[package]] +name = "rivet-job-server" +version = "0.0.1" +dependencies = [ + "chrono", + "serde", + "serde_json", +] + +[[package]] +name = "rivet-kv" +version = "0.0.8" +dependencies = [ + "aws-smithy-client 0.41.0", + "aws-smithy-http 0.41.0", + "aws-smithy-json", + "aws-smithy-types 0.41.0", + "bytes", + "http 0.2.12", + "tower", +] + +[[package]] +name = "rivet-matchmaker" +version = "0.0.8" +dependencies = [ + "aws-smithy-client 0.41.0", + "aws-smithy-http 0.41.0", + "aws-smithy-json", + "aws-smithy-types 0.41.0", + "bytes", + "http 0.2.12", + "tower", +] + +[[package]] +name = "rivet-matchmaker-server" +version = "0.0.8" +dependencies = [ + "chrono", + "serde", + "serde_json", +] + +[[package]] +name = "rivet-metrics" +version = "0.1.0" +dependencies = [ + "hyper", + "lazy_static", + "prometheus", + "tracing", +] + +[[package]] +name = "rivet-operation" +version = "0.1.0" +dependencies = [ + "async-trait", + "chirp-client", + "chirp-metrics", + "chirp-perf", + "formatted-error", + "futures-util", + "global-error", + "indoc", + "prost 0.10.4", + "prost-types 0.10.1", + "rivet-cache", + "rivet-connection", + "rivet-operation-macros", + "rivet-pools", + "rivet-util", + "serde_json", + "thiserror", + "tokio", + "tracing", + "types", +] + +[[package]] +name = "rivet-operation-macros" +version = "0.1.0" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.58", +] + +[[package]] +name = "rivet-pools" +version = "0.1.0" +dependencies = [ + "async-nats", + "clickhouse", + "funty", + "global-error", + "governor", + "hyper", + "hyper-tls", + "lazy_static", + "rand", + "redis", + "rivet-metrics", + "sqlx", + "thiserror", + "tokio", + "tokio-util 0.7.10", + "tracing", + "url", +] + +[[package]] +name = "rivet-portal" +version = "0.0.1" +dependencies = [ + "aws-smithy-client 0.41.0", + "aws-smithy-http 0.41.0", + "aws-smithy-json", + "aws-smithy-types 0.41.0", + "bytes", + "http 0.2.12", + "tower", +] + +[[package]] +name = "rivet-portal-server" +version = "0.0.1" +dependencies = [ + "chrono", + "serde", + "serde_json", +] + +[[package]] +name = "rivet-route" +version = "0.0.1" +dependencies = [ + "aws-smithy-client 0.41.0", + "aws-smithy-http 0.41.0", + "aws-smithy-json", + "aws-smithy-types 0.41.0", + "bytes", + "http 0.2.12", + "tower", +] + +[[package]] +name = "rivet-runtime" +version = "0.1.0" +dependencies = [ + "console-subscriber", + "lazy_static", + "rivet-metrics", + "thiserror", + "tokio", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "rivet-status" +version = "0.0.1" +dependencies = [ + "aws-smithy-client 0.41.0", + "aws-smithy-http 0.41.0", + "aws-smithy-json", + "aws-smithy-types 0.41.0", + "bytes", + "http 0.2.12", + "tower", +] + +[[package]] +name = "rivet-status-server" +version = "0.0.1" +dependencies = [ + "chrono", + "serde", + "serde_json", +] + +[[package]] +name = "rivet-util" +version = "0.1.0" +dependencies = [ + "async-trait", + "aws-smithy-client 0.41.0", + "aws-smithy-types 0.41.0", + "bcrypt", + "chrono", + "futures-util", + "global-error", + "ipnet", + "lazy_static", + "rand", + "regex", + "reqwest", + "rivet-util-env", + "rivet-util-macros", + "serde", + "serde_json", + "thiserror", + "tokio", + "types", + "uuid", +] + +[[package]] +name = "rivet-util-build" +version = "0.1.0" +dependencies = [ + "rivet-operation", +] + +[[package]] +name = "rivet-util-captcha" +version = "0.1.0" +dependencies = [ + "global-error", + "serde_json", +] + +[[package]] +name = "rivet-util-cdn" +version = "0.1.0" + +[[package]] +name = "rivet-util-cluster" +version = "0.1.0" +dependencies = [ + "hex", + "rivet-util", + "sha2", + "tokio", + "types", + "uuid", +] + +[[package]] +name = "rivet-util-env" +version = "0.1.0" +dependencies = [ + "lazy_static", + "serde", + "serde_json", + "thiserror", + "types", + "uuid", +] + +[[package]] +name = "rivet-util-game-user" +version = "0.1.0" +dependencies = [ + "rivet-util", + "uuid", +] + +[[package]] +name = "rivet-util-job" +version = "0.1.0" +dependencies = [ + "uuid", +] + +[[package]] +name = "rivet-util-kv" +version = "0.1.0" + +[[package]] +name = "rivet-util-linode" +version = "0.1.0" +dependencies = [ + "chrono", + "rand", + "reqwest", + "rivet-operation", + "serde", + "serde_json", + "ssh-key", +] + +[[package]] +name = "rivet-util-macros" +version = "0.1.0" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "rivet-util-mm" +version = "0.1.0" +dependencies = [ + "bit-vec", + "chirp-client", + "heck 0.3.3", + "http 0.2.12", + "ip-info", + "mm-lobby-list-for-user-id", + "region-get", + "rivet-operation", + "rivet-util", + "serde", + "serde_json", + "strum 0.24.1", + "user-identity-get", + "uuid", +] + +[[package]] +name = "rivet-util-module" +version = "0.1.0" +dependencies = [ + "serde", + "serde_json", +] + +[[package]] +name = "rivet-util-nsfw" +version = "0.1.0" + +[[package]] +name = "rivet-util-team" +version = "0.1.0" +dependencies = [ + "rivet-operation", +] + +[[package]] +name = "rivet-util-user-presence" +version = "0.1.0" +dependencies = [ + "rivet-util", + "serde", + "uuid", +] + +[[package]] +name = "rsa" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" +dependencies = [ + "const-oid", + "digest", + "num-bigint-dig", + "num-integer", + "num-traits", + "pkcs1", + "pkcs8", + "rand_core", + "sha2", + "signature", + "spki", + "subtle", + "zeroize", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" + +[[package]] +name = "rustc_version" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" +dependencies = [ + "semver", +] + +[[package]] +name = "rustix" +version = "0.38.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89" +dependencies = [ + "bitflags 2.5.0", + "errno", + "libc", + "linux-raw-sys", + "windows-sys 0.52.0", +] + +[[package]] +name = "rustls" +version = "0.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7" +dependencies = [ + "base64 0.13.1", + "log", + "ring 0.16.20", + "sct 0.6.1", + "webpki 0.21.4", +] + +[[package]] +name = "rustls" +version = "0.20.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99" +dependencies = [ + "log", + "ring 0.16.20", + "sct 0.7.1", + "webpki 0.22.4", +] + +[[package]] +name = "rustls" +version = "0.21.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" +dependencies = [ + "log", + "ring 0.17.8", + "rustls-webpki 0.101.7", + "sct 0.7.1", +] + +[[package]] +name = "rustls" +version = "0.22.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "99008d7ad0bbbea527ec27bddbc0e432c5b87d8175178cee68d2eec9c4a1813c" +dependencies = [ + "log", + "ring 0.17.8", + "rustls-pki-types", + "rustls-webpki 0.102.2", + "subtle", + "zeroize", +] + +[[package]] +name = "rustls-native-certs" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a07b7c1885bd8ed3831c289b7870b13ef46fe0e856d288c30d9cc17d75a2092" +dependencies = [ + "openssl-probe", + "rustls 0.19.1", + "schannel", + "security-framework", +] + +[[package]] +name = "rustls-native-certs" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" +dependencies = [ + "openssl-probe", + "rustls-pemfile", + "schannel", + "security-framework", +] + +[[package]] +name = "rustls-pemfile" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" +dependencies = [ + "base64 0.21.7", +] + +[[package]] +name = "rustls-pki-types" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecd36cc4259e3e4514335c4a138c6b43171a8d61d8f5c9348f9fc7529416f247" + +[[package]] +name = "rustls-webpki" +version = "0.101.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" +dependencies = [ + "ring 0.17.8", + "untrusted 0.9.0", +] + +[[package]] +name = "rustls-webpki" +version = "0.102.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610" +dependencies = [ + "ring 0.17.8", + "rustls-pki-types", + "untrusted 0.9.0", +] + +[[package]] +name = "rustversion" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" + +[[package]] +name = "ryu" +version = "1.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" + +[[package]] +name = "s3-util" +version = "0.1.0" +dependencies = [ + "aws-sdk-s3", + "aws-smithy-async 0.52.0", + "aws-smithy-http 0.52.0", + "aws-smithy-types 0.52.0", + "http 0.2.12", + "thiserror", + "tokio", + "tracing", +] + +[[package]] +name = "schannel" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" +dependencies = [ + "windows-sys 0.52.0", +] + +[[package]] +name = "schemac" +version = "0.1.0" +dependencies = [ + "lazy_static", + "prost-build", + "regex", + "tempfile", +] + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "sct" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce" +dependencies = [ + "ring 0.16.20", + "untrusted 0.7.1", +] + +[[package]] +name = "sct" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" +dependencies = [ + "ring 0.17.8", + "untrusted 0.9.0", +] + +[[package]] +name = "sealed" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b5e421024b5e5edfbaa8e60ecf90bda9dbffc602dbb230e6028763f85f0c68c" +dependencies = [ + "heck 0.3.3", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "sec1" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" +dependencies = [ + "base16ct", + "der", + "generic-array", + "pkcs8", + "subtle", + "zeroize", +] + +[[package]] +name = "security-framework" +version = "2.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "770452e37cad93e0a50d5abc3990d2bc351c36d0328f86cefec2f2fb206eaef6" +dependencies = [ + "bitflags 1.3.2", + "core-foundation", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41f3cc463c0ef97e11c3461a9d3787412d30e8e7eb907c79180c4a57bf7c04ef" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "semver" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" + +[[package]] +name = "serde" +version = "1.0.197" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_array_query" +version = "0.2.0" +source = "git+https://github.com/rivet-gg/serde_array_query.git?rev=b9f8bfad77aea6f01dccc6cb77146b8c5daecaa3#b9f8bfad77aea6f01dccc6cb77146b8c5daecaa3" +dependencies = [ + "serde", + "serde_urlencoded", +] + +[[package]] +name = "serde_derive" +version = "1.0.197" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.58", +] + +[[package]] +name = "serde_derive_internals" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "serde_json" +version = "1.0.115" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12dc5c46daa8e9fdf4f5e71b6cf9a53f2487da0e86e55808e2d35539666497dd" +dependencies = [ + "itoa 1.0.11", + "ryu", + "serde", +] + +[[package]] +name = "serde_nanos" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a93142f0367a4cc53ae0fead1bcda39e85beccfad3dcd717656cacab94b12985" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_qs" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8cac3f1e2ca2fe333923a1ae72caca910b98ed0630bb35ef6f8c8517d6e81afa" +dependencies = [ + "percent-encoding", + "serde", + "thiserror", +] + +[[package]] +name = "serde_repr" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b2e6b945e9d3df726b65d6ee24060aff8e3533d431f677a9695db04eff9dfdb" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.58", +] + +[[package]] +name = "serde_spanned" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa 1.0.11", + "ryu", + "serde", +] + +[[package]] +name = "serde_with" +version = "2.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07ff71d2c147a7b57362cead5e22f772cd52f6ab31cfcd9edcd7f6aeb2a0afbe" +dependencies = [ + "base64 0.13.1", + "chrono", + "hex", + "indexmap 1.9.3", + "serde", + "serde_json", + "serde_with_macros", + "time 0.3.34", +] + +[[package]] +name = "serde_with_macros" +version = "2.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "881b6f881b17d13214e5d494c939ebab463d01264ce1811e9d4ac3a882e7695f" +dependencies = [ + "darling", + "proc-macro2", + "quote", + "syn 2.0.58", +] + +[[package]] +name = "serde_yaml" +version = "0.9.34+deprecated" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" +dependencies = [ + "indexmap 2.2.6", + "itoa 1.0.11", + "ryu", + "serde", + "unsafe-libyaml", +] + +[[package]] +name = "sha1" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "sha1_smol" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" + +[[package]] +name = "sha2" +version = "0.10.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "sharded-slab" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" +dependencies = [ + "lazy_static", +] + +[[package]] +name = "signal-hook-registry" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" +dependencies = [ + "libc", +] + +[[package]] +name = "signatory" +version = "0.27.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1e303f8205714074f6068773f0e29527e0453937fe837c9717d066635b65f31" +dependencies = [ + "pkcs8", + "rand_core", + "signature", + "zeroize", +] + +[[package]] +name = "signature" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" +dependencies = [ + "digest", + "rand_core", +] + +[[package]] +name = "simd-abstraction" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cadb29c57caadc51ff8346233b5cec1d240b68ce55cf1afc764818791876987" +dependencies = [ + "outref", +] + +[[package]] +name = "simple_asn1" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" +dependencies = [ + "num-bigint", + "num-traits", + "thiserror", + "time 0.3.34", +] + +[[package]] +name = "slab" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" +dependencies = [ + "autocfg", +] + +[[package]] +name = "smallvec" +version = "1.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" + +[[package]] +name = "socket2" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" +dependencies = [ + "libc", + "winapi", +] + +[[package]] +name = "socket2" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "spin" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" + +[[package]] +name = "spin" +version = "0.9.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" +dependencies = [ + "lock_api", +] + +[[package]] +name = "spinning_top" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" +dependencies = [ + "lock_api", +] + +[[package]] +name = "spki" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" +dependencies = [ + "base64ct", + "der", +] + +[[package]] +name = "sqlformat" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce81b7bd7c4493975347ef60d8c7e8b742d4694f4c49f93e0a12ea263938176c" +dependencies = [ + "itertools 0.12.1", + "nom", + "unicode_categories", +] + +[[package]] +name = "sqlx" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c9a2ccff1a000a5a59cd33da541d9f2fdcd9e6e8229cc200565942bff36d0aaa" +dependencies = [ + "sqlx-core", + "sqlx-macros", + "sqlx-mysql", + "sqlx-postgres", + "sqlx-sqlite", +] + +[[package]] +name = "sqlx-core" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24ba59a9342a3d9bab6c56c118be528b27c9b60e490080e9711a04dccac83ef6" +dependencies = [ + "ahash 0.8.11", + "atoi", + "bit-vec", + "byteorder", + "bytes", + "crc", + "crossbeam-queue", + "either", + "event-listener", + "futures-channel", + "futures-core", + "futures-intrusive", + "futures-io", + "futures-util", + "hashlink", + "hex", + "indexmap 2.2.6", + "ipnetwork", + "log", + "memchr", + "native-tls", + "once_cell", + "paste", + "percent-encoding", + "serde", + "serde_json", + "sha2", + "smallvec", + "sqlformat", + "thiserror", + "tokio", + "tokio-stream", + "tracing", + "url", + "uuid", +] + +[[package]] +name = "sqlx-macros" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ea40e2345eb2faa9e1e5e326db8c34711317d2b5e08d0d5741619048a803127" +dependencies = [ + "proc-macro2", + "quote", + "sqlx-core", + "sqlx-macros-core", + "syn 1.0.109", +] + +[[package]] +name = "sqlx-macros-core" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5833ef53aaa16d860e92123292f1f6a3d53c34ba8b1969f152ef1a7bb803f3c8" +dependencies = [ + "dotenvy", + "either", + "heck 0.4.1", + "hex", + "once_cell", + "proc-macro2", + "quote", + "serde", + "serde_json", + "sha2", + "sqlx-core", + "sqlx-mysql", + "sqlx-postgres", + "sqlx-sqlite", + "syn 1.0.109", + "tempfile", + "tokio", + "url", +] + +[[package]] +name = "sqlx-mysql" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ed31390216d20e538e447a7a9b959e06ed9fc51c37b514b46eb758016ecd418" +dependencies = [ + "atoi", + "base64 0.21.7", + "bitflags 2.5.0", + "byteorder", + "bytes", + "crc", + "digest", + "dotenvy", + "either", + "futures-channel", + "futures-core", + "futures-io", + "futures-util", + "generic-array", + "hex", + "hkdf", + "hmac", + "itoa 1.0.11", + "log", + "md-5", + "memchr", + "once_cell", + "percent-encoding", + "rand", + "rsa", + "serde", + "sha1", + "sha2", + "smallvec", + "sqlx-core", + "stringprep", + "thiserror", + "tracing", + "uuid", + "whoami", +] + +[[package]] +name = "sqlx-postgres" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c824eb80b894f926f89a0b9da0c7f435d27cdd35b8c655b114e58223918577e" +dependencies = [ + "atoi", + "base64 0.21.7", + "bit-vec", + "bitflags 2.5.0", + "byteorder", + "crc", + "dotenvy", + "etcetera", + "futures-channel", + "futures-core", + "futures-io", + "futures-util", + "hex", + "hkdf", + "hmac", + "home", + "ipnetwork", + "itoa 1.0.11", + "log", + "md-5", + "memchr", + "once_cell", + "rand", + "serde", + "serde_json", + "sha2", + "smallvec", + "sqlx-core", + "stringprep", + "thiserror", + "tracing", + "uuid", + "whoami", +] + +[[package]] +name = "sqlx-sqlite" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b244ef0a8414da0bed4bb1910426e890b19e5e9bccc27ada6b797d05c55ae0aa" +dependencies = [ + "atoi", + "flume", + "futures-channel", + "futures-core", + "futures-executor", + "futures-intrusive", + "futures-util", + "libsqlite3-sys", + "log", + "percent-encoding", + "serde", + "sqlx-core", + "tracing", + "url", + "urlencoding", + "uuid", +] + +[[package]] +name = "ssh-cipher" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f" +dependencies = [ + "cipher", + "ssh-encoding", +] + +[[package]] +name = "ssh-encoding" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15" +dependencies = [ + "base64ct", + "pem-rfc7468", + "sha2", +] + +[[package]] +name = "ssh-key" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b71299a724c8d84956caaf8fc3b3ea57c3587fe2d0b800cd0dc1f3599905d7e" +dependencies = [ + "p256", + "p384", + "p521", + "rand_core", + "rsa", + "sec1", + "sha2", + "signature", + "ssh-cipher", + "ssh-encoding", + "subtle", + "zeroize", +] + +[[package]] +name = "ssh2" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7fe461910559f6d5604c3731d00d2aafc4a83d1665922e280f42f9a168d5455" +dependencies = [ + "bitflags 1.3.2", + "libc", + "libssh2-sys", + "parking_lot 0.11.2", +] + +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] +name = "stringprep" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb41d74e231a107a1b4ee36bd1214b11285b77768d2e3824aedafa988fd36ee6" +dependencies = [ + "finl_unicode", + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "strsim" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" + +[[package]] +name = "strum" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" +dependencies = [ + "strum_macros 0.24.3", +] + +[[package]] +name = "strum" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" + +[[package]] +name = "strum_macros" +version = "0.24.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" +dependencies = [ + "heck 0.4.1", + "proc-macro2", + "quote", + "rustversion", + "syn 1.0.109", +] + +[[package]] +name = "strum_macros" +version = "0.25.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" +dependencies = [ + "heck 0.4.1", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.58", +] + +[[package]] +name = "subtle" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.58" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44cfb93f38070beee36b3fef7d4f5a16f27751d94b187b666a5cc5e9b0d30687" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" + +[[package]] +name = "system-configuration" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" +dependencies = [ + "bitflags 1.3.2", + "core-foundation", + "system-configuration-sys", +] + +[[package]] +name = "system-configuration-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "team-avatar-upload-complete" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-team", + "prost 0.10.4", + "reqwest", + "rivet-operation", + "sqlx", + "upload-complete", + "upload-get", + "upload-prepare", +] + +[[package]] +name = "team-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "upload-file-list", + "upload-get", +] + +[[package]] +name = "team-invite-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "team-invite-worker" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", + "sqlx", + "team-member-list", + "team-user-ban-get", +] + +[[package]] +name = "team-join-request-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "team-member-count" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "team-member-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "team-member-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "team-member-relationship-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-team", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "team-profile-validate" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "team-recommend" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "team-resolve-display-name" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-team", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "team-get", +] + +[[package]] +name = "team-search" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "lazy_static", + "prost 0.10.4", + "regex", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "team-user-ban-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "team-user-ban-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "team-validate" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "profanity-check", + "prost 0.10.4", + "rivet-operation", + "team-resolve-display-name", +] + +[[package]] +name = "team-worker" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-team", + "game-namespace-list", + "mm-lobby-list-for-namespace", + "reqwest", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", + "serde", + "team-join-request-list", + "team-profile-validate", + "team-user-ban-get", + "team-validate", + "user-identity-get", +] + +[[package]] +name = "telemetry-beacon" +version = "0.0.38" +dependencies = [ + "async-posthog", + "chirp-client", + "chirp-worker", + "chrono", + "cloud-version-get", + "futures-util", + "game-get", + "game-namespace-get", + "game-version-get", + "indoc", + "lazy_static", + "mm-player-count-for-namespace", + "prost 0.10.4", + "rivet-connection", + "rivet-operation", + "rivet-pools", + "rivet-runtime", + "sqlx", + "team-get", + "team-member-count", + "tokio", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "tempfile" +version = "3.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" +dependencies = [ + "cfg-if", + "fastrand 2.0.2", + "rustix", + "windows-sys 0.52.0", +] + +[[package]] +name = "thiserror" +version = "1.0.58" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.58" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.58", +] + +[[package]] +name = "thread_local" +version = "1.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" +dependencies = [ + "cfg-if", + "once_cell", +] + +[[package]] +name = "tier-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "cluster-datacenter-get", + "cluster-datacenter-list", + "linode-instance-type-get", + "prost 0.10.4", + "rivet-operation", + "rivet-util-cluster", +] + +[[package]] +name = "time" +version = "0.1.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" +dependencies = [ + "libc", + "wasi 0.10.0+wasi-snapshot-preview1", + "winapi", +] + +[[package]] +name = "time" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749" +dependencies = [ + "deranged", + "itoa 1.0.11", + "num-conv", + "powerfmt", + "serde", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" + +[[package]] +name = "time-macros" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tinyvec" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "token-create" +version = "0.0.1" +dependencies = [ + "base64 0.13.1", + "chirp-client", + "chirp-worker", + "chrono", + "jsonwebtoken", + "lazy_static", + "prost 0.10.4", + "rivet-claims", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "token-exchange" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "token-create", +] + +[[package]] +name = "token-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "token-create", +] + +[[package]] +name = "token-revoke" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "token-create", +] + +[[package]] +name = "tokio" +version = "1.37.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" +dependencies = [ + "backtrace", + "bytes", + "libc", + "mio", + "num_cpus", + "parking_lot 0.12.1", + "pin-project-lite", + "signal-hook-registry", + "socket2 0.5.6", + "tokio-macros", + "tracing", + "windows-sys 0.48.0", +] + +[[package]] +name = "tokio-io-timeout" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf" +dependencies = [ + "pin-project-lite", + "tokio", +] + +[[package]] +name = "tokio-macros" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.58", +] + +[[package]] +name = "tokio-native-tls" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" +dependencies = [ + "native-tls", + "tokio", +] + +[[package]] +name = "tokio-retry" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f57eb36ecbe0fc510036adff84824dd3c24bb781e21bfa67b69d556aa85214f" +dependencies = [ + "pin-project", + "rand", + "tokio", +] + +[[package]] +name = "tokio-rustls" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6" +dependencies = [ + "rustls 0.19.1", + "tokio", + "webpki 0.21.4", +] + +[[package]] +name = "tokio-rustls" +version = "0.23.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" +dependencies = [ + "rustls 0.20.9", + "tokio", + "webpki 0.22.4", +] + +[[package]] +name = "tokio-rustls" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" +dependencies = [ + "rustls 0.21.10", + "tokio", +] + +[[package]] +name = "tokio-stream" +version = "0.1.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" +dependencies = [ + "futures-core", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "tokio-tungstenite" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38" +dependencies = [ + "futures-util", + "log", + "native-tls", + "tokio", + "tokio-native-tls", + "tungstenite", +] + +[[package]] +name = "tokio-util" +version = "0.6.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "log", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "tokio-util" +version = "0.7.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", + "tracing", +] + +[[package]] +name = "toml" +version = "0.5.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" +dependencies = [ + "serde", +] + +[[package]] +name = "toml" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" +dependencies = [ + "serde", + "serde_spanned", + "toml_datetime", + "toml_edit", +] + +[[package]] +name = "toml_datetime" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" +dependencies = [ + "serde", +] + +[[package]] +name = "toml_edit" +version = "0.19.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" +dependencies = [ + "indexmap 2.2.6", + "serde", + "serde_spanned", + "toml_datetime", + "winnow", +] + +[[package]] +name = "tonic" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3082666a3a6433f7f511c7192923fa1fe07c69332d3c6a2e6bb040b569199d5a" +dependencies = [ + "async-trait", + "axum", + "base64 0.21.7", + "bytes", + "futures-core", + "futures-util", + "h2", + "http 0.2.12", + "http-body", + "hyper", + "hyper-timeout", + "percent-encoding", + "pin-project", + "prost 0.11.9", + "tokio", + "tokio-stream", + "tower", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" +dependencies = [ + "futures-core", + "futures-util", + "indexmap 1.9.3", + "pin-project", + "pin-project-lite", + "rand", + "slab", + "tokio", + "tokio-util 0.7.10", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower-layer" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" + +[[package]] +name = "tower-service" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" + +[[package]] +name = "tracing" +version = "0.1.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" +dependencies = [ + "log", + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.58", +] + +[[package]] +name = "tracing-core" +version = "0.1.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" +dependencies = [ + "once_cell", + "valuable", +] + +[[package]] +name = "tracing-futures" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" +dependencies = [ + "pin-project", + "tracing", +] + +[[package]] +name = "tracing-serde" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1" +dependencies = [ + "serde", + "tracing-core", +] + +[[package]] +name = "tracing-subscriber" +version = "0.3.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" +dependencies = [ + "matchers", + "nu-ansi-term", + "once_cell", + "regex", + "serde", + "serde_json", + "sharded-slab", + "thread_local", + "tracing", + "tracing-core", + "tracing-serde", +] + +[[package]] +name = "trust-dns-proto" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3119112651c157f4488931a01e586aa459736e9d6046d3bd9105ffb69352d374" +dependencies = [ + "async-trait", + "cfg-if", + "data-encoding", + "enum-as-inner", + "futures-channel", + "futures-io", + "futures-util", + "idna 0.4.0", + "ipnet", + "native-tls", + "once_cell", + "rand", + "smallvec", + "thiserror", + "tinyvec", + "tokio", + "tokio-native-tls", + "tracing", + "url", +] + +[[package]] +name = "trust-dns-resolver" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10a3e6c3aff1718b3c73e395d1f35202ba2ffa847c6a62eea0db8fb4cfe30be6" +dependencies = [ + "cfg-if", + "futures-util", + "ipconfig", + "lru-cache", + "once_cell", + "parking_lot 0.12.1", + "rand", + "resolv-conf", + "smallvec", + "thiserror", + "tokio", + "tokio-native-tls", + "tracing", + "trust-dns-proto", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "tungstenite" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1" +dependencies = [ + "byteorder", + "bytes", + "data-encoding", + "http 1.1.0", + "httparse", + "log", + "native-tls", + "rand", + "sha1", + "thiserror", + "url", + "utf-8", +] + +[[package]] +name = "typenum" +version = "1.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" + +[[package]] +name = "types" +version = "0.1.0" +dependencies = [ + "chirp-types", + "http 0.2.12", + "prost 0.10.4", + "prost-types 0.10.1", + "serde", + "serde_json", + "thiserror", + "types-build", + "uuid", +] + +[[package]] +name = "types-build" +version = "0.1.0" +dependencies = [ + "bolt-config", + "heck 0.3.3", + "indoc", + "prost-build", + "regex", + "schemac", + "serde", + "toml 0.7.8", +] + +[[package]] +name = "ucd-trie" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" + +[[package]] +name = "unicase" +version = "2.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" +dependencies = [ + "version_check", +] + +[[package]] +name = "unicode-bidi" +version = "0.3.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" + +[[package]] +name = "unicode-ident" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" + +[[package]] +name = "unicode-normalization" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "unicode-segmentation" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" + +[[package]] +name = "unicode_categories" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" + +[[package]] +name = "unsafe-libyaml" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" + +[[package]] +name = "untrusted" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" + +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] +name = "unzip-n" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2e7e85a0596447f0f2ac090e16bc4c516c6fe91771fb0c0ccf7fa3dae896b9c" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "upload-complete" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "nsfw-image-score", + "prost 0.10.4", + "reqwest", + "rivet-operation", + "s3-util", + "sqlx", + "upload-get", + "upload-prepare", + "url", +] + +[[package]] +name = "upload-file-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "upload-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "upload-prepare", +] + +[[package]] +name = "upload-list-for-user" +version = "0.0.34" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "upload-prepare", +] + +[[package]] +name = "upload-prepare" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "prost 0.10.4", + "rand", + "reqwest", + "rivet-operation", + "s3-util", + "sqlx", + "upload-complete", + "upload-get", +] + +[[package]] +name = "upload-provider-fill" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "futures-util", + "indoc", + "prost 0.10.4", + "reqwest", + "rivet-connection", + "rivet-operation", + "rivet-pools", + "s3-util", + "sqlx", + "tokio", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "upload-worker" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", + "s3-util", + "sqlx", + "upload-get", + "upload-prepare", +] + +[[package]] +name = "ureq" +version = "2.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11f214ce18d8b2cbe84ed3aa6486ed3f5b285cf8d8fbdbce9f3f767a724adc35" +dependencies = [ + "base64 0.21.7", + "flate2", + "log", + "once_cell", + "rustls 0.22.3", + "rustls-pki-types", + "rustls-webpki 0.102.2", + "url", + "webpki-roots 0.26.1", +] + +[[package]] +name = "url" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" +dependencies = [ + "form_urlencoded", + "idna 0.5.0", + "percent-encoding", +] + +[[package]] +name = "urlencoding" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" + +[[package]] +name = "user-avatar-upload-complete" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-user", + "prost 0.10.4", + "reqwest", + "rivet-operation", + "sqlx", + "upload-complete", + "upload-get", + "upload-prepare", +] + +[[package]] +name = "user-delete-pending" +version = "0.0.38" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "futures-util", + "indoc", + "lazy_static", + "prost 0.10.4", + "rivet-connection", + "rivet-operation", + "rivet-pools", + "rivet-runtime", + "tokio", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "user-dev-worker" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "game-get", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", + "team-member-list", +] + +[[package]] +name = "user-follow-count" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "user-follow-toggle", +] + +[[package]] +name = "user-follow-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "user-follow-toggle", +] + +[[package]] +name = "user-follow-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "user-follow-toggle", +] + +[[package]] +name = "user-follow-relationship-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "user-follow-toggle", +] + +[[package]] +name = "user-follow-request-list" +version = "0.0.35" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "user-follow-toggle", +] + +[[package]] +name = "user-follow-toggle" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "user-follow-worker" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", +] + +[[package]] +name = "user-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-user", + "prost 0.10.4", + "rand", + "rivet-operation", + "sqlx", + "upload-file-list", + "upload-get", +] + +[[package]] +name = "user-identity-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "email-address-parser", + "faker-user", + "prost 0.10.4", + "rivet-operation", +] + +[[package]] +name = "user-identity-delete" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-user", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "user-identity-create", +] + +[[package]] +name = "user-identity-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-user", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "user-identity-create", +] + +[[package]] +name = "user-mutual-friend-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "user-follow-toggle", +] + +[[package]] +name = "user-notification-auth-register" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-user", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "user-notification-auth-unregister" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-user", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "user-notification-auth-register", +] + +[[package]] +name = "user-pending-delete-toggle" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-user", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "user-identity-create", + "user-identity-get", +] + +[[package]] +name = "user-presence-gc" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "futures-util", + "indoc", + "lazy_static", + "prost 0.10.4", + "rivet-connection", + "rivet-health-checks", + "rivet-metrics", + "rivet-operation", + "rivet-pools", + "rivet-runtime", + "rivet-util-user-presence", + "tokio", + "tracing", + "tracing-subscriber", + "user-presence-touch", +] + +[[package]] +name = "user-presence-get" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "prost 0.10.4", + "rivet-operation", + "rivet-util-user-presence", +] + +[[package]] +name = "user-presence-touch" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-user", + "prost 0.10.4", + "rivet-operation", + "rivet-util-user-presence", +] + +[[package]] +name = "user-presence-worker" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-user", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", + "rivet-util-user-presence", + "sqlx", +] + +[[package]] +name = "user-profile-validate" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-user", + "profanity-check", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "user-get", +] + +[[package]] +name = "user-report-worker" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", +] + +[[package]] +name = "user-resolve-access-token" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-user", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "user-identity-create", +] + +[[package]] +name = "user-resolve-email" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-user", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "user-identity-create", +] + +[[package]] +name = "user-search" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "lazy_static", + "prost 0.10.4", + "regex", + "rivet-operation", + "sqlx", + "user-identity-create", +] + +[[package]] +name = "user-search-user-gc" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "futures-util", + "indoc", + "lazy_static", + "prost 0.10.4", + "rivet-connection", + "rivet-operation", + "rivet-runtime", + "tokio", + "tracing", + "tracing-subscriber", + "user-follow-count", + "user-identity-get", +] + +[[package]] +name = "user-team-list" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "prost 0.10.4", + "rivet-operation", + "sqlx", +] + +[[package]] +name = "user-token-create" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "faker-user", + "prost 0.10.4", + "rivet-operation", + "sqlx", + "token-create", +] + +[[package]] +name = "user-worker" +version = "0.0.1" +dependencies = [ + "chirp-client", + "chirp-worker", + "chrono", + "faker-user", + "game-get", + "game-namespace-get", + "identity-config-version-get", + "lazy_static", + "rivet-convert", + "rivet-health-checks", + "rivet-metrics", + "rivet-runtime", + "team-get", + "team-member-list", + "upload-get", + "upload-list-for-user", + "upload-prepare", + "user-get", + "user-identity-delete", + "user-profile-validate", + "user-team-list", +] + +[[package]] +name = "utf-8" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" + +[[package]] +name = "uuid" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" +dependencies = [ + "getrandom", + "serde", +] + +[[package]] +name = "valuable" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" + +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + +[[package]] +name = "version_check" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.10.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" + +[[package]] +name = "wasi" +version = "0.11.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + +[[package]] +name = "wasite" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" + +[[package]] +name = "wasm-bindgen" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" +dependencies = [ + "cfg-if", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" +dependencies = [ + "bumpalo", + "log", + "once_cell", + "proc-macro2", + "quote", + "syn 2.0.58", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.42" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" +dependencies = [ + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.58", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" + +[[package]] +name = "wasm-streams" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" +dependencies = [ + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "web-sys" +version = "0.3.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "webpki" +version = "0.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea" +dependencies = [ + "ring 0.16.20", + "untrusted 0.7.1", +] + +[[package]] +name = "webpki" +version = "0.22.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53" +dependencies = [ + "ring 0.17.8", + "untrusted 0.9.0", +] + +[[package]] +name = "webpki-roots" +version = "0.22.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" +dependencies = [ + "webpki 0.22.4", +] + +[[package]] +name = "webpki-roots" +version = "0.25.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" + +[[package]] +name = "webpki-roots" +version = "0.26.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" +dependencies = [ + "rustls-pki-types", +] + +[[package]] +name = "which" +version = "4.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" +dependencies = [ + "either", + "home", + "once_cell", + "rustix", +] + +[[package]] +name = "whoami" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9" +dependencies = [ + "redox_syscall 0.4.1", + "wasite", +] + +[[package]] +name = "widestring" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows-core" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" +dependencies = [ + "windows-targets 0.52.4", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.5", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.4", +] + +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] + +[[package]] +name = "windows-targets" +version = "0.52.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b" +dependencies = [ + "windows_aarch64_gnullvm 0.52.4", + "windows_aarch64_msvc 0.52.4", + "windows_i686_gnu 0.52.4", + "windows_i686_msvc 0.52.4", + "windows_x86_64_gnu 0.52.4", + "windows_x86_64_gnullvm 0.52.4", + "windows_x86_64_msvc 0.52.4", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" + +[[package]] +name = "winnow" +version = "0.5.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" +dependencies = [ + "memchr", +] + +[[package]] +name = "winreg" +version = "0.50.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" +dependencies = [ + "cfg-if", + "windows-sys 0.48.0", +] + +[[package]] +name = "xmlparser" +version = "0.13.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" + +[[package]] +name = "yaml-rust" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" +dependencies = [ + "linked-hash-map", +] + +[[package]] +name = "zerocopy" +version = "0.7.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.7.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.58", +] + +[[package]] +name = "zeroize" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"