From dc860f963c70aa96cdd722664315444bc8ffd667 Mon Sep 17 00:00:00 2001 From: Yota Toyama Date: Mon, 15 Apr 2019 15:43:07 +0000 Subject: [PATCH] Change an example's name --- examples/{allocation_loop => gc_free}/Cargo.lock | 14 +++++++------- examples/{allocation_loop => gc_free}/Cargo.toml | 2 +- examples/{allocation_loop => gc_free}/src/main.rs | 0 3 files changed, 8 insertions(+), 8 deletions(-) rename examples/{allocation_loop => gc_free}/Cargo.lock (95%) rename examples/{allocation_loop => gc_free}/Cargo.toml (86%) rename examples/{allocation_loop => gc_free}/src/main.rs (100%) diff --git a/examples/allocation_loop/Cargo.lock b/examples/gc_free/Cargo.lock similarity index 95% rename from examples/allocation_loop/Cargo.lock rename to examples/gc_free/Cargo.lock index 1283123..32d0366 100644 --- a/examples/allocation_loop/Cargo.lock +++ b/examples/gc_free/Cargo.lock @@ -1,12 +1,5 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -[[package]] -name = "allocation_loop" -version = "0.1.0" -dependencies = [ - "bdwgc-alloc 0.2.0", -] - [[package]] name = "bdwgc-alloc" version = "0.2.0" @@ -14,6 +7,13 @@ dependencies = [ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "gc_free" +version = "0.1.0" +dependencies = [ + "bdwgc-alloc 0.2.0", +] + [[package]] name = "libc" version = "0.2.51" diff --git a/examples/allocation_loop/Cargo.toml b/examples/gc_free/Cargo.toml similarity index 86% rename from examples/allocation_loop/Cargo.toml rename to examples/gc_free/Cargo.toml index f6ff393..e21898d 100644 --- a/examples/allocation_loop/Cargo.toml +++ b/examples/gc_free/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "allocation_loop" +name = "gc_free" version = "0.1.0" authors = ["Yota Toyama "] edition = "2018" diff --git a/examples/allocation_loop/src/main.rs b/examples/gc_free/src/main.rs similarity index 100% rename from examples/allocation_loop/src/main.rs rename to examples/gc_free/src/main.rs