make client modules public again

This commit is contained in:
TotallyNot 2022-09-18 23:57:04 +02:00
parent a7c640511c
commit c75522bc6a
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "torn-api" name = "torn-api"
version = "0.5.0" version = "0.5.1"
edition = "2021" edition = "2021"
authors = ["Pyrit [2111649]"] authors = ["Pyrit [2111649]"]
license = "MIT" license = "MIT"

View file

@ -7,10 +7,10 @@ pub mod torn;
pub mod user; pub mod user;
#[cfg(feature = "awc")] #[cfg(feature = "awc")]
mod awc; pub mod awc;
#[cfg(feature = "reqwest")] #[cfg(feature = "reqwest")]
mod reqwest; pub mod reqwest;
mod de_util; mod de_util;