From 9ea4835e3e5c0015421fd6400ca1f9d86e073b51 Mon Sep 17 00:00:00 2001 From: Dominique Martinet Date: Thu, 8 Oct 2020 17:48:57 +0200 Subject: [PATCH] Revert "matrix_sdk examples: set `#![type_length_limit = "1075569"]`" This reverts commit 7d023ebdb908790c946edcf6457c04b4e7d27e24. Rust 1.47.0 got released and the tuning is no longer necessary. --- matrix_sdk/examples/command_bot.rs | 4 ---- matrix_sdk/examples/image_bot.rs | 4 ---- 2 files changed, 8 deletions(-) diff --git a/matrix_sdk/examples/command_bot.rs b/matrix_sdk/examples/command_bot.rs index ffd39f76..4f2d9fea 100644 --- a/matrix_sdk/examples/command_bot.rs +++ b/matrix_sdk/examples/command_bot.rs @@ -1,7 +1,3 @@ -// allow biggr types until rustc fix, consider removing after new rust -// stable release. see https://github.com/rust-lang/rust/issues/54540 -#![type_length_limit = "1075569"] - use std::{env, process::exit}; use matrix_sdk::{ diff --git a/matrix_sdk/examples/image_bot.rs b/matrix_sdk/examples/image_bot.rs index 5f48e6e0..68099d89 100644 --- a/matrix_sdk/examples/image_bot.rs +++ b/matrix_sdk/examples/image_bot.rs @@ -1,7 +1,3 @@ -// allow biggr types until rustc fix, consider removing after new rust -// stable release. see https://github.com/rust-lang/rust/issues/54540 -#![type_length_limit = "1075569"] - use std::{ env, fs::File,