From f0824af80a2fa7ebffe664b0e01ff2d3b75bb462 Mon Sep 17 00:00:00 2001 From: Avi Weinstock Date: Wed, 28 Apr 2021 22:32:13 -0400 Subject: [PATCH] Move `chunk_compression_benchmarks` from `bin` to `examples`. --- world/Cargo.toml | 2 +- world/{src/bin => examples}/chunk_compression_benchmarks.rs | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename world/{src/bin => examples}/chunk_compression_benchmarks.rs (100%) diff --git a/world/Cargo.toml b/world/Cargo.toml index e97fc8c267..8f2160c186 100644 --- a/world/Cargo.toml +++ b/world/Cargo.toml @@ -57,6 +57,6 @@ structopt = "0.3" harness = false name = "tree" -[[bin]] +[[example]] name = "chunk_compression_benchmarks" required-features = ["bin_compression"] diff --git a/world/src/bin/chunk_compression_benchmarks.rs b/world/examples/chunk_compression_benchmarks.rs similarity index 100% rename from world/src/bin/chunk_compression_benchmarks.rs rename to world/examples/chunk_compression_benchmarks.rs