Skip to content

Commit

Permalink
reexported in vinted-rs 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pxp9 committed Oct 9, 2024
1 parent dfd7ca2 commit 0fd8658
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vinted-rs"
version = "0.9.1"
version = "0.9.2"
edition = "2021"
repository = "https://github.com/TuTarea/vinted-rs"
authors = [
Expand Down Expand Up @@ -34,7 +34,7 @@ reqwest_cookie_store = "0.8"
typed-builder = "0.20"
fang = { version = "0.10.3", features = ["asynk"], default-features = false }
redis-macros = { version = "0.4.2", optional = true }
redis = { version = "0.27.2", optional = true }
redis = { version = "0.27.2", optional = true, features = ["tokio-comp", "aio"] }
serde_json = { version = "1.0.91" }
log = "0.4.20"
lazy_static = "1.4.0"
Expand Down
8 changes: 8 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,11 @@ pub use queries::VintedWrapper;
pub use queries::VintedWrapperError;
#[cfg(test)]
pub mod tests;

#[cfg(feature = "redis")]
#[doc(hidden)]
pub extern crate redis;

#[cfg(feature = "redis")]
#[doc(hidden)]
pub extern crate redis_macros;

0 comments on commit 0fd8658

Please sign in to comment.