From a40d974d47cd282844072d67c77aba34672df705 Mon Sep 17 00:00:00 2001 From: Yota Toyama Date: Sun, 11 Aug 2024 20:11:13 +1000 Subject: [PATCH] Bump version (#367) --- .gitignore | 1 - Cargo.lock | 45 +++++++++++++++++++++++++++++++++++++++++++++ Cargo.toml | 2 +- 3 files changed, 46 insertions(+), 2 deletions(-) create mode 100644 Cargo.lock diff --git a/.gitignore b/.gitignore index 3e2f2a8..eb5a316 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ -*.lock target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..2883a8a --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,45 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "autotools" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aef8da1805e028a172334c3b680f93e71126f2327622faef2ec3d893c0a4ad77" +dependencies = [ + "cc", +] + +[[package]] +name = "bdwgc-alloc" +version = "0.6.9" +dependencies = [ + "autotools", + "cmake", + "libc", +] + +[[package]] +name = "cc" +version = "1.0.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" +dependencies = [ + "libc", +] + +[[package]] +name = "cmake" +version = "0.1.50" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130" +dependencies = [ + "cc", +] + +[[package]] +name = "libc" +version = "0.2.150" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" diff --git a/Cargo.toml b/Cargo.toml index b315000..c383bdb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bdwgc-alloc" description = "impl GlobalAlloc for bdwgc" -version = "0.6.8" +version = "0.6.9" authors = [ "swgillespie ", "Yota Toyama ",