From f41da053c08178189aaee8c62f4c6e738add6eda Mon Sep 17 00:00:00 2001 From: Finn Bear Date: Thu, 18 Dec 2025 11:28:24 -0800 Subject: [PATCH] Version 0.6.9 - remove deprecated doc_auto_cfg feature. --- Cargo.toml | 4 ++-- bitcode_derive/Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9549e49..7b3ba96 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = [ [package] name = "bitcode" authors = [ "Cai Bear", "Finn Bear" ] -version = "0.6.8" +version = "0.6.9" edition = "2021" rust-version = "1.70" license = "MIT OR Apache-2.0" @@ -16,7 +16,7 @@ exclude = ["fuzz/"] [dependencies] arrayvec = { version = "0.7", default-features = false, optional = true } -bitcode_derive = { version = "=0.6.8", path = "./bitcode_derive", optional = true } +bitcode_derive = { version = "=0.6.9", path = "./bitcode_derive", optional = true } bytemuck = { version = "1.14", features = [ "min_const_generics", "must_cast" ] } glam = { version = ">=0.21", default-features = false, optional = true } rust_decimal = { version = "1.36", default-features = false, optional = true } diff --git a/bitcode_derive/Cargo.toml b/bitcode_derive/Cargo.toml index cc58858..9c62081 100644 --- a/bitcode_derive/Cargo.toml +++ b/bitcode_derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bitcode_derive" authors = [ "Cai Bear", "Finn Bear" ] -version = "0.6.8" +version = "0.6.9" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/SoftbearStudios/bitcode/" diff --git a/src/lib.rs b/src/lib.rs index 5325f24..e527c10 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ #![allow(clippy::items_after_test_module, clippy::blocks_in_if_conditions)] #![warn(clippy::semicolon_if_nothing_returned)] -#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![cfg_attr(test, feature(test))] #![cfg_attr(not(feature = "std"), no_std)] #![doc = include_str!("../README.md")]