From c75522bc6ac8276fef307e585aa805a99d04574d Mon Sep 17 00:00:00 2001 From: TotallyNot <44345987+TotallyNot@users.noreply.github.com> Date: Sun, 18 Sep 2022 23:57:04 +0200 Subject: [PATCH] make client modules public again --- torn-api/Cargo.toml | 2 +- torn-api/src/lib.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/torn-api/Cargo.toml b/torn-api/Cargo.toml index b0cbdc6..1be7e9a 100644 --- a/torn-api/Cargo.toml +++ b/torn-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "torn-api" -version = "0.5.0" +version = "0.5.1" edition = "2021" authors = ["Pyrit [2111649]"] license = "MIT" diff --git a/torn-api/src/lib.rs b/torn-api/src/lib.rs index decef82..eafa5b3 100644 --- a/torn-api/src/lib.rs +++ b/torn-api/src/lib.rs @@ -7,10 +7,10 @@ pub mod torn; pub mod user; #[cfg(feature = "awc")] -mod awc; +pub mod awc; #[cfg(feature = "reqwest")] -mod reqwest; +pub mod reqwest; mod de_util;