Fix example crate names

This commit is contained in:
Yota Toyama
2019-04-13 21:02:16 +00:00
parent 451ba6cec3
commit ad1a5a8c79
4 changed files with 17 additions and 15 deletions

View File

@@ -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"

View File

@@ -1,8 +1,9 @@
[package]
name = "bdwgc-examples"
name = "allocation_loop"
version = "0.1.0"
authors = ["Yota Toyama <raviqqe@gmail.com>"]
edition = "2018"
publish = false
[dependencies]
bdwgc-allocator = { path = "../.." }

View File

@@ -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"

View File

@@ -1,8 +1,9 @@
[package]
name = "bdwgc-examples"
name = "static_threads"
version = "0.1.0"
authors = ["Yota Toyama <raviqqe@gmail.com>"]
edition = "2018"
publish = false
[dependencies]
bdwgc-allocator = { path = "../.." }