From 1d66993c9119da6d1707e7f05e027b7325ee6d42 Mon Sep 17 00:00:00 2001 From: Art <4998038+Alorel@users.noreply.github.com> Date: Fri, 26 Jul 2024 19:49:53 +0100 Subject: [PATCH] fix: Set MSRV to 1.64 as required by the `IntoFuture` trait --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 74a4b61..93e0567 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "indexed_db_futures" version = "0.4.1" authors = ["Arturas Molcanovas "] edition = "2021" -rust-version = "1.60.0" +rust-version = "1.64.0" license = "MIT" description = "Future bindings for IndexedDB via web_sys" repository = "https://github.com/Alorel/rust-indexed-db" @@ -76,3 +76,6 @@ features = [ "Window", "WorkerGlobalScope", ] + +[lints.rust] +unexpected_cfgs = { level = "deny", check-cfg = ['cfg(doc_cfg)'] }