From 4b298e449a3d2b57eaa13534f534099ea4a4f07f Mon Sep 17 00:00:00 2001 From: JR Conlin Date: Thu, 16 Jan 2025 14:31:58 -0800 Subject: [PATCH] bug: Disable "reliable_report" as default feature (#826) This should not be enabled by default --- Cargo.lock | 4 ++-- autoconnect/Cargo.toml | 2 +- autoendpoint/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7876663f3..81a5692b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2569,9 +2569,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.8.1" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2ef2593ffb6958c941575cee70c8e257438749971869c4ae5acf6f91a168a61" +checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" dependencies = [ "adler2", ] diff --git a/autoconnect/Cargo.toml b/autoconnect/Cargo.toml index 927959b97..d5bee9d3e 100644 --- a/autoconnect/Cargo.toml +++ b/autoconnect/Cargo.toml @@ -53,7 +53,7 @@ actix-service = "2.0" docopt = "1.1" [features] -default = ["bigtable", "reliable_report"] +default = ["bigtable"] bigtable = ["autopush_common/bigtable", "autoconnect_settings/bigtable"] emulator = ["bigtable"] log_vapid = [] diff --git a/autoendpoint/Cargo.toml b/autoendpoint/Cargo.toml index 32d991043..fc364c21a 100644 --- a/autoendpoint/Cargo.toml +++ b/autoendpoint/Cargo.toml @@ -68,7 +68,7 @@ tempfile = "3.2.0" tokio = { workspace = true, features = ["fs", "macros"] } [features] -default = ["bigtable", "reliable_report"] +default = ["bigtable"] # data store types bigtable = ["autopush_common/bigtable"]