From 1acd4e325e1fc1214f4a73e11dc83278e7235452 Mon Sep 17 00:00:00 2001 From: Yota Toyama Date: Mon, 15 Apr 2019 15:19:25 +0000 Subject: [PATCH] Publish crate --- Cargo.lock | 2 +- Cargo.toml | 6 ++++-- README.md | 1 + examples/allocation_loop/Cargo.lock | 4 ++-- examples/dynamic_threads/Cargo.lock | 4 ++-- examples/static_threads/Cargo.lock | 4 ++-- 6 files changed, 12 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ab7eb1d..c9726d4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,7 +2,7 @@ # It is not intended for manual editing. [[package]] name = "bdwgc-alloc" -version = "0.1.0" +version = "0.1.1" dependencies = [ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/Cargo.toml b/Cargo.toml index 01d688a..3a621b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,11 @@ [package] name = "bdwgc-alloc" -version = "0.1.0" +description = "impl GlobalAlloc for bdwgc" +version = "0.1.1" authors = ["swgillespie ", "Yota Toyama "] -publish = false +repository = "https://github.com/raviqqe/bdwgc-rs" edition = "2018" +license = "MIT" [dependencies] libc = "0.2" diff --git a/README.md b/README.md index 932c938..3d65692 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # bdwgc-rs [![Circle CI](https://img.shields.io/circleci/project/github/raviqqe/bdwgc-rs/master.svg?style=flat-square)](https://circleci.com/gh/raviqqe/bdwgc-rs) +[![Crate](https://img.shields.io/crates/v/bdwgc-alloc.svg?style=flat-square)](https://crates.io/crates/bdwgc-alloc) [![License](https://img.shields.io/github/license/raviqqe/bdwgc-rs.svg?style=flat-square)](LICENSE) [`GlobalAlloc`](https://doc.rust-lang.org/std/alloc/trait.GlobalAlloc.html) implementation for [bdwgc](https://github.com/ivmai/bdwgc), the conservative garbage collector. diff --git a/examples/allocation_loop/Cargo.lock b/examples/allocation_loop/Cargo.lock index f741969..45c13c6 100644 --- a/examples/allocation_loop/Cargo.lock +++ b/examples/allocation_loop/Cargo.lock @@ -4,12 +4,12 @@ name = "allocation_loop" version = "0.1.0" dependencies = [ - "bdwgc-alloc 0.1.0", + "bdwgc-alloc 0.1.1", ] [[package]] name = "bdwgc-alloc" -version = "0.1.0" +version = "0.1.1" dependencies = [ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/examples/dynamic_threads/Cargo.lock b/examples/dynamic_threads/Cargo.lock index 80f63e9..8b6e754 100644 --- a/examples/dynamic_threads/Cargo.lock +++ b/examples/dynamic_threads/Cargo.lock @@ -2,7 +2,7 @@ # It is not intended for manual editing. [[package]] name = "bdwgc-alloc" -version = "0.1.0" +version = "0.1.1" 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-alloc 0.1.0", + "bdwgc-alloc 0.1.1", ] [[package]] diff --git a/examples/static_threads/Cargo.lock b/examples/static_threads/Cargo.lock index 494062a..1c2d41c 100644 --- a/examples/static_threads/Cargo.lock +++ b/examples/static_threads/Cargo.lock @@ -2,7 +2,7 @@ # It is not intended for manual editing. [[package]] name = "bdwgc-alloc" -version = "0.1.0" +version = "0.1.1" 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-alloc 0.1.0", + "bdwgc-alloc 0.1.1", ] [metadata]