From fe78c66e3ae7b131ea477da10c38d72cc6bae66d Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Sun, 16 Apr 2023 13:59:51 +0200 Subject: [PATCH] chore: update to osauth-derive 0.1.2 --- Cargo.toml | 4 ++-- src/lib.rs | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fd880b7..baf928c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ default = ["native-tls", "stream"] default-rustls = ["rustls", "stream"] native-tls = ["reqwest/default-tls"] rustls = ["reqwest/rustls-tls"] -stream = ["async-stream", "futures", "osauth-derive"] +stream = ["async-stream", "futures"] [dependencies] @@ -31,7 +31,7 @@ futures = { version = "^0.3", optional = true } http = "^0.2" lazy_static = "^1.4" log = "^0.4" -osauth-derive = { version = "^0.1.1", optional = true } +osauth-derive = { version = "^0.1.2" } percent-encoding = "^2.2" pin-project = "^1.0" reqwest = { version = "^0.11", default-features = false, features = ["gzip", "json", "stream"] } diff --git a/src/lib.rs b/src/lib.rs index 37e1d79..f7fb7a5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -138,3 +138,4 @@ pub use crate::session::{ServiceRequestBuilder, Session}; pub use crate::stream::PaginatedResource; #[cfg(feature = "stream")] pub use osauth_derive::PaginatedResource; +pub use osauth_derive::QueryItem;