From 1df4c22926c84ddc98cd75b29f2cd630f7ccb9ab Mon Sep 17 00:00:00 2001 From: lifegpc Date: Thu, 14 Aug 2025 16:16:25 +0800 Subject: [PATCH] Add missing features tag --- Cargo.lock | 2 +- libtlg-rs/Cargo.toml | 2 +- libtlg-rs/src/lib.rs | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 787c1ec..2786d21 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -164,7 +164,7 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libtlg-rs" -version = "0.2.0" +version = "0.2.0+1" dependencies = [ "lazy_static", "overf", diff --git a/libtlg-rs/Cargo.toml b/libtlg-rs/Cargo.toml index 88b7b38..644038f 100644 --- a/libtlg-rs/Cargo.toml +++ b/libtlg-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libtlg-rs" -version = "0.2.0" +version = "0.2.0+1" description = "Rust version of libtlg" edition = "2024" license = "MIT" diff --git a/libtlg-rs/src/lib.rs b/libtlg-rs/src/lib.rs index 64c348f..2035ca9 100644 --- a/libtlg-rs/src/lib.rs +++ b/libtlg-rs/src/lib.rs @@ -1,4 +1,5 @@ //! A Rust library for processing TLG files. +#![feature(doc_cfg)] mod load_tlg; #[cfg(feature = "encode")] mod save_tlg;