From 37e264ab99c5406269f7dd66572d28ed23c75be7 Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Mon, 20 Oct 2025 12:30:06 +0200 Subject: [PATCH] fs: Reintroduce benchmarks crate (#40689) It was erroenously removed in #40216 Release Notes: - N/A --- Cargo.lock | 8 ++++++++ Cargo.toml | 1 + crates/fs_benchmarks/Cargo.toml | 12 ++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 crates/fs_benchmarks/Cargo.toml diff --git a/Cargo.lock b/Cargo.lock index cca144a2bf..ea89f8f362 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6341,6 +6341,14 @@ dependencies = [ "windows-sys 0.59.0", ] +[[package]] +name = "fs_benchmarks" +version = "0.1.0" +dependencies = [ + "fs", + "gpui", +] + [[package]] name = "fs_extra" version = "1.3.0" diff --git a/Cargo.toml b/Cargo.toml index 4828de8895..5f4a72a5a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -70,6 +70,7 @@ members = [ "crates/file_finder", "crates/file_icons", "crates/fs", + "crates/fs_benchmarks", "crates/fsevent", "crates/fuzzy", "crates/git", diff --git a/crates/fs_benchmarks/Cargo.toml b/crates/fs_benchmarks/Cargo.toml new file mode 100644 index 0000000000..f207a2db3b --- /dev/null +++ b/crates/fs_benchmarks/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "fs_benchmarks" +version = "0.1.0" +publish.workspace = true +edition.workspace = true + +[dependencies] +fs.workspace = true +gpui = {workspace = true, features = ["windows-manifest"]} + +[lints] +workspace = true