Rename crate

This commit is contained in:
Yota Toyama
2019-04-15 15:06:59 +00:00
parent d9cabba113
commit ee35165f99
11 changed files with 17 additions and 17 deletions

2
Cargo.lock generated
View File

@@ -1,7 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "bdwgc-allocator"
name = "bdwgc-alloc"
version = "0.1.0"
dependencies = [
"libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@@ -1,5 +1,5 @@
[package]
name = "bdwgc-allocator"
name = "bdwgc-alloc"
version = "0.1.0"
authors = ["swgillespie <sean.william.g@gmail.com>", "Yota Toyama <raviqqe@gmail.com>"]
publish = false

View File

@@ -4,11 +4,11 @@
name = "allocation_loop"
version = "0.1.0"
dependencies = [
"bdwgc-allocator 0.1.0",
"bdwgc-alloc 0.1.0",
]
[[package]]
name = "bdwgc-allocator"
name = "bdwgc-alloc"
version = "0.1.0"
dependencies = [
"libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@@ -6,4 +6,4 @@ edition = "2018"
publish = false
[dependencies]
bdwgc-allocator = { path = "../.." }
bdwgc-alloc = { path = "../.." }

View File

@@ -1,6 +1,6 @@
extern crate bdwgc_allocator;
extern crate bdwgc_alloc;
use bdwgc_allocator::Allocator;
use bdwgc_alloc::Allocator;
use std::alloc::{GlobalAlloc, Layout};
#[global_allocator]

View File

@@ -1,7 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "bdwgc-allocator"
name = "bdwgc-alloc"
version = "0.1.0"
dependencies = [
"libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -11,7 +11,7 @@ dependencies = [
name = "dynamic_threads"
version = "0.1.0"
dependencies = [
"bdwgc-allocator 0.1.0",
"bdwgc-alloc 0.1.0",
]
[[package]]

View File

@@ -6,4 +6,4 @@ edition = "2018"
publish = false
[dependencies]
bdwgc-allocator = { path = "../.." }
bdwgc-alloc = { path = "../.." }

View File

@@ -1,6 +1,6 @@
extern crate bdwgc_allocator;
extern crate bdwgc_alloc;
use bdwgc_allocator::Allocator;
use bdwgc_alloc::Allocator;
use std::alloc::{GlobalAlloc, Layout};
#[global_allocator]

View File

@@ -1,7 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "bdwgc-allocator"
name = "bdwgc-alloc"
version = "0.1.0"
dependencies = [
"libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -16,7 +16,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
name = "static_threads"
version = "0.1.0"
dependencies = [
"bdwgc-allocator 0.1.0",
"bdwgc-alloc 0.1.0",
]
[metadata]

View File

@@ -6,4 +6,4 @@ edition = "2018"
publish = false
[dependencies]
bdwgc-allocator = { path = "../.." }
bdwgc-alloc = { path = "../.." }

View File

@@ -1,6 +1,6 @@
extern crate bdwgc_allocator;
extern crate bdwgc_alloc;
use bdwgc_allocator::Allocator;
use bdwgc_alloc::Allocator;
use std::alloc::{GlobalAlloc, Layout};
#[global_allocator]