From f5bcfec8211c04c4b05f63d01d52d3e5d2cc123e Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Mon, 1 Apr 2024 11:59:46 +0200 Subject: Use `rustc-hash` for most of our `HashMap` and `HashSet` instances --- futures/Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'futures/Cargo.toml') diff --git a/futures/Cargo.toml b/futures/Cargo.toml index 69a915e4..bbcfe01c 100644 --- a/futures/Cargo.toml +++ b/futures/Cargo.toml @@ -22,6 +22,7 @@ iced_core.workspace = true futures.workspace = true log.workspace = true +rustc-hash.workspace = true [target.'cfg(not(target_arch = "wasm32"))'.dependencies] async-std.workspace = true -- cgit From 5cd98f069dea8720bca7748d6c12fa410cbe79b5 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sun, 7 Apr 2024 12:42:12 +0200 Subject: Use built-in `[lints]` table in `Cargo.toml` --- futures/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'futures/Cargo.toml') diff --git a/futures/Cargo.toml b/futures/Cargo.toml index bbcfe01c..a6fcfde1 100644 --- a/futures/Cargo.toml +++ b/futures/Cargo.toml @@ -10,6 +10,9 @@ homepage.workspace = true categories.workspace = true keywords.workspace = true +[lints] +workspace = true + [package.metadata.docs.rs] rustdoc-args = ["--cfg", "docsrs"] all-features = true -- cgit