From 44852b8fad3c85b102043edd4ccc7fedd17a4554 Mon Sep 17 00:00:00 2001 From: William Venner Date: Fri, 26 Nov 2021 18:51:58 +0000 Subject: [PATCH] Update cfg_table --- Cargo.lock | 12 +++++++++--- gmod/Cargo.toml | 4 ++-- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f15f105..18f4b10 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -26,6 +26,12 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49f3690291e34881a89ceb8e80802f1582f29b1361fd476eeefb4e89dd6a121e" +[[package]] +name = "cfg_table" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78518bef4e5cc70a69a0bd1905594f8033b2f7492c9d7c0f173208c0945c30a2" + [[package]] name = "cstr" version = "0.2.9" @@ -113,7 +119,7 @@ version = "8.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "715c1eec3ce86b2871086e9577f6e6a68ea1e58a188422826d50d18f3d15d0e4" dependencies = [ - "cfg_table", + "cfg_table 0.1.1", "cstr", "ctor", "detour", @@ -129,9 +135,9 @@ dependencies = [ [[package]] name = "gmod" -version = "9.1.0" +version = "10.0.0" dependencies = [ - "cfg_table", + "cfg_table 1.0.0", "cstr", "ctor", "detour", diff --git a/gmod/Cargo.toml b/gmod/Cargo.toml index fee3d01..ce9e256 100644 --- a/gmod/Cargo.toml +++ b/gmod/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gmod" -version = "9.1.0" +version = "10.0.0" authors = ["William Venner "] edition = "2018" license = "MIT" @@ -28,6 +28,6 @@ skidscan = { version = "2", optional = true } fn_type_alias = { version = "0", optional = true } fn_abi = { version = "2", optional = true } -cfg_table = { version = "0", optional = true } +cfg_table = { version = "1", optional = true } null_fn = { version = "0", optional = true } fn_has_this = { version = "0", optional = true }