From 71140fb18a94c83aebc92076f8e5bbef57e3309f Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Fri, 30 Aug 2024 15:41:52 +0400 Subject: [PATCH] fix: trying to add crate features to docs.rs --- Cargo.lock | 2 +- Cargo.toml | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 614cbe8..b38feb4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -886,7 +886,7 @@ dependencies = [ [[package]] name = "tokio-gemini" -version = "0.5.1" +version = "0.5.2" dependencies = [ "async-trait", "base16ct", diff --git a/Cargo.toml b/Cargo.toml index 31c2710..ecf7e37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-gemini" -version = "0.5.1" +version = "0.5.2" edition = "2021" license = "Apache-2.0" homepage = "https://unw.dc09.ru" @@ -9,6 +9,10 @@ readme = "README.md" description = "Gemini protocol client and server implementation written in Rust with Tokio" categories = ["network-programming"] +[package.metadata.docs.rs] +all-features = true +targets = ["x86_64-unknown-linux-gnu"] + [dependencies] base16ct = "0.2.0" base64ct = "1.6.0"