diff --git a/examples/allocation_loop/Cargo.lock b/examples/allocation_loop/Cargo.lock index 6a3b08e..e4e9e07 100644 --- a/examples/allocation_loop/Cargo.lock +++ b/examples/allocation_loop/Cargo.lock @@ -1,5 +1,12 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +[[package]] +name = "allocation_loop" +version = "0.1.0" +dependencies = [ + "bdwgc-allocator 0.1.0", +] + [[package]] name = "bdwgc-allocator" version = "0.1.0" @@ -7,13 +14,6 @@ dependencies = [ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "bdwgc-examples" -version = "0.1.0" -dependencies = [ - "bdwgc-allocator 0.1.0", -] - [[package]] name = "libc" version = "0.2.51" diff --git a/examples/allocation_loop/Cargo.toml b/examples/allocation_loop/Cargo.toml index da02720..797046a 100644 --- a/examples/allocation_loop/Cargo.toml +++ b/examples/allocation_loop/Cargo.toml @@ -1,8 +1,9 @@ [package] -name = "bdwgc-examples" +name = "allocation_loop" version = "0.1.0" authors = ["Yota Toyama "] edition = "2018" +publish = false [dependencies] bdwgc-allocator = { path = "../.." } diff --git a/examples/static_threads/Cargo.lock b/examples/static_threads/Cargo.lock index 6a3b08e..6d9c5f9 100644 --- a/examples/static_threads/Cargo.lock +++ b/examples/static_threads/Cargo.lock @@ -8,16 +8,16 @@ dependencies = [ ] [[package]] -name = "bdwgc-examples" +name = "libc" +version = "0.2.51" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "static_threads" version = "0.1.0" dependencies = [ "bdwgc-allocator 0.1.0", ] -[[package]] -name = "libc" -version = "0.2.51" -source = "registry+https://github.com/rust-lang/crates.io-index" - [metadata] "checksum libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "bedcc7a809076656486ffe045abeeac163da1b558e963a31e29fbfbeba916917" diff --git a/examples/static_threads/Cargo.toml b/examples/static_threads/Cargo.toml index da02720..337e4ee 100644 --- a/examples/static_threads/Cargo.toml +++ b/examples/static_threads/Cargo.toml @@ -1,8 +1,9 @@ [package] -name = "bdwgc-examples" +name = "static_threads" version = "0.1.0" authors = ["Yota Toyama "] edition = "2018" +publish = false [dependencies] bdwgc-allocator = { path = "../.." }